diff --git a/.gitignore b/.gitignore
index 6917f80..5009cf1 100644
--- a/.gitignore
+++ b/.gitignore
@@ -5,12 +5,16 @@
npm-debug.log
/node_modules
+# NPM
+package-lock.json
+
# Cordova
/platforms
/plugins
# Idea
/.idea
+/src/android/.idea
# res
resources/signing
\ No newline at end of file
diff --git a/CHANGELOG.md b/CHANGELOG.md
index e4ea64f..4028889 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -2,9 +2,13 @@
This document lets you know what has changed in the Cordova plugin. For changes in each version of the native SDKs, please see:
-- [Android Changelog](https://github.com/apptentive/apptentive-android/blob/master/CHANGELOG.md)
+- [Android Changelog](https://github.com/apptentive/apptentive-kit-android/blob/master/CHANGELOG.md)
- [iOS Changelog](https://github.com/apptentive/apptentive-kit-ios/blob/master/CHANGELOG.md)
+# 2023-04-17 - v6.2.0
+
+- Apptentive Android SDK: 6.0.4
+- Apptentive iOS SDK: 6.1.0
# 2023-02-08 - v6.1.0
diff --git a/package.json b/package.json
index 1e2c2a9..c6caf3a 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "apptentive-cordova",
- "version": "6.1.0",
+ "version": "6.2.0",
"description": "Apptentive Plugin For Cordova",
"cordova": {
"id": "apptentive-cordova",
@@ -19,12 +19,10 @@
"cordova-android",
"cordova-ios"
],
- "engines": [
- {
- "name": "cordova",
- "version": ">=3.6.0"
- }
- ],
+ "engines": {
+ "cordova": ">=10.0.1",
+ "cordova-android": ">=9.0.0"
+ },
"author": "Apptentive",
"license": "BSD",
"bugs": {
diff --git a/plugin.xml b/plugin.xml
index 8798d17..a37e013 100644
--- a/plugin.xml
+++ b/plugin.xml
@@ -5,7 +5,8 @@
Apptentive Plugin For Cordova
apptentive
-
+
+
@@ -13,23 +14,30 @@
+
+
+
+
+
+
+
-
-
-
-
-
+
+
+
+
+
+
-
@@ -38,15 +46,18 @@
-
-
-
- Cordova
- 6.1.0
+
+
+
+
+
+
-
-
-
+
+
+
+
+
@@ -56,6 +67,9 @@
+
+
+
@@ -74,16 +88,17 @@
$IOS_APP_SIGNATURE
+
+ $IOS_SANITIZE_LOG_MESSAGES
+
+
- 6.1.0
+ 6.2.0
-
-
-
-
-
+
+
@@ -95,7 +110,15 @@
-
+
+
+
+
+
+
+
+
+
diff --git a/src/android/ApptentiveBridge.java b/src/android/ApptentiveBridge.java
deleted file mode 100644
index 4d243d6..0000000
--- a/src/android/ApptentiveBridge.java
+++ /dev/null
@@ -1,343 +0,0 @@
-package com.apptentive.cordova;
-
-import android.app.Activity;
-import android.app.Application;
-import android.content.Context;
-
-import com.apptentive.android.sdk.Apptentive;
-import com.apptentive.android.sdk.Apptentive.BooleanCallback;
-import com.apptentive.android.sdk.ApptentiveConfiguration;
-import com.apptentive.android.sdk.ApptentiveInternal;
-import com.apptentive.android.sdk.ApptentiveLog;
-import com.apptentive.android.sdk.lifecycle.ApptentiveActivityLifecycleCallbacks;
-import com.apptentive.android.sdk.module.messagecenter.UnreadMessagesListener;
-import com.apptentive.android.sdk.module.rating.impl.AmazonAppstoreRatingProvider;
-import com.apptentive.android.sdk.module.survey.OnSurveyFinishedListener;
-import com.apptentive.android.sdk.util.Constants;
-import com.apptentive.android.sdk.util.StringUtils;
-import com.apptentive.android.sdk.util.Util;
-
-import org.apache.cordova.CallbackContext;
-import org.apache.cordova.CordovaPlugin;
-import org.apache.cordova.PluginResult;
-import org.json.JSONArray;
-import org.json.JSONException;
-
-import java.util.Map;
-
-public class ApptentiveBridge extends CordovaPlugin {
-
- private static final String ACTION_DEVICE_READY = "deviceReady";
- private static final String ACTION_ADD_CUSTOM_DEVICE_DATA = "addCustomDeviceData";
- private static final String ACTION_ADD_CUSTOM_PERSON_DATA = "addCustomPersonData";
- private static final String ACTION_ENGAGE = "engage";
- private static final String ACTION_GET_UNREAD_MESSAGE_COUNT = "getUnreadMessageCount";
- private static final String ACTION_PUT_RATING_PROVIDER_ARG = "putRatingProviderArg";
- private static final String ACTION_REMOVE_CUSTOM_DEVICE_DATA = "removeCustomDeviceData";
- private static final String ACTION_REMOVE_CUSTOM_PERSON_DATA = "removeCustomPersonData";
- private static final String ACTION_SEND_ATTACHMENT_FILE_URI = "sendAttachmentFileUri";
- private static final String ACTION_SEND_ATTACHMENT_FILE = "sendAttachmentFile";
- private static final String ACTION_SEND_ATTACHMENT_TEXT = "sendAttachmentText";
- private static final String ACTION_GET_PERSON_EMAIL = "getPersonEmail";
- private static final String ACTION_SET_PERSON_EMAIL = "setPersonEmail";
- private static final String ACTION_GET_PERSON_NAME = "getPersonName";
- private static final String ACTION_SET_PERSON_NAME = "setPersonName";
- private static final String ACTION_ADD_UNREAD_MESSAGES_LISTENER = "addUnreadMessagesListener";
- private static final String ACTION_SET_ON_SURVEY_FINISHED_LISTENER = "setOnSurveyFinishedListener";
- private static final String ACTION_SET_RATING_PROVIDER = "setRatingProvider";
- private static final String ACTION_SHOW_MESSAGE_CENTER = "showMessageCenter";
- private static final String ACTION_CAN_SHOW_MESSAGE_CENTER = "canShowMessageCenter";
- private static final String ACTION_CAN_SHOW_INTERACTION = "canShowInteraction";
- private static final String ACTION_LOGIN = "login";
- private static final String ACTION_LOGOUT = "logout";
-
- /**
- * Constructor.
- */
- public ApptentiveBridge() {
- }
-
- UnreadMessagesListener listener = null;
-
- public boolean execute(final String action, JSONArray args, final CallbackContext callbackContext) throws JSONException {
- ApptentiveLog.v("Executing action: %s", action);
-
- if (action.equals(ACTION_DEVICE_READY)) {
- final Activity currentActivity = cordova.getActivity();
- if (currentActivity != null && !ApptentiveInternal.isApptentiveRegistered()) {
- currentActivity.runOnUiThread(new Runnable() {
- @Override
- public void run() {
- ApptentiveConfiguration configuration = resolveConfiguration(currentActivity.getApplication());
-
- // Parse log level, info by default
- String newLogLevel;
- try {
- newLogLevel = args.getString(0);
- } catch (JSONException e) {
- newLogLevel = "info";
- }
- configuration.setLogLevel(parseLogLevel(newLogLevel));
-
- Apptentive.register(currentActivity.getApplication(), configuration);
- Application.ActivityLifecycleCallbacks callbacks = ApptentiveActivityLifecycleCallbacks.getInstance();
- if (callbacks != null) {
- callbacks.onActivityCreated(currentActivity, null);
- callbacks.onActivityStarted(currentActivity);
- callbacks.onActivityResumed(currentActivity);
- } else {
- ApptentiveLog.e("Unable to properly initialize Apptentive");
- }
- }
- });
- }
- callbackContext.success();
- return true;
-
- } else if (action.equals(ACTION_CAN_SHOW_MESSAGE_CENTER)) {
- Apptentive.canShowMessageCenter(new BooleanCallback() {
- @Override
- public void onFinish(boolean canShowMessageCenter) {
- PluginResult result = new PluginResult(PluginResult.Status.OK, canShowMessageCenter);
- callbackContext.sendPluginResult(result);
- }
- });
- return true;
-
- } else if (action.equals(ACTION_SHOW_MESSAGE_CENTER)) {
- // TODO: pass boolean callback and use returned value
- if (args.length() > 0) {
- Map config = JsonHelper.toMap(args.getJSONObject(0));
- Apptentive.showMessageCenter(cordova.getActivity(), config);
- } else {
- Apptentive.showMessageCenter(cordova.getActivity());
- }
- callbackContext.success();
- return true;
-
- } else if (action.equals(ACTION_ADD_CUSTOM_DEVICE_DATA)) {
- String key = args.getString(0);
- Object value = args.get(1);
- if (value instanceof String) {
- Apptentive.addCustomDeviceData(key, (String) value);
- } else if (value instanceof Number) {
- Apptentive.addCustomDeviceData(key, (Number) value);
- } else if (value instanceof Boolean) {
- Apptentive.addCustomDeviceData(key, (Boolean) value);
- } else {
- callbackContext.error("Custom Device Data Type not supported: " + ((value != null) ? value.getClass() : "NULL"));
- return false;
- }
-
- callbackContext.success();
- return true;
-
- } else if (action.equals(ACTION_ADD_CUSTOM_PERSON_DATA)) {
- String key = args.getString(0);
- Object value = args.get(1);
- if (value instanceof String) {
- Apptentive.addCustomPersonData(key, (String) value);
- } else if (value instanceof Number) {
- Apptentive.addCustomPersonData(key, (Number) value);
- } else if (value instanceof Boolean) {
- Apptentive.addCustomPersonData(key, (Boolean) value);
- } else {
- callbackContext.error("Custom Person Data Type not supported: " + ((value != null) ? value.getClass() : "NULL"));
- return false;
- }
-
- callbackContext.success();
- return true;
-
- } else if (action.equals(ACTION_CAN_SHOW_INTERACTION)) {
- final String eventId = args.getString(0);
- Apptentive.queryCanShowInteraction(eventId, new BooleanCallback() {
- @Override
- public void onFinish(boolean canShowInteraction) {
- PluginResult result = new PluginResult(PluginResult.Status.OK, canShowInteraction);
- callbackContext.sendPluginResult(result);
- }
- });
- return true;
-
- } else if (action.equals(ACTION_ENGAGE)) {
- final String eventId = args.getString(0);
- BooleanCallback callback = new BooleanCallback() {
- @Override
- public void onFinish(boolean shown) {
- PluginResult result = new PluginResult(PluginResult.Status.OK, shown);
- callbackContext.sendPluginResult(result);
- }
- };
-
- if (args.length() > 1) {
- Map customData = JsonHelper.toMap(args.getJSONObject(1));
- Apptentive.engage(cordova.getActivity(), eventId, callback, customData);
- } else {
- Apptentive.engage(cordova.getActivity(), eventId, callback);
- }
- return true;
-
- } else if (action.equals(ACTION_GET_UNREAD_MESSAGE_COUNT)) {
- int unreadMessageCount = Apptentive.getUnreadMessageCount();
- PluginResult result = new PluginResult(PluginResult.Status.OK, unreadMessageCount);
- callbackContext.sendPluginResult(result);
- return true;
-
- } else if (action.equals(ACTION_PUT_RATING_PROVIDER_ARG)) {
- String key = args.getString(0);
- String value = args.getString(1);
- Apptentive.putRatingProviderArg(key, value);
- callbackContext.success();
- return true;
-
- } else if (action.equals(ACTION_REMOVE_CUSTOM_DEVICE_DATA)) {
- String key = args.getString(0);
- Apptentive.removeCustomDeviceData(key);
- callbackContext.success();
- return true;
-
- } else if (action.equals(ACTION_REMOVE_CUSTOM_PERSON_DATA)) {
- String key = args.getString(0);
- Apptentive.removeCustomPersonData(key);
- callbackContext.success();
- return true;
-
- } else if (action.equals(ACTION_SEND_ATTACHMENT_FILE_URI)) {
- String uri = args.getString(0);
- Apptentive.sendAttachmentFile(uri);
- return true;
-
- } else if (action.equals(ACTION_SEND_ATTACHMENT_FILE)) {
- byte[] content = args.getString(0).getBytes();
- String mimeType = args.getString(1);
- Apptentive.sendAttachmentFile(content, mimeType);
- return true;
-
- } else if (action.equals(ACTION_SEND_ATTACHMENT_TEXT)) {
- String text = args.getString(0);
- Apptentive.sendAttachmentText(text);
- callbackContext.success();
- return true;
-
- } else if (action.equals(ACTION_GET_PERSON_EMAIL)) {
- String email = Apptentive.getPersonEmail();
- PluginResult result = new PluginResult(PluginResult.Status.OK, email);
- callbackContext.sendPluginResult(result);
- return true;
-
- } else if (action.equals(ACTION_SET_PERSON_EMAIL)) {
- String email = args.getString(0);
- Apptentive.setPersonEmail(email);
- callbackContext.success();
- return true;
-
- } else if (action.equals(ACTION_GET_PERSON_NAME)) {
- String name = Apptentive.getPersonName();
- PluginResult result = new PluginResult(PluginResult.Status.OK, name);
- callbackContext.sendPluginResult(result);
- return true;
-
- } else if (action.equals(ACTION_SET_PERSON_NAME)) {
- String name = args.getString(0);
- Apptentive.setPersonName(name);
- callbackContext.success();
- return true;
-
- } else if (action.equals(ACTION_SET_RATING_PROVIDER)) {
- String providerName = args.getString(0);
- if (providerName.equals("amazon")) {
- Apptentive.setRatingProvider(new AmazonAppstoreRatingProvider());
- }
- callbackContext.success();
- return true;
-
- } else if (action.equals(ACTION_ADD_UNREAD_MESSAGES_LISTENER)) {
- ApptentiveLog.i("Adding message listener.");
- listener = new UnreadMessagesListener() {
- public void onUnreadMessageCountChanged(int unreadMessages) {
- ApptentiveLog.i("Unread messages: %d", unreadMessages);
- PluginResult result = new PluginResult(PluginResult.Status.OK, unreadMessages);
- result.setKeepCallback(true);
- callbackContext.sendPluginResult(result);
- }
- };
- Apptentive.addUnreadMessagesListener(listener);
- return true;
-
- } else if (action.equals(ACTION_SET_ON_SURVEY_FINISHED_LISTENER)) {
- OnSurveyFinishedListener listener = new OnSurveyFinishedListener() {
- public void onSurveyFinished(boolean finished) {
- int completed = finished ? 1 : 0;
- PluginResult result = new PluginResult(PluginResult.Status.OK, completed);
- result.setKeepCallback(true);
- callbackContext.sendPluginResult(result);
- }
- };
- Apptentive.setOnSurveyFinishedListener(listener);
- return true;
- } else if (action.equals(ACTION_LOGIN)) {
- String token = args.getString(0);
- Apptentive.login(token, new Apptentive.LoginCallback() {
- @Override
- public void onLoginFinish() {
- callbackContext.success();
- }
-
- @Override
- public void onLoginFail(String errorMessage) {
- callbackContext.error(errorMessage);
- }
- });
- return true;
- } else if (action.equals(ACTION_LOGOUT)) {
- Apptentive.logout();
- callbackContext.success();
- return true;
- }
-
- ApptentiveLog.w("Unhandled action in ApptentiveBridge: %s", action);
-
- callbackContext.error("Unhandled action in ApptentiveBridge: " + action);
- return false;
- }
-
- private static ApptentiveLog.Level parseLogLevel(String logLevel) {
- if (logLevel.equals("verbose")) { return ApptentiveLog.Level.VERBOSE; }
- if (logLevel.equals("debug")) { return ApptentiveLog.Level.DEBUG; }
- if (logLevel.equals("info")) { return ApptentiveLog.Level.INFO; }
- if (logLevel.equals("warn")) { return ApptentiveLog.Level.WARN; }
- if (logLevel.equals("error")) { return ApptentiveLog.Level.ERROR; }
- if (logLevel.equals("assert")) { return ApptentiveLog.Level.ASSERT; }
- return ApptentiveLog.Level.UNKNOWN;
- }
-
- private static ApptentiveConfiguration resolveConfiguration(Context context) {
- String apptentiveKey = Util.getManifestMetadataString(context, Constants.MANIFEST_KEY_APPTENTIVE_KEY);
- if (StringUtils.isNullOrEmpty(apptentiveKey)) {
- throw new IllegalStateException("Unable to initialize Apptentive SDK: '" + Constants.MANIFEST_KEY_APPTENTIVE_KEY + "' manifest key is missing");
- }
-
- String apptentiveSignature = Util.getManifestMetadataString(context, Constants.MANIFEST_KEY_APPTENTIVE_SIGNATURE);
- if (StringUtils.isNullOrEmpty(apptentiveSignature)) {
- throw new IllegalStateException("Unable to initialize Apptentive SDK: '" + Constants.MANIFEST_KEY_APPTENTIVE_SIGNATURE + "' manifest key is missing");
- }
-
- ApptentiveConfiguration configuration = new ApptentiveConfiguration(apptentiveKey, apptentiveSignature);
-
- String shouldEncryptStorageString = Util.getManifestMetadataString(context, "apptentive_uses_encryption");
- if (!StringUtils.isNullOrEmpty(shouldEncryptStorageString)) {
- shouldEncryptStorageString = shouldEncryptStorageString.toLowerCase();
- boolean shouldEncryptStorage = shouldEncryptStorageString.equals("true") || shouldEncryptStorageString.equals("yes") || shouldEncryptStorageString.equals("1");
- configuration.setShouldEncryptStorage(shouldEncryptStorage);
- }
-
- String logLevelString = Util.getManifestMetadataString(context, Constants.MANIFEST_KEY_APPTENTIVE_LOG_LEVEL);
- ApptentiveLog.Level logLevel = ApptentiveLog.Level.parse(logLevelString);
- if (logLevel != ApptentiveLog.Level.UNKNOWN) {
- configuration.setLogLevel(logLevel);
- }
-
- return configuration;
- }
-}
diff --git a/src/android/ApptentiveBridge.kt b/src/android/ApptentiveBridge.kt
new file mode 100644
index 0000000..305245e
--- /dev/null
+++ b/src/android/ApptentiveBridge.kt
@@ -0,0 +1,339 @@
+package com.apptentive.cordova
+
+import android.app.Activity
+import android.content.Context
+import apptentive.com.android.feedback.Apptentive
+import apptentive.com.android.feedback.ApptentiveActivityInfo
+import apptentive.com.android.feedback.ApptentiveConfiguration
+import apptentive.com.android.feedback.EngagementResult
+import apptentive.com.android.feedback.RegisterResult
+import apptentive.com.android.util.InternalUseOnly
+import apptentive.com.android.util.Log
+import apptentive.com.android.util.LogLevel
+import apptentive.com.android.util.LogTag
+import org.apache.cordova.CallbackContext
+import org.apache.cordova.CordovaPlugin
+import org.apache.cordova.PluginResult
+import org.json.JSONArray
+import org.json.JSONException
+
+@OptIn(InternalUseOnly::class)
+class ApptentiveBridge : CordovaPlugin(), ApptentiveActivityInfo {
+
+ private var isApptentiveRegistered = false
+
+ override fun onResume(multitasking: Boolean) {
+ super.onResume(multitasking)
+ if (isApptentiveRegistered) {
+ Log.d(CORDOVA_TAG, "Registering ApptentiveInfoCallback")
+ Apptentive.registerApptentiveActivityInfoCallback(this)
+ }
+ }
+
+ override fun execute(action: String, args: JSONArray, callbackContext: CallbackContext): Boolean {
+ android.util.Log.d("Apptentive", "[CORDOVA] Executing action: $action")
+
+ val currentActivity = cordova.getActivity()
+ if (currentActivity == null) {
+ android.util.Log.e("Apptentive", "[CORDOVA] Current activity is null. Cannot execute action: $action")
+ callbackContext.error("Current activity is null. Cannot execute action: $action")
+ return true
+ }
+
+ when (action) {
+ ACTION_DEVICE_READY -> {
+
+ if (currentActivity != null && !Apptentive.registered) {
+
+ // Parse log level
+ val logLevel = try {
+ args.getString(0)
+ } catch (e: JSONException) {
+ null
+ }
+
+ val configuration = resolveConfiguration(currentActivity.application, logLevel)
+
+ configuration?.let {
+ Apptentive.register(currentActivity.application, configuration) {
+ if (it == RegisterResult.Success) {
+ Log.d(CORDOVA_TAG, "Register Apptentive: Success")
+ isApptentiveRegistered = true
+
+ handlePostRegister()
+ callbackContext.success()
+ } else {
+ android.util.Log.e("Apptentive", "[CORDOVA] Register Apptentive Fail: $it")
+ callbackContext.error("Register Apptentive Fail: $it")
+ }
+ }
+ } ?: run {
+ android.util.Log.e("Apptentive", "[CORDOVA] Register Apptentive: Fail")
+ callbackContext.error("Register Apptentive: Fail")
+ }
+ }
+ return true
+ }
+ ACTION_CAN_SHOW_MESSAGE_CENTER -> {
+ Apptentive.canShowMessageCenter { canShowMessageCenter ->
+ val result = PluginResult(PluginResult.Status.OK, canShowMessageCenter)
+ callbackContext.sendPluginResult(result)
+ }
+ return true
+ }
+ ACTION_SHOW_MESSAGE_CENTER -> {
+ if (args.length() > 0) {
+ val customData = JsonHelper.toMap(args.getJSONObject(0))
+ Apptentive.showMessageCenter(customData)
+ } else Apptentive.showMessageCenter()
+ callbackContext.success()
+ return true
+ }
+ ACTION_ADD_CUSTOM_DEVICE_DATA -> {
+ val key = args.getString(0)
+
+ when (val value = args.get(1)) {
+ is String -> Apptentive.addCustomDeviceData(key, value)
+ is Number -> Apptentive.addCustomDeviceData(key, value)
+ is Boolean -> Apptentive.addCustomDeviceData(key, value)
+ else -> {
+ callbackContext.error("Custom Device Data Type not supported: ${value::class.java}")
+ }
+ }
+ callbackContext.success()
+ return true
+ }
+ ACTION_ADD_CUSTOM_PERSON_DATA -> {
+ val key = args.getString(0)
+ when (val value = args.get(1)) {
+ is String -> Apptentive.addCustomPersonData(key, value)
+ is Number -> Apptentive.addCustomPersonData(key, value)
+ is Boolean -> Apptentive.addCustomPersonData(key, value)
+ else -> {
+ callbackContext.error("Custom Person Data Type not supported: ${value::class.java}")
+ }
+ }
+ callbackContext.success()
+ return true
+ }
+ ACTION_CAN_SHOW_INTERACTION -> {
+ val eventId = args.getString(0)
+ val canShow = Apptentive.canShowInteraction(eventId)
+ val result = PluginResult(PluginResult.Status.OK, canShow)
+ callbackContext.sendPluginResult(result)
+ return true
+ }
+ ACTION_ENGAGE -> {
+ val eventId = args.getString(0)
+ val customData = if (args.length() > 1) JsonHelper.toMap(args.getJSONObject(1)) else null
+
+ Apptentive.engage(eventId, customData) {
+ val interactionShown = it is EngagementResult.InteractionShown
+ val result = PluginResult(PluginResult.Status.OK, interactionShown)
+ callbackContext.sendPluginResult(result)
+ }
+
+ return true
+ }
+ ACTION_GET_UNREAD_MESSAGE_COUNT -> {
+ val unreadMessageCount = Apptentive.getUnreadMessageCount()
+ val result = PluginResult(PluginResult.Status.OK, unreadMessageCount)
+ callbackContext.sendPluginResult(result)
+ return true
+ }
+ ACTION_REMOVE_CUSTOM_DEVICE_DATA -> {
+ val key = args.getString(0)
+ Apptentive.removeCustomDeviceData(key)
+ callbackContext.success()
+ return true
+ }
+ ACTION_REMOVE_CUSTOM_PERSON_DATA -> {
+ val key = args.getString(0)
+ Apptentive.removeCustomPersonData(key)
+ callbackContext.success()
+ return true
+ }
+ ACTION_SEND_ATTACHMENT_FILE_URI -> {
+ val uri = args.getString(0)
+ Apptentive.sendAttachmentFile(uri)
+ return true
+ }
+ ACTION_SEND_ATTACHMENT_FILE -> {
+ val content = args.getString(0).toByteArray()
+ val mimeType = args.getString(1)
+ Apptentive.sendAttachmentFile(content, mimeType)
+ return true
+ }
+ ACTION_SEND_ATTACHMENT_TEXT -> {
+ val text = args.getString(0)
+ Apptentive.sendAttachmentText(text)
+ callbackContext.success()
+ return true
+ }
+ ACTION_GET_PERSON_EMAIL -> {
+ val email = Apptentive.getPersonEmail()
+ val result = PluginResult(PluginResult.Status.OK, email)
+ callbackContext.sendPluginResult(result)
+ return true
+ }
+ ACTION_SET_PERSON_EMAIL -> {
+ val email = args.getString(0)
+ Apptentive.setPersonEmail(email)
+ callbackContext.success()
+ return true
+ }
+ ACTION_GET_PERSON_NAME -> {
+ val name = Apptentive.getPersonName()
+ val result = PluginResult(PluginResult.Status.OK, name)
+ callbackContext.sendPluginResult(result)
+ return true
+ }
+ ACTION_SET_PERSON_NAME -> {
+ val name = args.getString(0)
+ Apptentive.setPersonName(name)
+ callbackContext.success()
+ return true
+ }
+ ACTION_ADD_UNREAD_MESSAGES_LISTENER -> {
+ return if (isApptentiveRegistered) {
+ Log.d(CORDOVA_TAG, "Observing Message Center Notification")
+ Apptentive.messageCenterNotificationObservable.observe { notification ->
+ Log.v(CORDOVA_TAG, "Message Center notification received: $notification")
+ val result = PluginResult(PluginResult.Status.OK, notification?.unreadMessageCount ?: 0)
+ result.setKeepCallback(true)
+ callbackContext.sendPluginResult(result)
+ }
+ true
+ } else {
+ android.util.Log.e("Apptentive", "[CORDOVA] Could not observe Message Center " +
+ "unread messages because Apptentive is not registered. Please register Apptentive " +
+ "with the `deviceReady` or `registerWithLogs` function and then try again."
+ )
+ false
+ }
+ }
+ ACTION_SET_ON_SURVEY_FINISHED_LISTENER -> {
+ if (isApptentiveRegistered) {
+ Log.d(CORDOVA_TAG, "Observing Survey finished notification")
+ Apptentive.eventNotificationObservable.observe { notification ->
+ if (notification?.interaction == "Survey" && notification.name == "submit") {
+ Log.v(CORDOVA_TAG, "Survey finished notification received: $notification")
+ val result = PluginResult(PluginResult.Status.OK, true)
+ result.setKeepCallback(true)
+ callbackContext.sendPluginResult(result)
+ }
+ }
+ } else {
+ android.util.Log.e("Apptentive", "[CORDOVA] Could not observe Survey finish " +
+ "notification because Apptentive is not registered. Please register Apptentive with " +
+ "the `deviceReady` or `registerWithLogs` function and then try again."
+ )
+ }
+ return true
+ }
+ else -> {
+ android.util.Log.e("Apptentive", "[CORDOVA] Unhandled action in ApptentiveBridge: $action")
+ callbackContext.error("Unhandled action in ApptentiveBridge: $action")
+ return false
+ }
+ }
+ }
+
+ private fun resolveConfiguration(context: Context, logLevel: String?): ApptentiveConfiguration? {
+ val apptentiveKey = Util.getManifestMetadataString(context, MANIFEST_KEY_APPTENTIVE_KEY)
+ ?: run {
+ android.util.Log.e("Apptentive", "[CORDOVA] Unable to initialize Apptentive SDK: '$MANIFEST_KEY_APPTENTIVE_KEY' manifest key is missing")
+ return null
+ }
+
+ val apptentiveSignature = Util.getManifestMetadataString(context, MANIFEST_KEY_APPTENTIVE_SIGNATURE)
+ ?: run {
+ android.util.Log.e("Apptentive", "[CORDOVA] Unable to initialize Apptentive SDK: '$MANIFEST_KEY_APPTENTIVE_SIGNATURE' manifest signature is missing")
+ return null
+ }
+
+ val configuration = ApptentiveConfiguration(apptentiveKey, apptentiveSignature).apply {
+ this.distributionName = "Cordova"
+ this.distributionVersion = "6.2.0"
+ }
+
+ val logLevelString = Util.getManifestMetadataString(context, MANIFEST_KEY_APPTENTIVE_LOG_LEVEL)
+ android.util.Log.d("Apptentive", "[CORDOVA] Log Level: $logLevelString")
+ if (logLevelString != null) configuration.logLevel = parseLogLevel(logLevel ?: logLevelString)
+
+ configuration.shouldEncryptStorage = Util.getManifestMetadataBoolean(context, MANIFEST_KEY_APPTENTIVE_SHOULD_ENCRYPT_STORAGE, configuration.shouldEncryptStorage)
+ android.util.Log.d("Apptentive", "[CORDOVA] Encryption: ${configuration.shouldEncryptStorage}")
+
+ configuration.shouldInheritAppTheme = Util.getManifestMetadataBoolean(context, MANIFEST_KEY_APPTENTIVE_SHOULD_INHERIT_APP_THEME, configuration.shouldInheritAppTheme)
+ android.util.Log.d("Apptentive", "[CORDOVA] Inherit App Theme: ${configuration.shouldInheritAppTheme}")
+
+ configuration.shouldSanitizeLogMessages = Util.getManifestMetadataBoolean(context, MANIFEST_KEY_APPTENTIVE_SHOULD_SANITIZE_LOG_MESSAGES, configuration.shouldSanitizeLogMessages)
+ android.util.Log.d("Apptentive", "[CORDOVA] Sanitize Log Messages: ${configuration.shouldSanitizeLogMessages}")
+
+ val ratingInteractionThrottleLength = Util.getManifestMetadataInt(context, MANIFEST_KEY_APPTENTIVE_RATING_INTERACTION_THROTTLE_LENGTH)
+ android.util.Log.d("Apptentive", "[CORDOVA] Rating Interaction Throttle Length: $ratingInteractionThrottleLength")
+ if (ratingInteractionThrottleLength != null && ratingInteractionThrottleLength != 0) configuration.ratingInteractionThrottleLength = ratingInteractionThrottleLength.toLong()
+
+ val customAppStoreURL = Util.getManifestMetadataString(context, MANIFEST_KEY_APPTENTIVE_CUSTOM_APP_STORE_URL)
+ android.util.Log.d("Apptentive", "[CORDOVA] Custom App Store URL: $customAppStoreURL")
+ if (!customAppStoreURL.isNullOrBlank()) configuration.customAppStoreURL = customAppStoreURL
+
+ return configuration
+ }
+
+ private fun parseLogLevel(logLevel: String): LogLevel {
+ return when (logLevel) {
+ "verbose" -> LogLevel.Verbose
+ "debug" -> LogLevel.Debug
+ "info" -> LogLevel.Info
+ "warn" -> LogLevel.Warning
+ "error" -> LogLevel.Error
+ else -> LogLevel.Info
+ }
+ }
+
+ private fun handlePostRegister() {
+ // We also do this in onResume, but doing it here as well might help
+ // avoid some race conditions that we've encountered before.
+ Log.d(CORDOVA_TAG, "Registering ApptentiveInfoCallback")
+ Apptentive.registerApptentiveActivityInfoCallback(this)
+ }
+
+ private companion object {
+ val CORDOVA_TAG = LogTag("CORDOVA")
+
+ const val MANIFEST_KEY_APPTENTIVE_KEY = "apptentive_key"
+ const val MANIFEST_KEY_APPTENTIVE_SIGNATURE = "apptentive_signature"
+
+ const val MANIFEST_KEY_APPTENTIVE_LOG_LEVEL = "apptentive_log_level"
+ const val MANIFEST_KEY_APPTENTIVE_SHOULD_ENCRYPT_STORAGE = "apptentive_uses_encryption"
+ const val MANIFEST_KEY_APPTENTIVE_SHOULD_INHERIT_APP_THEME = "apptentive_inherit_app_theme"
+ const val MANIFEST_KEY_APPTENTIVE_SHOULD_SANITIZE_LOG_MESSAGES = "apptentive_sanitize_log_messages"
+ const val MANIFEST_KEY_APPTENTIVE_RATING_INTERACTION_THROTTLE_LENGTH = "apptentive_rating_interaction_throttle_length"
+ const val MANIFEST_KEY_APPTENTIVE_CUSTOM_APP_STORE_URL = "apptentive_custom_app_store_url"
+
+ const val ACTION_DEVICE_READY = "deviceReady"
+ const val ACTION_ADD_CUSTOM_DEVICE_DATA = "addCustomDeviceData"
+ const val ACTION_ADD_CUSTOM_PERSON_DATA = "addCustomPersonData"
+ const val ACTION_ENGAGE = "engage"
+ const val ACTION_GET_UNREAD_MESSAGE_COUNT = "getUnreadMessageCount"
+ const val ACTION_REMOVE_CUSTOM_DEVICE_DATA = "removeCustomDeviceData"
+ const val ACTION_REMOVE_CUSTOM_PERSON_DATA = "removeCustomPersonData"
+ const val ACTION_SEND_ATTACHMENT_FILE_URI = "sendAttachmentFileUri"
+ const val ACTION_SEND_ATTACHMENT_FILE = "sendAttachmentFile"
+ const val ACTION_SEND_ATTACHMENT_TEXT = "sendAttachmentText"
+ const val ACTION_GET_PERSON_EMAIL = "getPersonEmail"
+ const val ACTION_SET_PERSON_EMAIL = "setPersonEmail"
+ const val ACTION_GET_PERSON_NAME = "getPersonName"
+ const val ACTION_SET_PERSON_NAME = "setPersonName"
+ const val ACTION_ADD_UNREAD_MESSAGES_LISTENER = "addUnreadMessagesListener"
+ const val ACTION_SET_ON_SURVEY_FINISHED_LISTENER = "setOnSurveyFinishedListener"
+ const val ACTION_SHOW_MESSAGE_CENTER = "showMessageCenter"
+ const val ACTION_CAN_SHOW_MESSAGE_CENTER = "canShowMessageCenter"
+ const val ACTION_CAN_SHOW_INTERACTION = "canShowInteraction"
+ }
+
+ override fun getApptentiveActivityInfo(): Activity? {
+ return cordova.getActivity()
+ }
+}
\ No newline at end of file
diff --git a/src/android/JsonHelper.java b/src/android/JsonHelper.java
deleted file mode 100644
index ee930fa..0000000
--- a/src/android/JsonHelper.java
+++ /dev/null
@@ -1,66 +0,0 @@
-package com.apptentive.cordova;
-
-import org.json.JSONArray;
-import org.json.JSONException;
-import org.json.JSONObject;
-
-import java.util.*;
-
-public class JsonHelper {
- public static Object toJSON(Object object) throws JSONException {
- if (object instanceof Map) {
- JSONObject json = new JSONObject();
- Map map = (Map) object;
- for (Object key : map.keySet()) {
- json.put(key.toString(), toJSON(map.get(key)));
- }
- return json;
- } else if (object instanceof Iterable) {
- JSONArray json = new JSONArray();
- for (Object value : ((Iterable) object)) {
- json.put(value);
- }
- return json;
- } else {
- return object;
- }
- }
-
- public static boolean isEmptyObject(JSONObject object) {
- return object.names() == null;
- }
-
- public static Map getMap(JSONObject object, String key) throws JSONException {
- return toMap(object.getJSONObject(key));
- }
-
- public static Map toMap(JSONObject object) throws JSONException {
- Map map = new HashMap();
- Iterator keys = object.keys();
- while (keys.hasNext()) {
- String key = (String) keys.next();
- map.put(key, fromJson(object.get(key)));
- }
- return map;
- }
-
- public static List toList(JSONArray array) throws JSONException {
- List list = new ArrayList();
- for (int i = 0; i < array.length(); i++) {
- list.add(fromJson(array.get(i)));
- }
- return list;
- }
-
- private static Object fromJson(Object json) throws JSONException {
- if (json == JSONObject.NULL) {
- return null;
- } else if (json instanceof JSONObject) {
- return toMap((JSONObject) json);
- } else if (json instanceof JSONArray) {
- return toList((JSONArray) json);
- } else {
- return json;
- }
- }
-}
\ No newline at end of file
diff --git a/src/android/JsonHelper.kt b/src/android/JsonHelper.kt
new file mode 100644
index 0000000..be8f41a
--- /dev/null
+++ b/src/android/JsonHelper.kt
@@ -0,0 +1,34 @@
+package com.apptentive.cordova
+
+import org.json.JSONArray
+import org.json.JSONObject
+
+object JsonHelper {
+ fun toMap(obj: JSONObject): Map? {
+ val map = mutableMapOf()
+ val keys = obj.keys()
+ if (!keys.hasNext()) return null
+ else while (keys.hasNext()) {
+ val key = keys.next() as String
+ map[key] = obj.get(key)
+ }
+ return map
+ }
+
+ private fun toList(array: JSONArray): List<*> {
+ val list = mutableListOf()
+ for (i in 0 until array.length()) {
+ list.add(fromJson(array.get(i)))
+ }
+ return list
+ }
+
+ private fun fromJson(json: Any): Any? {
+ return when {
+ json === JSONObject.NULL -> null
+ json is JSONObject -> toMap(json)
+ json is JSONArray -> toList(json)
+ else -> json
+ }
+ }
+}
\ No newline at end of file
diff --git a/src/android/Util.kt b/src/android/Util.kt
new file mode 100644
index 0000000..a4a5aca
--- /dev/null
+++ b/src/android/Util.kt
@@ -0,0 +1,63 @@
+package com.apptentive.cordova
+
+import android.content.Context
+import android.content.pm.PackageManager
+
+object Util {
+ /**
+ * Helper method for resolving manifest metadata [String] value
+ */
+ fun getManifestMetadataString(context: Context, key: String): String? {
+ try {
+ val appPackageName = context.packageName
+ val packageManager = context.packageManager
+ val packageInfo = packageManager.getPackageInfo(
+ appPackageName,
+ PackageManager.GET_META_DATA or PackageManager.GET_RECEIVERS
+ )
+ val metaData = packageInfo.applicationInfo.metaData
+ return metaData?.getString(key)?.trim()
+ } catch (e: Exception) {
+ android.util.Log.e("Apptentive", "[CORDOVA] Unexpected error while reading application or package info.")
+ }
+ return null
+ }
+
+ /**
+ * Helper method for resolving manifest metadata [Boolean] value
+ */
+ fun getManifestMetadataBoolean(context: Context, key: String, default: Boolean): Boolean {
+ try {
+ val appPackageName = context.packageName
+ val packageManager = context.packageManager
+ val packageInfo = packageManager.getPackageInfo(
+ appPackageName,
+ PackageManager.GET_META_DATA or PackageManager.GET_RECEIVERS
+ )
+ val metaData = packageInfo.applicationInfo.metaData
+ return metaData?.getBoolean(key) == true
+ } catch (e: Exception) {
+ android.util.Log.e("Apptentive", "[CORDOVA] Unexpected error while reading application or package info.", e)
+ }
+ return default
+ }
+
+ /**
+ * Helper method for resolving manifest metadata [Int] value
+ */
+ fun getManifestMetadataInt(context: Context, key: String): Int? {
+ try {
+ val appPackageName = context.packageName
+ val packageManager = context.packageManager
+ val packageInfo = packageManager.getPackageInfo(
+ appPackageName,
+ PackageManager.GET_META_DATA or PackageManager.GET_RECEIVERS
+ )
+ val metaData = packageInfo.applicationInfo.metaData
+ return metaData?.getInt(key)
+ } catch (e: Exception) {
+ android.util.Log.e("Apptentive", "[CORDOVA] Unexpected error while reading application or package info.", e)
+ }
+ return null
+ }
+}
\ No newline at end of file
diff --git a/src/android/android.iml b/src/android/android.iml
new file mode 100644
index 0000000..a1233ed
--- /dev/null
+++ b/src/android/android.iml
@@ -0,0 +1,12 @@
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/ios/ApptentiveBridge-Bridging-Header.h b/src/ios/ApptentiveBridge-Bridging-Header.h
new file mode 100644
index 0000000..af802d6
--- /dev/null
+++ b/src/ios/ApptentiveBridge-Bridging-Header.h
@@ -0,0 +1,5 @@
+//
+// Use this file to import your target's public headers that you would like to expose to Swift.
+//
+
+#import
diff --git a/src/ios/ApptentiveBridge.h b/src/ios/ApptentiveBridge.h
deleted file mode 100644
index e6637f3..0000000
--- a/src/ios/ApptentiveBridge.h
+++ /dev/null
@@ -1,8 +0,0 @@
-#import
-
-
-@interface ApptentiveBridge : CDVPlugin
-
-- (void)execute:(CDVInvokedUrlCommand *)command;
-
-@end
diff --git a/src/ios/ApptentiveBridge.m b/src/ios/ApptentiveBridge.m
deleted file mode 100644
index 6837b33..0000000
--- a/src/ios/ApptentiveBridge.m
+++ /dev/null
@@ -1,353 +0,0 @@
-@import ApptentiveKit;
-
-#import "ApptentiveBridge.h"
-
-
-@implementation ApptentiveBridge {
- BOOL apptentiveInitialized;
- BOOL registeredForMessageNotifications;
- NSString *messageNotificationCallback;
-}
-
-- (void)execute:(CDVInvokedUrlCommand *)command {
- NSString *callbackId = [command callbackId];
- if ([command arguments].count == 0) {
- [self sendFailureMessage:@"Insufficient arguments: No method name specified." callbackId:callbackId];
- return;
- }
- NSString *functionCall = [command argumentAtIndex:0];
- NSLog(@"Function call: %@", functionCall);
-
- //initialization
- if ([functionCall isEqualToString:@"deviceReady"]) {
- [self registerWithArguments:command.arguments callbackId:callbackId];
- } else if ([functionCall isEqualToString:@"addCustomDeviceData"]) {
- [self addCustomDeviceData:[command arguments] callBackString:callbackId];
- } else if ([functionCall isEqualToString:@"addCustomPersonData"]) {
- [self addCustomPersonData:[command arguments] callBackString:callbackId];
- } else if ([functionCall isEqualToString:@"engage"]) {
- [self engage:[command arguments] callBackString:callbackId];
- } else if ([functionCall isEqualToString:@"openAppStore"]) {
- [self openAppStore];
- } else if ([functionCall isEqualToString:@"showMessageCenter"]) {
- [self showMessageCenter:[command arguments] callBackString:callbackId];
- } else if ([functionCall isEqualToString:@"registerForMessageNotifications"]) {
- [self registerForMessageNotifications:[command arguments] callBackString:callbackId];
- } else if ([functionCall isEqualToString:@"removeCustomDeviceData"]) {
- [self removeCustomDeviceData:[command arguments] callBackString:callbackId];
- } else if ([functionCall isEqualToString:@"removeCustomPersonData"]) {
- [self removeCustomPersonData:[command arguments] callBackString:callbackId];
- } else if ([functionCall isEqualToString:@"sendAttachmentFileWithMimeType"]) {
- [self sendAttachmentFileWithMimeType:[command arguments] callBackString:callbackId];
- } else if ([functionCall isEqualToString:@"sendAttachmentImage"]) {
- [self sendAttachmentImage:[command arguments] callBackString:callbackId];
- } else if ([functionCall isEqualToString:@"sendAttachmentText"]) {
- [self sendAttachmentText:[command arguments] callBackString:callbackId];
- } else if ([functionCall isEqualToString:@"setProperty"]) {
- [self setProperty:[command arguments] callBackString:callbackId];
- } else if ([functionCall isEqualToString:@"getProperty"]) {
- [self getProperty:[command arguments] callBackString:callbackId];
- } else if ([functionCall isEqualToString:@"unreadMessageCount"]) {
- [self unreadMessageCount:callbackId];
- } else if ([functionCall isEqualToString:@"unregisterForNotifications"]) {
- [self unregisterForNotifications];
- } else if ([functionCall isEqualToString:@"canShowInteraction"]) {
- [self canShowInteraction:[command arguments] callBackString:callbackId];
- } else if ([functionCall isEqualToString:@"canShowMessageCenter"]) {
- [self canShowMessageCenter:callbackId];
- } else {
- //command not recognized
- [self sendFailureMessage:@"Command not recognized" callbackId:callbackId];
- }
-}
-
-- (void)sendSuccessMessage:(NSString *)msg callbackId:(NSString *)callbackId {
- CDVPluginResult *result = [CDVPluginResult resultWithStatus:CDVCommandStatus_OK messageAsString:msg];
- [self.commandDelegate sendPluginResult:result callbackId:callbackId];
-}
-
-- (void)sendFailureMessage:(NSString *)error callbackId:(NSString *)callbackId {
- CDVPluginResult *result = [CDVPluginResult resultWithStatus:CDVCommandStatus_ERROR messageAsString:error];
- [self.commandDelegate sendPluginResult:result callbackId:callbackId];
-}
-
-- (BOOL)parseBoolValue:(NSString *)value {
- if ([value isEqualToString:@"true"] || [value isEqualToString:@"True"] || [value isEqualToString:@"yes"]) {
- return YES;
- } else
- return [value boolValue];
-}
-
-- (NSDictionary *)parseDictionaryFromString:(id)value {
- NSDictionary *data;
- if ([value isKindOfClass:[NSDictionary class]]) {
- data = value;
- } else {
- //custom data needs to be parsed to NSDictionary - assuming json was passed
- NSData *data = [value dataUsingEncoding:NSUTF8StringEncoding];
- NSError *localError = nil;
- data = [NSJSONSerialization JSONObjectWithData:data options:0 error:&localError];
- }
- if (data != nil) {
- return data;
- } else
- return nil;
-}
-
-#pragma mark Initialization and Events
-- (void)registerWithArguments:(NSArray *)arguments callbackId:(NSString *)callbackId {
- // Access Info.plist for ApptentiveAPIKey
- NSDictionary *infoPlist = [[NSBundle mainBundle] infoDictionary];
- NSString *apptentiveKey = [infoPlist objectForKey:@"ApptentiveKey"];
- NSString *apptentiveSignature = [infoPlist objectForKey:@"ApptentiveSignature"];
- NSString *pluginVersion = [infoPlist objectForKey:@"ApptentivePluginVersion"];
-
- // Log key and signature with verbose logs
- if ([arguments[1] isEqualToString:@"verbose"]) {
- NSLog(@"Initializing Apptentive Apptentive App Key: %@, Apptentive App Signature: %@", apptentiveKey, apptentiveSignature);
- }
-
- if (apptentiveKey.length == 0 || apptentiveSignature.length == 0) {
- [self sendFailureMessage:@"App credentials missing from Info.plist." callbackId:callbackId];
- return;
- }
-
- ApptentiveConfiguration *configuration = [ApptentiveConfiguration configurationWithApptentiveKey:apptentiveKey apptentiveSignature:apptentiveSignature];
- configuration.distributionName = @"Cordova";
- configuration.distributionVersion = pluginVersion;
- configuration.logLevel = [self parseLogLevel:arguments[1]];
-
- // Initialize Apptentive on main queue
- Apptentive *apptentive = Apptentive.shared;
-
- [self.commandDelegate runInBackground:^{
- [apptentive registerWithConfiguration:configuration completion:^(BOOL success) {
- if (success) {
- [self sendSuccessMessage:@"Apptentive registration succeeded." callbackId:callbackId];
- } else {
- [self sendFailureMessage:@"Apptentive registration failed." callbackId:callbackId];
- }
- }];
- }];
-}
-
-- (ApptentiveLogLevel)parseLogLevel:(NSString *) logLevel {
- if ([logLevel isEqualToString:@"verbose"]) { return ApptentiveLogLevelVerbose; }
- if ([logLevel isEqualToString:@"debug"]) { return ApptentiveLogLevelDebug; }
- if ([logLevel isEqualToString:@"info"]) { return ApptentiveLogLevelInfo; }
- if ([logLevel isEqualToString:@"warn"]) { return ApptentiveLogLevelWarn; }
- if ([logLevel isEqualToString:@"error"]) { return ApptentiveLogLevelError; }
- if ([logLevel isEqualToString:@"critical"]) { return ApptentiveLogLevelCrit; }
- return ApptentiveLogLevelUndefined;
-}
-
-- (void)registerForMessageNotifications:(NSArray *)arguments callBackString:(NSString *)callbackId {
- [Apptentive.shared addObserver:self forKeyPath:@"unreadMessageCount" options:NSKeyValueObservingOptionNew context:nil];
- registeredForMessageNotifications = YES;
- messageNotificationCallback = callbackId;
-}
-
-- (void)unregisterForNotifications {
- if (registeredForMessageNotifications) {
- [Apptentive.shared removeObserver:self forKeyPath:@"unreadMessageCount"];
- }
-}
-
-#pragma mark Observations
-
-- (void)observeValueForKeyPath:(NSString *)keyPath ofObject:(id)object change:(NSDictionary *)change context:(void *)context {
- NSNumber *unreadMessageCount = @(Apptentive.shared.unreadMessageCount);
- CDVPluginResult *result = [CDVPluginResult resultWithStatus:CDVCommandStatus_OK messageAsInt:[unreadMessageCount intValue]];
- [result setKeepCallback:[NSNumber numberWithBool:YES]];
- [self.commandDelegate sendPluginResult:result callbackId:messageNotificationCallback];
-}
-
-#pragma mark Properties and Interface Customization
-
-- (void)setProperty:(NSArray *)arguments callBackString:(NSString *)callbackId {
- if (arguments.count < 3) {
- [self sendFailureMessage:@"Insufficient arguments for setting property" callbackId:callbackId];
- return;
- }
- NSString *property_id = [arguments objectAtIndex:1];
- NSString *value = [arguments objectAtIndex:2];
- if ([property_id isEqualToString:@"personName"]) {
- Apptentive.shared.personName = value;
- } else if ([property_id isEqualToString:@"personEmailAddress"]) {
- Apptentive.shared.personEmailAddress = value;
- } else {
- [self sendFailureMessage:@"Property name not recognized" callbackId:callbackId];
- }
-}
-
-- (void)getProperty:(NSArray *)arguments callBackString:(NSString *)callbackId {
- if (arguments.count < 2) {
- [self sendFailureMessage:@"Insufficient arguments for getting property" callbackId:callbackId];
- return;
- }
- NSString *property_id = [arguments objectAtIndex:1];
- NSString *value = nil;
- if ([property_id isEqualToString:@"personName"]) {
- value = Apptentive.shared.personName;
- } else if ([property_id isEqualToString:@"personEmailAddress"]) {
- value = Apptentive.shared.personEmailAddress;
- } else {
- [self sendFailureMessage:@"Property name not recognized" callbackId:callbackId];
- return;
- }
-
- [self sendSuccessMessage:value callbackId:callbackId];
-}
-
-#pragma mark Methods
-
-- (void)addCustomDeviceData:(NSArray *)arguments callBackString:(NSString *)callbackId {
- NSString *key = [arguments objectAtIndex:1];
- id value = [arguments objectAtIndex:2];
- if ([value isKindOfClass:[NSString class]]) {
- NSString *stringData = value;
- [Apptentive.shared addCustomDeviceDataString:stringData withKey:key];
- } else if ([value isKindOfClass:[NSNumber class]]) {
- if (value == [NSNumber numberWithBool:YES] || value == [NSNumber numberWithBool:NO]) {
- NSNumber *boolData = value;
- [Apptentive.shared addCustomDeviceDataBool:boolData.boolValue withKey:key];
- } else {
- NSNumber *numberData = value;
- [Apptentive.shared addCustomDeviceDataNumber:numberData withKey:key];
- }
- } else {
- [self sendFailureMessage:@"Custom Device data type not recognized" callbackId:callbackId];
- return;
- }
- CDVPluginResult *result = [CDVPluginResult resultWithStatus:CDVCommandStatus_OK];
- [self.commandDelegate sendPluginResult:result callbackId:callbackId];
-}
-
-- (void)addCustomPersonData:(NSArray *)arguments callBackString:(NSString *)callbackId {
- NSString *key = [arguments objectAtIndex:1];
- id value = [arguments objectAtIndex:2];
- if ([value isKindOfClass:[NSString class]]) {
- NSString *stringData = value;
- [Apptentive.shared addCustomPersonDataString:stringData withKey:key];
- } else if ([value isKindOfClass:[NSNumber class]]) {
- if (value == [NSNumber numberWithBool:YES] || value == [NSNumber numberWithBool:NO]) {
- NSNumber *boolData = value;
- [Apptentive.shared addCustomPersonDataBool:boolData.boolValue withKey:key];
- } else {
- NSNumber *numberData = value;
- [Apptentive.shared addCustomPersonDataNumber:numberData withKey:key];
- }
- } else {
- [self sendFailureMessage:@"Custom Person data type not recognized" callbackId:callbackId];
- return;
- }
- CDVPluginResult *result = [CDVPluginResult resultWithStatus:CDVCommandStatus_OK];
- [self.commandDelegate sendPluginResult:result callbackId:callbackId];
-}
-
-- (void)engage:(NSArray *)arguments callBackString:(NSString *)callbackId {
- NSString *eventLabel = [arguments objectAtIndex:1];
- if ([eventLabel isEqual:[NSNull null]]) {
- [self sendFailureMessage:@"Insufficient arguments to call engage - label is null" callbackId:callbackId];
- return;
- }
-
- void (^completion)(BOOL) = ^void(BOOL shown) {
- CDVPluginResult *result = [CDVPluginResult
- resultWithStatus:CDVCommandStatus_OK
- messageAsBool:shown];
- [self.commandDelegate sendPluginResult:result callbackId:callbackId];
- };
-
- if (arguments.count == 2) {
- [Apptentive.shared engage:eventLabel fromViewController:self.viewController completion:completion];
- return;
- } else if (arguments.count == 3) {
- NSDictionary *customData = [self parseDictionaryFromString:[arguments objectAtIndex:2]];
- if (customData == nil) {
- [self sendFailureMessage:@"Improperly formed json or object for engage custom data" callbackId:callbackId];
- return;
- }
- [Apptentive.shared engage:eventLabel withCustomData:customData fromViewController:self.viewController completion:completion];
- return;
- }
-
- [self sendFailureMessage:@"Too many arguments" callbackId:callbackId];
-}
-
-- (void)openAppStore {
- NSLog(@"Open App Store is not implemented in the new iOS SDK");
-}
-
-- (void)showMessageCenter:(NSArray *)arguments callBackString:(NSString *)callbackId {
- if (arguments.count == 2) {
- NSDictionary *customData = [self parseDictionaryFromString:[arguments objectAtIndex:1]];
- [Apptentive.shared presentMessageCenterFromViewController:self.viewController withCustomData:customData];
- } else {
- [Apptentive.shared presentMessageCenterFromViewController:self.viewController];
- }
-}
-
-- (void)removeCustomDeviceData:(NSArray *)arguments callBackString:(NSString *)callbackId {
- NSString *key = [arguments objectAtIndex:1];
- [Apptentive.shared removeCustomDeviceDataWithKey:key];
- CDVPluginResult *result = [CDVPluginResult resultWithStatus:CDVCommandStatus_OK];
- [self.commandDelegate sendPluginResult:result callbackId:callbackId];
-}
-
-- (void)removeCustomPersonData:(NSArray *)arguments callBackString:(NSString *)callbackId {
- NSString *key = [arguments objectAtIndex:1];
- [Apptentive.shared removeCustomPersonDataWithKey:key];
- CDVPluginResult *result = [CDVPluginResult resultWithStatus:CDVCommandStatus_OK];
- [self.commandDelegate sendPluginResult:result callbackId:callbackId];
-}
-
-- (void)sendAttachmentFileWithMimeType:(NSArray *)arguments callBackString:(NSString *)callbackId {
- NSData *data = [[arguments objectAtIndex:1] dataUsingEncoding:NSUTF8StringEncoding];
- NSString *mimeType = [arguments objectAtIndex:2];
- [Apptentive.shared sendAttachmentFile:data withMimeType:mimeType];
-}
-
-- (void)sendAttachmentImage:(NSArray *)arguments callBackString:(NSString *)callbackId {
- //expecting Base64 encoded string data here
- NSString *base64String = [arguments objectAtIndex:1];
- NSData *data = [[NSData alloc] initWithBase64EncodedString:base64String options:0];
- UIImage *attachmentImage = [UIImage imageWithData:data];
- if (attachmentImage == nil) {
- [self sendFailureMessage:@"Image could not be constructed from the passed data" callbackId:callbackId];
- }
- [Apptentive.shared sendAttachmentImage:attachmentImage];
-}
-
-- (void)sendAttachmentText:(NSArray *)arguments callBackString:(NSString *)callbackId {
- NSString *text = [arguments objectAtIndex:1];
- [Apptentive.shared sendAttachmentText:text];
-}
-
-- (void)unreadMessageCount:(NSString *)callbackId {
- NSUInteger unreadMessageCount = [Apptentive.shared unreadMessageCount];
- CDVPluginResult *result = [CDVPluginResult
- resultWithStatus:CDVCommandStatus_OK
- messageAsInt:(int)unreadMessageCount];
- [self.commandDelegate sendPluginResult:result callbackId:callbackId];
-}
-
-- (void)canShowInteraction:(NSArray *)arguments callBackString:(NSString *)callbackId {
- NSString *eventName = [arguments objectAtIndex:1];
- if ([eventName isEqual:[NSNull null]]) {
- [self sendFailureMessage:@"Insufficient arguments to call willShowInteraction - eventName is null" callbackId:callbackId];
- return;
- }
- [Apptentive.shared queryCanShowInteractionForEvent:eventName completion:^(BOOL canShow) {
- CDVPluginResult *result = [CDVPluginResult resultWithStatus:CDVCommandStatus_OK messageAsBool:canShow];
- [self.commandDelegate sendPluginResult:result callbackId:callbackId];
- }];
-}
-
-- (void)canShowMessageCenter:(NSString *)callbackId {
- // ApptentiveKit Message Center will always show either a "not available" note or succeed.
- CDVPluginResult *result = [CDVPluginResult resultWithStatus:CDVCommandStatus_OK messageAsBool:YES];
- [self.commandDelegate sendPluginResult:result callbackId:callbackId];
-}
-
-@end
diff --git a/src/ios/ApptentiveBridge.swift b/src/ios/ApptentiveBridge.swift
new file mode 100644
index 0000000..88ffcdf
--- /dev/null
+++ b/src/ios/ApptentiveBridge.swift
@@ -0,0 +1,387 @@
+//
+// ApptentiveBridge.swift
+// ApptentiveCordova
+//
+// Created by Frank Schmitt on 4/3/23.
+//
+
+import Foundation
+import ApptentiveKit
+
+@objc(ApptentiveBridge)
+class ApptentiveBridge: CDVPlugin {
+
+ var apptentiveInitialized = false
+ var registeredForMessageNotifications = false
+ var messageNotificationCallback: String?
+
+ var observation: NSKeyValueObservation?
+
+ override func pluginInitialize() {
+ super.pluginInitialize()
+ }
+
+ @objc func execute(_ command: CDVInvokedUrlCommand) {
+ guard let callbackID = command.callbackId else {
+ assertionFailure("Missing callback ID in Apptentive Plugin")
+ return
+ }
+
+ do {
+ guard let functionCall = command.arguments.first as? String else {
+ throw PluginError.invalidCommandArgument(command.arguments.first)
+ }
+
+ switch functionCall {
+ case "deviceReady", "registerWithLogs":
+ let (credentials, logLevel, distributionVersion, sanitizeLogMessages) = try Self.resolveConfiguration(from: command.arguments)
+ ApptentiveLogger.logLevel = logLevel
+ ApptentiveLogger.shouldHideSensitiveLogs = sanitizeLogMessages
+ Apptentive.shared.distributionVersion = distributionVersion
+ Apptentive.shared.register(with: credentials) { result in
+ switch result {
+ case .success:
+ self.commandDelegate.send(.init(status: CDVCommandStatus_OK, messageAs: "Apptentive SDK registered successfully."), callbackId: callbackID)
+
+ case .failure(let error):
+ self.commandDelegate.send(.init(status: CDVCommandStatus_ERROR, messageAs: error.localizedDescription), callbackId: callbackID)
+ }
+ }
+ return
+
+ case "engage":
+ Apptentive.shared.engage(event: Event(name: try Self.string(from: command.arguments))) { result in
+ switch result {
+ case .success(let didShowInteraction):
+ self.commandDelegate.send(.init(status: CDVCommandStatus_OK, messageAs: didShowInteraction), callbackId: callbackID)
+
+ case .failure(let error):
+ self.commandDelegate.send(.init(status: CDVCommandStatus_ERROR, messageAs: error.localizedDescription), callbackId: callbackID)
+ }
+ }
+ return
+
+ case "addCustomDeviceData":
+ let (key, value) = try Self.customDataPair(from: command.arguments)
+ Apptentive.shared.deviceCustomData[key] = value
+
+ case "addCustomPersonData":
+ let (key, value) = try Self.customDataPair(from: command.arguments)
+ Apptentive.shared.personCustomData[key] = value
+
+ case "showMessageCenter":
+ let customData = try Self.maybeCustomData(from: command.arguments)
+ Apptentive.shared.presentMessageCenter(from: self.viewController, with: customData) { result in
+ switch result {
+ case .success(let didShow):
+ self.commandDelegate.send(.init(status: CDVCommandStatus_OK, messageAs: didShow), callbackId: callbackID)
+
+ case .failure(let error):
+ self.commandDelegate.send(.init(status: CDVCommandStatus_ERROR, messageAs: error.localizedDescription), callbackId: callbackID)
+ }
+ }
+ return
+
+ case "removeCustomDeviceData":
+ Apptentive.shared.deviceCustomData[try Self.string(from: command.arguments)] = nil
+
+ case "removeCustomPersonData":
+ Apptentive.shared.personCustomData[try Self.string(from: command.arguments)] = nil
+
+ case "sendAttachmentFileWithMimeType":
+ let _ = try Self.checkArgumentCount(command.arguments, 2...2)
+ throw PluginError.unimplementedCommand(functionCall)
+
+ case "sendAttachmentImage":
+ let _ = try Self.checkArgumentCount(command.arguments, 2...2)
+ throw PluginError.unimplementedCommand(functionCall)
+
+ case "sendAttachmentText":
+ Apptentive.shared.sendAttachment(try Self.string(from: command.arguments))
+
+ case "setProperty":
+ let (key, value) = try Self.propertyPair(from: command.arguments)
+ Apptentive.shared[keyPath: try Self.property(from: key)] = value
+
+ case "getProperty":
+ let result = Apptentive.shared[keyPath: try Self.property(from: Self.string(from: command.arguments))]
+ return self.commandDelegate.send(.init(status: CDVCommandStatus_OK, messageAs: result), callbackId: callbackID)
+
+ case "unreadMessageCount":
+ let result = Apptentive.shared.unreadMessageCount
+ return self.commandDelegate.send(.init(status: CDVCommandStatus_OK, messageAs: result), callbackId: callbackID)
+
+ case "addUnreadMessagesListener":
+ let _ = try Self.checkArgumentCount(command.arguments, 0...0)
+ self.observation = Apptentive.shared.observe(\.unreadMessageCount, options: [.new]) { [weak self] _, _ in
+ guard let self = self else { return }
+ let result = CDVPluginResult(status: CDVCommandStatus_OK, messageAs: Apptentive.shared.unreadMessageCount)
+ result?.setKeepCallbackAs(true)
+ self.commandDelegate.send(result, callbackId: callbackID)
+ }
+ return
+
+ case "addSurveyFinishedListener":
+ let _ = try Self.checkArgumentCount(command.arguments, 0...0)
+ NotificationCenter.default.addObserver(forName: .apptentiveEventEngaged, object: nil, queue: nil) { [weak self] (notification) in
+ if notification.userInfo?["eventType"] as? String == "submit" && notification.userInfo?["interactionType"] as? String == "Survey" {
+ let result = CDVPluginResult(status: CDVCommandStatus_OK, messageAs: Apptentive.shared.unreadMessageCount)
+ result?.setKeepCallbackAs(true)
+ self?.commandDelegate.send(result, callbackId: callbackID)
+ }
+ }
+ return
+
+ case "unregisterForNotifications":
+ self.observation?.invalidate()
+ NotificationCenter.default.removeObserver(self)
+
+ case "canShowInteraction":
+ Apptentive.shared.canShowInteraction(event: Event(name: try Self.string(from: command.arguments))) { result in
+ switch result {
+ case .success(let canShow):
+ self.commandDelegate.send(.init(status: CDVCommandStatus_OK, messageAs: canShow), callbackId: callbackID)
+
+ case .failure(let error):
+ self.commandDelegate.send(.init(status: CDVCommandStatus_ERROR, messageAs: error.localizedDescription), callbackId: callbackID)
+ }
+ }
+ return
+
+ case "canShowMessageCenter":
+ let _ = try Self.checkArgumentCount(command.arguments, 0...0)
+ throw PluginError.unimplementedCommand(functionCall)
+
+ case "openAppStore":
+ let _ = try Self.checkArgumentCount(command.arguments, 0...0)
+ throw PluginError.unimplementedCommand(functionCall)
+
+ default:
+ throw PluginError.unrecognizedCommand(functionCall)
+ }
+
+ self.commandDelegate.send(.init(status: CDVCommandStatus_OK), callbackId: callbackID)
+ } catch let error {
+ self.commandDelegate.send(.init(status: CDVCommandStatus_ERROR, messageAs: error.localizedDescription), callbackId: callbackID)
+ }
+ }
+
+ // MARK: - Helper functions
+
+ static func checkArgumentCount(_ arguments: [Any], _ range: ClosedRange) throws -> [Any] {
+ let nonFunctionArgumentCount = arguments.count - 1
+ guard range.contains(nonFunctionArgumentCount) else {
+ throw PluginError.incorrectArgumentCount(function: (arguments.first as? String) ?? "", expecting: range, received: nonFunctionArgumentCount)
+ }
+
+ return Array(arguments.suffix(from: 1))
+ }
+
+ static func resolveConfiguration(from arguments: [Any]) throws -> (Apptentive.AppCredentials, LogLevel, String, Bool) {
+ let functionArguments = try self.checkArgumentCount(arguments, 0...1)
+
+ guard let apptentiveKey = Bundle.main.object(forInfoDictionaryKey: "ApptentiveKey") as? String,
+ let apptentiveSignature = Bundle.main.object(forInfoDictionaryKey: "ApptentiveSignature") as? String,
+ let pluginVersion = Bundle.main.object(forInfoDictionaryKey: "ApptentivePluginVersion") as? String
+ else {
+ throw PluginError.missingVariablesInInfoDictionary
+ }
+
+ let sanitizeLogMessagesString = Bundle.main.object(forInfoDictionaryKey: "ApptentiveSanitizeLogMessages") as? String ?? "true"
+ let sanitizeLogMessages = sanitizeLogMessagesString.lowercased() != "false"
+
+ var logLevel: LogLevel
+ if let logLevelArgument = functionArguments.first {
+ guard let logLevelString = logLevelArgument as? String else {
+ throw PluginError.invalidArgumentType(atIndex: 0, expecting: "String")
+ }
+ logLevel = try self.parseLogLevel(logLevelString)
+ } else {
+ logLevel = .info
+ }
+
+ return (.init(key: apptentiveKey, signature: apptentiveSignature), logLevel, pluginVersion, sanitizeLogMessages)
+ }
+
+ static func parseLogLevel(_ logLevelString: String) throws -> LogLevel {
+ switch logLevelString.lowercased() {
+ case "verbose":
+ return .debug
+ case "debug":
+ return .debug
+ case "info":
+ return .info
+ case "warn":
+ return .warning
+ case "error":
+ return .error
+ case "critical":
+ return .critical
+ default:
+ throw PluginError.unrecognizedLogLevel(logLevelString)
+ }
+ }
+
+ static func string(from arguments: [Any]) throws -> String {
+ let functionArguments = try checkArgumentCount(arguments, 1...1)
+
+ guard let string = functionArguments[0] as? String else {
+ throw PluginError.invalidArgumentType(atIndex: 0, expecting: "String")
+ }
+
+ return string
+ }
+
+ static func propertyPair(from arguments: [Any]) throws -> (String, String?) {
+ let functionArguments = try checkArgumentCount(arguments, 2...2)
+
+ guard let key = functionArguments[0] as? String else {
+ throw PluginError.invalidPropertyKeyType
+ }
+
+ guard let value = functionArguments[1] as? String? else {
+ throw PluginError.invalidPropertyValueType
+ }
+
+ return (key, value)
+ }
+
+ static func property(from key: String) throws -> ReferenceWritableKeyPath {
+ switch key {
+ case "personName":
+ return \Apptentive.personName
+
+ case "personEmailAddress":
+ return \Apptentive.personEmailAddress
+
+ default:
+ throw PluginError.invalidPropertyKeyType
+ }
+ }
+
+ static func customDataPair(from arguments: [Any]) throws -> (String, CustomDataCompatible) {
+ let functionArguments = try checkArgumentCount(arguments, 2...2)
+
+ guard let key = functionArguments[0] as? String else {
+ throw PluginError.invalidCustomDataKeyType
+ }
+
+ let value = try self.convertCustomDataValue(functionArguments[1])
+
+ return (key, value)
+ }
+
+ static func maybeCustomData(from arguments: [Any]) throws -> CustomData? {
+ let functionArguments = try self.checkArgumentCount(arguments, 0...1)
+
+ guard functionArguments.count == 1 else {
+ return nil
+ }
+
+ if let customDataDictionary = functionArguments[0] as? [AnyHashable: Any] {
+ return try self.convertCustomData(customDataDictionary)
+ } else if let jsonString = functionArguments[0] as? String {
+ guard let data = jsonString.data(using: .utf8) else {
+ throw PluginError.invalidJSONData
+ }
+
+ return try JSONDecoder().decode(CustomData.self, from: data)
+ } else {
+ throw PluginError.invalidJSONData
+ }
+ }
+
+ static func convertCustomData(_ customData: [AnyHashable: Any]?) throws -> CustomData? {
+ var result = CustomData()
+
+ if let customData = customData {
+ for (key, value) in customData {
+ guard let key = key as? String else {
+ throw PluginError.invalidCustomDataKeyType
+ }
+
+ result[key] = try self.convertCustomDataValue(value)
+ }
+ }
+
+ return result.keys.count > 0 ? result : nil
+ }
+
+ static func convertCustomDataValue(_ value: Any) throws -> CustomDataCompatible {
+ switch value {
+ case let bool as Bool:
+ return bool
+
+ case let int as Int:
+ return int
+
+ case let double as Double:
+ return double
+
+ case let string as String:
+ return string
+
+ default:
+ throw PluginError.invalidCustomDataValueType
+ }
+ }
+
+ enum PluginError: Swift.Error, LocalizedError {
+ case missingVariablesInInfoDictionary
+ case invalidCustomDataKeyType
+ case invalidCustomDataValueType
+ case invalidPropertyKeyType
+ case invalidPropertyValueType
+ case unrecognizedPropertyKey(String)
+ case unrecognizedCommand(String)
+ case invalidCommandArgument(Any?)
+ case incorrectArgumentCount(function: String, expecting: ClosedRange, received: Int)
+ case invalidArgumentType(atIndex: Int, expecting: String)
+ case unimplementedCommand(String)
+ case invalidJSONData
+ case unrecognizedLogLevel(String)
+
+ var errorDescription: String? {
+ switch self {
+ case .missingVariablesInInfoDictionary:
+ return "One or more of the variables expected in Info.plist was missing (ApptentiveKey, ApptentiveSignature, and/or ApptentivePluginVersion)."
+
+ case .invalidCustomDataKeyType:
+ return "Found a non-string type when expecting a custom data key."
+
+ case .invalidCustomDataValueType:
+ return "Found an incompatible custom data value (allowed types are strings, booleans, and numbers)."
+
+ case .invalidPropertyKeyType:
+ return "Found a non-string type when expecting a property name."
+
+ case .invalidPropertyValueType:
+ return "Found a non-string type when expecting a property value."
+
+ case .unrecognizedPropertyKey(let key):
+ return "Unrecognized property name: \(key). Allowed keys are personName and personEmailAddress."
+
+ case .unrecognizedCommand(let command):
+ return "Received an unrecognized command: \(command)."
+
+ case .invalidCommandArgument(let argument):
+ return "Received an invalid command argument: \(String(describing: argument))."
+
+ case .incorrectArgumentCount(function: let function, expecting: let expecting, received: let received):
+ return "The number of arguments to the command \(String(describing: function)) was \(received) (expected \(expecting))."
+
+ case .invalidArgumentType(atIndex: let index, expecting: let expecting):
+ return "The type of the argument at \(index) was expected to be \(expecting)."
+
+ case .unimplementedCommand(let command):
+ return "The command \(command) is not implemented in this release."
+
+ case .invalidJSONData:
+ return "The string passed for the custom data argument is not valid JSON."
+
+ case .unrecognizedLogLevel(let logLevel):
+ return "The log level (\"\(logLevel)\") is not a valid log level (valid values are \"verbose\", \"debug\", \"info\", \"warn\", \"error\", and \"critical\")."
+ }
+ }
+ }
+}
diff --git a/src/ios/ApptentiveKit.xcframework/Info.plist b/src/ios/ApptentiveKit.xcframework/Info.plist
deleted file mode 100644
index b9bbf83..0000000
--- a/src/ios/ApptentiveKit.xcframework/Info.plist
+++ /dev/null
@@ -1,40 +0,0 @@
-
-
-
-
- AvailableLibraries
-
-
- LibraryIdentifier
- ios-arm64_x86_64-simulator
- LibraryPath
- ApptentiveKit.framework
- SupportedArchitectures
-
- arm64
- x86_64
-
- SupportedPlatform
- ios
- SupportedPlatformVariant
- simulator
-
-
- LibraryIdentifier
- ios-arm64
- LibraryPath
- ApptentiveKit.framework
- SupportedArchitectures
-
- arm64
-
- SupportedPlatform
- ios
-
-
- CFBundlePackageType
- XFWK
- XCFrameworkFormatVersion
- 1.0
-
-
diff --git a/src/ios/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/ApptentiveKit b/src/ios/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/ApptentiveKit
deleted file mode 100755
index c904e3f..0000000
Binary files a/src/ios/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/ApptentiveKit and /dev/null differ
diff --git a/src/ios/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/Assets.car b/src/ios/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/Assets.car
deleted file mode 100644
index 315540e..0000000
Binary files a/src/ios/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/Assets.car and /dev/null differ
diff --git a/src/ios/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/Distribution.plist b/src/ios/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/Distribution.plist
deleted file mode 100644
index d7fab66..0000000
Binary files a/src/ios/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/Distribution.plist and /dev/null differ
diff --git a/src/ios/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/Headers/ApptentiveKit-Swift.h b/src/ios/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/Headers/ApptentiveKit-Swift.h
deleted file mode 100644
index 7691e61..0000000
--- a/src/ios/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/Headers/ApptentiveKit-Swift.h
+++ /dev/null
@@ -1,1029 +0,0 @@
-#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 APPTENTIVEKIT_SWIFT_H
-#define APPTENTIVEKIT_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 CoreFoundation;
-@import Foundation;
-@import ObjectiveC;
-@import UIKit;
-@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="ApptentiveKit",generated_declaration))), apply_to=any(function,enum,objc_interface,objc_category,objc_protocol))
-# pragma pop_macro("any")
-#endif
-
-#if defined(__OBJC__)
-@class NSString;
-@class UIImage;
-@class NSData;
-
-/// The main interface to the Apptentive SDK.
-SWIFT_CLASS("_TtC13ApptentiveKit10Apptentive")
-@interface Apptentive : NSObject
-/// The shared instance of the Apptentive SDK.
-/// This object is created lazily upon access.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, strong) Apptentive * _Nonnull shared;)
-+ (Apptentive * _Nonnull)shared SWIFT_WARN_UNUSED_RESULT;
-/// The name of the person using the app, if available.
-@property (nonatomic, copy) NSString * _Nullable personName;
-/// The email address of the person using the app, if available.
-@property (nonatomic, copy) NSString * _Nullable personEmailAddress;
-/// The string used by the mParticle integration to identify the current user.
-@property (nonatomic, copy) NSString * _Nullable mParticleID;
-/// The number of unread messages in message center.
-@property (nonatomic) NSInteger unreadMessageCount;
-/// The name of the distribution method for this SDK instance (not for app use).
-/// This property is used to track the relative popularity of various methods of
-/// integrating this SDK, for example “React Native” or “CocoaPods”.
-/// This property is not intended to be set by apps using the SDK, but
-/// should be set by projects that re-package the SDK for distribution
-/// as part of e.g. a cross-platform app framework.
-@property (nonatomic, copy) NSString * _Nullable distributionName;
-/// The version of the distribution for this SDK instance (not for app use).
-/// This property is used to track the version of any projects
-/// that re-package the SDK as part of e.g. a cross-platform app-
-/// development framework.
-/// This property is not intended to be set by apps using the SDK.
-@property (nonatomic, copy) NSString * _Nullable distributionVersion;
-/// Sends the specified text as a hidden message to the app’s dashboard.
-/// \param text The text to send in the body of the message.
-///
-- (void)sendAttachmentText:(NSString * _Nonnull)text;
-/// Sends the specified image (encoded as a JPEG at 95% quality) attached to a hidden message to the app’s dashboard.
-/// \param image The image to encode and send.
-///
-- (void)sendAttachmentImage:(UIImage * _Nonnull)image;
-/// Sends the specified data attached to a hidden message to the app’s dashboard.
-/// \param fileData The contents of the file.
-///
-/// \param mediaType The media type for the file.
-///
-- (void)sendAttachmentFile:(NSData * _Nonnull)fileData withMimeType:(NSString * _Nonnull)mediaType;
-- (nonnull instancetype)init SWIFT_UNAVAILABLE;
-+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable");
-@end
-
-
-
-@class UNNotificationResponse;
-@class UNNotification;
-@class UNUserNotificationCenter;
-
-@interface Apptentive (SWIFT_EXTENSION(ApptentiveKit))
-/// Sets the remote notification device token to the specified value.
-/// \param tokenData The remote notification device token passed into application(_:didRegisterForRemoteNotificationsWithDeviceToken:)
.
-///
-- (void)setRemoteNotificationDeviceToken:(NSData * _Nonnull)tokenData;
-- (void)setRemoteNotifcationDeviceToken:(NSData * _Nonnull)tokenData SWIFT_DEPRECATED_MSG("Use the (correctly-spelled) 'setRemoteNotificationDeviceToken(_:)' method instead.");
-/// Should be called in response to the application delegate receiving a remote notification.
-/// note:
-/// If the return value is false
, the caller is responsible for calling the fetch completion handler.
-/// \param userInfo The userInfo
parameter passed to application(_:didReceiveRemoteNotification:)
.
-///
-/// \param completionHandler The fetchCompletionHandler
parameter passed to application(_:didReceiveRemoteNotification:)
.
-///
-///
-/// returns:
-/// true
if the notification was handled by the Apptentive SDK, false
if not.
-- (BOOL)didReceiveRemoteNotification:(NSDictionary * _Nonnull)userInfo fetchCompletionHandler:(void (^ _Nonnull)(UIBackgroundFetchResult))completionHandler SWIFT_WARN_UNUSED_RESULT;
-/// Called when a user responds to a user notification.
-/// Apps may set their Apptentive
instance as the delegate of the current UNUserNotificationCenter
.
-/// If another object assumes this role, it should call this method in userNotificationCenter(_:didReceive:withCompletionHandler:)
.
-/// note:
-/// If this method returns false
, the caller is responsible for calling the completion handler.
-/// \param response The response
parameter passed to userNotificationCenter(_:didReceive:withCompletionHandler:)
.
-///
-/// \param completionHandler The completionHandler
parameter passed to userNotificationCenter(_:didReceive:withCompletionHandler:)
.
-///
-///
-/// returns:
-/// true
if the notification was handled by the Apptentive SDK, false
if not.
-- (BOOL)didReceveUserNotificationResponse:(UNNotificationResponse * _Nonnull)response withCompletionHandler:(void (^ _Nonnull)(void))completionHandler SWIFT_WARN_UNUSED_RESULT;
-/// Called when a user notification will be displayed.
-/// Apps may set their Apptentive
instance as the delegate of the current UNUserNotificationCenter
.
-/// If another object assumes this role, it should call this method in userNotificationCenter(_:willPresent:notification:completionHandler:)
.
-/// note:
-/// If this method returns false
, the caller is responsible for calling the completion handler.
-/// \param notification The response
parameter passed to userNotificationCenter(_:willPresent:notification:withCompletionHandler:)
.
-///
-/// \param completionHandler The completionHandler
parameter passed to userNotificationCenter(_:willPresent:notification:withCompletionHandler:)
.
-///
-///
-/// returns:
-/// true
if the notification was handled by the Apptentive SDK, false
if not.
-- (BOOL)willPresent:(UNNotification * _Nonnull)notification withCompletionHandler:(void (^ _Nonnull)(UNNotificationPresentationOptions))completionHandler SWIFT_WARN_UNUSED_RESULT;
-/// Passes the arguments received by the delegate method to the appropriate Apptentive method.
-/// \param center The user notification center.
-///
-/// \param notification The user notification.
-///
-/// \param completionHandler The completion handler to call.
-///
-- (void)userNotificationCenter:(UNUserNotificationCenter * _Nonnull)center willPresentNotification:(UNNotification * _Nonnull)notification withCompletionHandler:(void (^ _Nonnull)(UNNotificationPresentationOptions))completionHandler;
-/// Passes the arguments received by the delegate method to the appropriate Apptentive method.
-/// \param center The user notification center.
-///
-/// \param response The user notification response.
-///
-/// \param completionHandler The completion handler to call.
-///
-- (void)userNotificationCenter:(UNUserNotificationCenter * _Nonnull)center didReceiveNotificationResponse:(UNNotificationResponse * _Nonnull)response withCompletionHandler:(void (^ _Nonnull)(void))completionHandler;
-@end
-
-
-@class ApptentiveConfiguration;
-@class TermsAndConditions;
-@class UIViewController;
-@class NSDate;
-@class NSNumber;
-@class UIView;
-enum ApptentivePushProvider : NSInteger;
-@class NSUUID;
-enum ApptentiveAuthenticationFailureReason : NSInteger;
-enum ApptentiveLogLevel : NSUInteger;
-
-@interface Apptentive (SWIFT_EXTENSION(ApptentiveKit))
-+ (void)registerWithConfiguration:(ApptentiveConfiguration * _Nonnull)configuration SWIFT_DEPRECATED_MSG("Use the 'register(with:completion:)' method on the 'shared' instance instead.");
-- (void)registerWithConfiguration:(ApptentiveConfiguration * _Nonnull)configuration completion:(void (^ _Nullable)(BOOL))completion;
-+ (Apptentive * _Nonnull)sharedConnection SWIFT_WARN_UNUSED_RESULT SWIFT_DEPRECATED_MSG("Use the 'shared' static property instead.");
-@property (nonatomic, copy) NSString * _Nullable appID SWIFT_DEPRECATED_MSG("This property is ignored. SKStoreReviewController will be used for all ratings.");
-@property (nonatomic) BOOL showInfoButton SWIFT_DEPRECATED_MSG("This property is ignored. The info button no longer exists.");
-@property (nonatomic, strong) TermsAndConditions * _Nullable surveyTermsAndConditions SWIFT_DEPRECATED_MSG("This feature is not implemented.");
-@property (nonatomic, readonly, copy) NSString * _Nonnull apptentiveKey SWIFT_DEPRECATED_MSG("This property is not available for reading.");
-@property (nonatomic, readonly, copy) NSString * _Nonnull apptentiveSignature SWIFT_DEPRECATED_MSG("This property is not available for reading.");
-- (void)engage:(NSString * _Nonnull)event fromViewController:(UIViewController * _Nullable)viewController;
-- (void)engage:(NSString * _Nonnull)event fromViewController:(UIViewController * _Nullable)viewController completion:(void (^ _Nullable)(BOOL))completion;
-- (void)engage:(NSString * _Nonnull)event withCustomData:(NSDictionary * _Nullable)customData fromViewController:(UIViewController * _Nullable)viewController;
-- (void)engage:(NSString * _Nonnull)event withCustomData:(NSDictionary * _Nullable)customData fromViewController:(UIViewController * _Nullable)viewController completion:(void (^ _Nullable)(BOOL))completion;
-- (void)engage:(NSString * _Nonnull)event withCustomData:(NSDictionary * _Nullable)customData withExtendedData:(NSArray * _Nullable)extendedData fromViewController:(UIViewController * _Nullable)viewController SWIFT_DEPRECATED_MSG("Event extended data are no longer supported. Event will be engaged without extended data.");
-- (void)engage:(NSString * _Nonnull)event withCustomData:(NSDictionary * _Nullable)customData withExtendedData:(NSArray * _Nullable)extendedData fromViewController:(UIViewController * _Nullable)viewController completion:(void (^ _Nullable)(BOOL))completion SWIFT_DEPRECATED_MSG("Event extended data are no longer supported. Event will be engaged without extended data.");
-- (void)queryCanShowInteractionForEvent:(NSString * _Nonnull)event completion:(void (^ _Nonnull)(BOOL))completion;
-+ (NSDictionary * _Nonnull)extendedDataDate:(NSDate * _Nonnull)date SWIFT_WARN_UNUSED_RESULT SWIFT_DEPRECATED_MSG("Extended event data are no longer supported.");
-+ (NSDictionary * _Nonnull)extendedDataLocationForLatitude:(double)latitude longitude:(double)longitude SWIFT_WARN_UNUSED_RESULT SWIFT_DEPRECATED_MSG("Extended event data are no longer supported.");
-+ (NSDictionary * _Nonnull)extendedDataCommerceWithTransactionID:(NSString * _Nullable)transactionID affiliation:(NSString * _Nullable)affiliation revenue:(NSNumber * _Nullable)revenue shipping:(NSNumber * _Nullable)shipping tax:(NSNumber * _Nullable)tax currency:(NSString * _Nullable)currency commerceItems:(NSArray * _Nullable)commerceItems SWIFT_WARN_UNUSED_RESULT SWIFT_DEPRECATED_MSG("Extended event data are no longer supported.");
-+ (NSDictionary * _Nonnull)extendedDataCommerceItemWithItemID:(NSString * _Nullable)itemID name:(NSString * _Nullable)name category:(NSString * _Nullable)category price:(NSNumber * _Nullable)price quantity:(NSNumber * _Nullable)quantity currency:(NSString * _Nullable)currency SWIFT_WARN_UNUSED_RESULT SWIFT_DEPRECATED_MSG("Extended event data are no longer supported.");
-- (void)queryCanShowMessageCenterWithCompletion:(void (^ _Nonnull)(BOOL))completion SWIFT_DEPRECATED_MSG("This feature is not implemented and will always result in false.");
-- (void)presentMessageCenterFromViewController:(UIViewController * _Nullable)viewController;
-- (void)presentMessageCenterFromViewController:(UIViewController * _Nullable)viewController completion:(void (^ _Nullable)(BOOL))completion;
-- (void)presentMessageCenterFromViewController:(UIViewController * _Nullable)viewController withCustomData:(NSDictionary * _Nullable)customData;
-- (void)presentMessageCenterFromViewController:(UIViewController * _Nullable)viewController withCustomData:(NSDictionary * _Nullable)customData completion:(void (^ _Nullable)(BOOL))completion;
-- (void)dismissMessageCenterWithAnimated:(BOOL)animated completion:(void (^ _Nullable)(void))completion SWIFT_DEPRECATED_MSG("This feature is not implemented and this method will always result in false.");
-- (UIView * _Nonnull)unreadMessageCountAccessoryViewWithApptentiveHeart:(BOOL)apptentiveHeart SWIFT_WARN_UNUSED_RESULT SWIFT_DEPRECATED_MSG("This feature is not implemented and this property will return an empty view.");
-- (void)openAppStore SWIFT_DEPRECATED_MSG("This method is no longer implemented and will trigger an assertion failure.");
-- (void)setPushProvider:(enum ApptentivePushProvider)pushProvider deviceToken:(NSData * _Nonnull)deviceToken SWIFT_DEPRECATED_MSG("Use the 'setRemoteNotificationToken()' method instead.");
-- (BOOL)didReceveUserNotificationResponse:(UNNotificationResponse * _Nonnull)response from:(UIViewController * _Nullable)_ withCompletionHandler:(void (^ _Nonnull)(void))completionHandler SWIFT_WARN_UNUSED_RESULT SWIFT_DEPRECATED_MSG("This method is deprecated in favor of didReceveUserNotificationResponse(_:from:withCompletionHandler:).");
-@property (nonatomic, copy) NSUUID * _Nullable advertisingIdentifier SWIFT_DEPRECATED_MSG("Advertising identifier collection is not implemented.");
-@property (nonatomic, copy) NSString * _Nullable mParticleId SWIFT_DEPRECATED_MSG("mParticleId has been renamed to mParticleID.");
-- (void)removeCustomPersonDataWithKey:(NSString * _Nonnull)key;
-- (void)removeCustomDeviceDataWithKey:(NSString * _Nonnull)key;
-- (void)addCustomDeviceDataString:(NSString * _Nonnull)string withKey:(NSString * _Nonnull)key;
-- (void)addCustomDeviceDataNumber:(NSNumber * _Nonnull)number withKey:(NSString * _Nonnull)key;
-- (void)addCustomDeviceDataBool:(BOOL)boolValue withKey:(NSString * _Nonnull)key;
-- (void)addCustomPersonDataString:(NSString * _Nonnull)string withKey:(NSString * _Nonnull)key;
-- (void)addCustomPersonDataNumber:(NSNumber * _Nonnull)number withKey:(NSString * _Nonnull)key;
-- (void)addCustomPersonDataBool:(BOOL)boolValue withKey:(NSString * _Nonnull)key;
-@property (nonatomic) id _Nullable styleSheet SWIFT_DEPRECATED_MSG("Set style overrides defined in UIKit+Apptentive.swift extensions.");
-- (void)checkSDKConfiguration SWIFT_DEPRECATED_MSG("This method is not currently implemented and will trigger an assertion failure.");
-- (void)logInWithToken:(NSString * _Nonnull)token completion:(void (^ _Nonnull)(BOOL, NSError * _Nonnull))completion SWIFT_DEPRECATED_MSG("This method is not currently implemented and will trigger an assertion failure.");
-- (void)logOut SWIFT_DEPRECATED_MSG("This method is not currently implemented and will trigger an assertion failure.");
-@property (nonatomic, copy) void (^ _Nullable authenticationFailureCallback)(enum ApptentiveAuthenticationFailureReason, NSString * _Nonnull) SWIFT_DEPRECATED_MSG("Multiple users on the same device is not currently supported.");
-@property (nonatomic, copy) BOOL (^ _Nullable preInteractionCallback)(NSString * _Nonnull, NSDictionary * _Nullable) SWIFT_DEPRECATED_MSG("This feature is no longer supported.");
-- (void)updateToken:(NSString * _Nonnull)token completion:(void (^ _Nullable)(BOOL))completion SWIFT_DEPRECATED_MSG("This method is not currently implemented and will trigger an assertion failure.");
-@property (nonatomic) enum ApptentiveLogLevel logLevel;
-@end
-
-typedef SWIFT_ENUM(NSInteger, ApptentiveAuthenticationFailureReason, open) {
-/// An unknown authentication failure.
- ApptentiveAuthenticationFailureReasonUnknown = 0,
-/// An invalid JWT algorithm was used.
- ApptentiveAuthenticationFailureReasonInvalidAlgorithm = 1,
-/// A malformed JWT was encountered.
- ApptentiveAuthenticationFailureReasonMalformedToken = 2,
-/// An invalid JWT was encountered.
- ApptentiveAuthenticationFailureReasonInvalidToken = 3,
-/// A required subclaim was missing.
- ApptentiveAuthenticationFailureReasonMissingSubClaim = 4,
-/// A subclaim didn’t match the logged-in session.
- ApptentiveAuthenticationFailureReasonMismatchedSubClaim = 5,
-/// An invalid subclaim was encountered.
- ApptentiveAuthenticationFailureReasonInvalidSubClaim = 6,
-/// The JWT expired.
- ApptentiveAuthenticationFailureReasonExpiredToken = 7,
-/// The JWT was revoked.
- ApptentiveAuthenticationFailureReasonRevokedToken = 8,
-/// The Apptentive App Key was missing.
- ApptentiveAuthenticationFailureReasonMissingAppKey = 9,
-/// The Apptentive App Signature was missing
- ApptentiveAuthenticationFailureReasonMissingAppSignature = 10,
-/// In invalid combination of an Apptentive App Key and an Apptentive App Signature was found.
- ApptentiveAuthenticationFailureReasonInvalidKeySignaturePair = 11,
-};
-
-@class NSURL;
-
-SWIFT_CLASS("_TtC13ApptentiveKit23ApptentiveConfiguration")
-@interface ApptentiveConfiguration : NSObject
-/// The Apptentive App Key, obtained from your Apptentive dashboard.
-@property (nonatomic, readonly, copy) NSString * _Nonnull apptentiveKey;
-/// The Apptentive App Signature, obtained from your Apptentive dashboard.
-@property (nonatomic, readonly, copy) NSString * _Nonnull apptentiveSignature;
-/// The granularity of log messages to show.
-@property (nonatomic) enum ApptentiveLogLevel logLevel;
-/// If set, redacts potentially-sensitive information such as user data and credentials from logging.
-@property (nonatomic) BOOL shouldSanitizeLogMessages;
-/// The server URL to use for API calls. Should only be used for testing.
-@property (nonatomic, copy) NSURL * _Nullable baseURL SWIFT_DEPRECATED_MSG("This property is ignored. Use the designated initializer for 'Apptentive' to set this.");
-/// The name of the distribution that includes the Apptentive SDK. For example “Cordova”.
-@property (nonatomic, copy) NSString * _Nullable distributionName;
-/// The version of the distribution that includes the Apptentive SDK.
-@property (nonatomic, copy) NSString * _Nullable distributionVersion;
-/// The iTunes store app ID of the app (used for Apptentive rating prompt).
-@property (nonatomic, copy) NSString * _Nullable appID SWIFT_DEPRECATED_MSG("This property is ignored. An 'SKStoreReviewController' will be used for all ratings.");
-/// If set, shows a button in Surveys and Message Center that presents information about Apptentive including a link to our privacy policy.
-@property (nonatomic) BOOL showInfoButton SWIFT_DEPRECATED_MSG("This property is ignored. The info button no longer exists.");
-/// If set, will show a link to terms and conditions in the bottom bar in Surveys.
-@property (nonatomic, strong) TermsAndConditions * _Nullable surveyTermsAndConditions SWIFT_DEPRECATED_MSG("This property is ignored. Configure survey terms and conditions in the Apptentive Dashboard.");
-- (nullable instancetype)initWithApptentiveKey:(NSString * _Nonnull)apptentiveKey apptentiveSignature:(NSString * _Nonnull)apptentiveSignature OBJC_DESIGNATED_INITIALIZER;
-/// Returns an instance of the ApptentiveConfiguration
class initialized with the specified parameters.
-/// \param key The Apptentive App Key, obtained from your Apptentive dashboard.
-///
-/// \param signature The Apptentive App Signature, obtained from your Apptentive dashboard.
-///
-///
-/// returns:
-/// A configuration object initalized with the key and signature.
-+ (ApptentiveConfiguration * _Nonnull)configurationWithApptentiveKey:(NSString * _Nonnull)key apptentiveSignature:(NSString * _Nonnull)signature SWIFT_WARN_UNUSED_RESULT;
-- (nonnull instancetype)init SWIFT_UNAVAILABLE;
-+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable");
-@end
-
-typedef SWIFT_ENUM(NSUInteger, ApptentiveLogLevel, open) {
-/// Undefined.
- ApptentiveLogLevelUndefined = 0,
-/// Critical failure log messages.
- ApptentiveLogLevelCrit = 1,
-/// Error log messages.
- ApptentiveLogLevelError = 2,
-/// Warning log messages.
- ApptentiveLogLevelWarn = 3,
-/// Informational log messages.
- ApptentiveLogLevelInfo = 4,
-/// Log messages that are potentially useful for debugging.
- ApptentiveLogLevelDebug = 5,
-/// All possible log messages enabled.
- ApptentiveLogLevelVerbose = 6,
-};
-
-@class NSBundle;
-@class NSCoder;
-
-/// UINavigationController
subclass intended primarily to facilitate scoping UIAppearance
rules to Apptentive UI.
-SWIFT_CLASS("_TtC13ApptentiveKit30ApptentiveNavigationController")
-@interface ApptentiveNavigationController : UINavigationController
-@property (nonatomic, readonly) UIStatusBarStyle preferredStatusBarStyle;
-/// Increases the header height for surveys.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class) BOOL prefersLargeHeader;)
-+ (BOOL)prefersLargeHeader SWIFT_WARN_UNUSED_RESULT;
-+ (void)setPrefersLargeHeader:(BOOL)value;
-- (nonnull instancetype)initWithNavigationBarClass:(Class _Nullable)navigationBarClass toolbarClass:(Class _Nullable)toolbarClass OBJC_DESIGNATED_INITIALIZER SWIFT_AVAILABILITY(ios,introduced=5.0);
-- (nonnull instancetype)initWithRootViewController:(UIViewController * _Nonnull)rootViewController OBJC_DESIGNATED_INITIALIZER;
-- (nonnull instancetype)initWithNibName:(NSString * _Nullable)nibNameOrNil bundle:(NSBundle * _Nullable)nibBundleOrNil OBJC_DESIGNATED_INITIALIZER;
-- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)aDecoder OBJC_DESIGNATED_INITIALIZER;
-@end
-
-typedef SWIFT_ENUM(NSInteger, ApptentivePushProvider, open) {
-/// Specifies the Apptentive push provider.
- ApptentivePushProviderApptentive = 0,
-/// Specifies the Urban Airship push provider.
- ApptentivePushProviderUrbanAirship = 1,
-/// Specifies the Amazon Simple Notification Service push provider.
- ApptentivePushProviderAmazonSNS = 2,
-/// Specifies the Parse push provider.
- ApptentivePushProviderParse = 3,
-};
-
-
-@class UIFont;
-@class UIColor;
-
-/// The buttons used in TextModal (“Note”) and EnjoymentDialog (“Love Dialog”) interactions.
-SWIFT_CLASS("_TtC13ApptentiveKit12DialogButton")
-@interface DialogButton : UIButton
-/// The font to use for the button title.
-@property (nonatomic, strong) UIFont * _Nonnull titleFont;
-/// The radius of the button corners.
-/// Setting the radius to -1 will set the radius to half of the hieght of the button.
-@property (nonatomic) CGFloat cornerRadius;
-/// The width of the border of the button.
-@property (nonatomic) CGFloat borderWidth;
-/// The color of the border of the button.
-@property (nonatomic, strong) UIColor * _Nonnull borderColor;
-- (nonnull instancetype)initWithFrame:(CGRect)frame SWIFT_UNAVAILABLE;
-- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)coder SWIFT_UNAVAILABLE;
-@property (nonatomic, readonly) CGSize intrinsicContentSize;
-- (void)layoutSubviews;
-- (void)tintColorDidChange;
-- (void)didMoveToWindow;
-@end
-
-
-/// Displays the contents of the dialog used for TextModal (“Note”) and EnjoymentDialog (“Love Dialog”) interactions.
-SWIFT_CLASS("_TtC13ApptentiveKit10DialogView")
-@interface DialogView : UIView
-/// The foreground color of the title text.
-@property (nonatomic, strong) UIColor * _Nonnull titleTextColor;
-/// The foreground color of the message text in TextModal (“Note”) interactions.
-@property (nonatomic, strong) UIColor * _Nonnull messageTextColor;
-/// The font used for the title text.
-@property (nonatomic, strong) UIFont * _Nonnull titleFont;
-/// The font used for the message text in TextModal (“Note”) interactions.
-@property (nonatomic, strong) UIFont * _Nonnull messageFont;
-/// An image placed along the top edge of the dialog.
-/// The image will be scaled to the width of the dialog, and the height will be determined by the aspect ratio of the image.
-@property (nonatomic, strong) UIImage * _Nullable headerImage;
-/// The radius of the corners of the dialog.
-@property (nonatomic) CGFloat cornerRadius;
-/// The spacing between adjacent buttons.
-@property (nonatomic) CGFloat buttonSpacing;
-/// The distance by which the group of buttons is inset from the edges of the dialog.
-@property (nonatomic) UIEdgeInsets buttonInset;
-/// Whether the separators between buttons are hidden.
-@property (nonatomic) BOOL separatorsAreHidden;
-/// The color of the separators.
-@property (nonatomic, strong) UIColor * _Nonnull separatorColor;
-- (nonnull instancetype)initWithFrame:(CGRect)frame SWIFT_UNAVAILABLE;
-- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)coder SWIFT_UNAVAILABLE;
-- (void)didMoveToWindow;
-- (void)layoutSubviews;
-@end
-
-
-/// A class used to display TextModal (“Note”) and EnjoymentDialog (“Love Dialog”) interactions.
-SWIFT_CLASS("_TtC13ApptentiveKit20DialogViewController")
-@interface DialogViewController : UIViewController
-- (void)viewDidLoad;
-- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)coder SWIFT_UNAVAILABLE;
-- (void)viewDidAppear:(BOOL)animated;
-- (nonnull instancetype)initWithNibName:(NSString * _Nullable)nibNameOrNil bundle:(NSBundle * _Nullable)nibBundleOrNil SWIFT_UNAVAILABLE;
-@end
-
-
-/// A button used to dismiss a TextModal (“Note”) interaction.
-SWIFT_CLASS("_TtC13ApptentiveKit13DismissButton")
-@interface DismissButton : DialogButton
-@end
-
-
-/// A button used to launch a subsequent interaction from a TextModal (“Note”) interaction.
-SWIFT_CLASS("_TtC13ApptentiveKit17InteractionButton")
-@interface InteractionButton : DialogButton
-@end
-
-
-/// A button used to indicate negative sentiment in the EnjoymentDialog (“Love Dialog”) interaction.
-SWIFT_CLASS("_TtC13ApptentiveKit8NoButton")
-@interface NoButton : DialogButton
-@end
-
-
-SWIFT_CLASS("_TtC13ApptentiveKit18TermsAndConditions") SWIFT_DEPRECATED_MSG("This class is provided for compatibility but this feature is not implemented.")
-@interface TermsAndConditions : NSObject
-- (nonnull instancetype)init SWIFT_UNAVAILABLE;
-+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable");
-@end
-
-
-@interface UIBarButtonItem (SWIFT_EXTENSION(ApptentiveKit))
-/// The bar button item to use for closing Apptentive UI.
-/// Defaults to the system cancel button on iOS 12 and the system close button on iOS 13 and later.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIBarButtonItem * _Nonnull apptentiveClose;)
-+ (UIBarButtonItem * _Nonnull)apptentiveClose SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveClose:(UIBarButtonItem * _Nonnull)value;
-/// The bar button item to use for editing the profile in message center.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIBarButtonItem * _Nonnull apptentiveProfileEdit;)
-+ (UIBarButtonItem * _Nonnull)apptentiveProfileEdit SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveProfileEdit:(UIBarButtonItem * _Nonnull)value;
-@end
-
-
-@interface UIButton (SWIFT_EXTENSION(ApptentiveKit))
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly) CGFloat apptentivePillRadius;)
-+ (CGFloat)apptentivePillRadius SWIFT_WARN_UNUSED_RESULT;
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class) CGFloat apptentiveCornerRadius;)
-+ (CGFloat)apptentiveCornerRadius SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveCornerRadius:(CGFloat)newValue;
-@end
-
-
-
-@interface UIColor (SWIFT_EXTENSION(ApptentiveKit))
-/// The color to use for the background in text inputs for message center.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIColor * _Nonnull apptentiveMessageCenterTextInputBackground;)
-+ (UIColor * _Nonnull)apptentiveMessageCenterTextInputBackground SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveMessageCenterTextInputBackground:(UIColor * _Nonnull)value;
-/// The placeholder color to use for text inputs for message center.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIColor * _Nonnull apptentiveMessageCenterTextInputPlaceholder;)
-+ (UIColor * _Nonnull)apptentiveMessageCenterTextInputPlaceholder SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveMessageCenterTextInputPlaceholder:(UIColor * _Nonnull)value;
-/// The placeholder color to use for text inputs for message center.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIColor * _Nonnull apptentiveMessageTextViewPlaceholder SWIFT_DEPRECATED_MSG("This property has been renamed to 'apptentiveMessageTextInputPlaceholder'.");)
-+ (UIColor * _Nonnull)apptentiveMessageTextViewPlaceholder SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveMessageTextViewPlaceholder:(UIColor * _Nonnull)newValue;
-/// The text color to use for all text inputs in message center.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIColor * _Nonnull apptentiveMessageCenterTextInput;)
-+ (UIColor * _Nonnull)apptentiveMessageCenterTextInput SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveMessageCenterTextInput:(UIColor * _Nonnull)value;
-/// The tint color for text inputs for surveys.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIColor * _Nonnull apptentivetextInputTint;)
-+ (UIColor * _Nonnull)apptentivetextInputTint SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentivetextInputTint:(UIColor * _Nonnull)value;
-/// The border color to use for the message text view.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIColor * _Nonnull apptentiveMessageCenterTextInputBorder;)
-+ (UIColor * _Nonnull)apptentiveMessageCenterTextInputBorder SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveMessageCenterTextInputBorder:(UIColor * _Nonnull)value;
-/// The border color to use for the message text view.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIColor * _Nonnull apptentiveMessageCenterTextViewBorder SWIFT_DEPRECATED_MSG("This property has been renamed to 'apptentiveMessageCenterTextInputBorder'.");)
-+ (UIColor * _Nonnull)apptentiveMessageCenterTextViewBorder SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveMessageCenterTextViewBorder:(UIColor * _Nonnull)newValue;
-/// The color to use for the attachment button for the compose view for message center.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIColor * _Nonnull apptentiveMessageCenterAttachmentButton;)
-+ (UIColor * _Nonnull)apptentiveMessageCenterAttachmentButton SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveMessageCenterAttachmentButton:(UIColor * _Nonnull)value;
-/// The color to use for the text view placeholder for the compose view for message center.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIColor * _Nonnull apptentiveMessageTextInputPlaceholder;)
-+ (UIColor * _Nonnull)apptentiveMessageTextInputPlaceholder SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveMessageTextInputPlaceholder:(UIColor * _Nonnull)value;
-/// The color to use for the status message in message center.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIColor * _Nonnull apptentiveMessageCenterStatus;)
-+ (UIColor * _Nonnull)apptentiveMessageCenterStatus SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveMessageCenterStatus:(UIColor * _Nonnull)value;
-/// The color to use for the greeting body on the greeting header view for message center.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIColor * _Nonnull apptentiveMessageCenterGreetingBody;)
-+ (UIColor * _Nonnull)apptentiveMessageCenterGreetingBody SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveMessageCenterGreetingBody:(UIColor * _Nonnull)value;
-/// The color to use for the greeting title on the greeting header view for message center.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIColor * _Nonnull apptentiveMessageCenterGreetingTitle;)
-+ (UIColor * _Nonnull)apptentiveMessageCenterGreetingTitle SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveMessageCenterGreetingTitle:(UIColor * _Nonnull)value;
-/// The color to use for the message bubble view for inbound messages.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIColor * _Nonnull apptentiveMessageBubbleInbound;)
-+ (UIColor * _Nonnull)apptentiveMessageBubbleInbound SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveMessageBubbleInbound:(UIColor * _Nonnull)value;
-/// The color to use for the message bubble view for outbound messages.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIColor * _Nonnull apptentiveMessageBubbleOutbound;)
-+ (UIColor * _Nonnull)apptentiveMessageBubbleOutbound SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveMessageBubbleOutbound:(UIColor * _Nonnull)value;
-/// The color to use for message labels for the inbound message body.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIColor * _Nonnull apptentiveMessageLabelInbound;)
-+ (UIColor * _Nonnull)apptentiveMessageLabelInbound SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveMessageLabelInbound:(UIColor * _Nonnull)value;
-/// The color to use for message labels for the outbound message body.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIColor * _Nonnull apptentiveMessageLabelOutbound;)
-+ (UIColor * _Nonnull)apptentiveMessageLabelOutbound SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveMessageLabelOutbound:(UIColor * _Nonnull)value;
-/// The color to use for labels in a non-error state.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIColor * _Nonnull apptentiveQuestionLabel;)
-+ (UIColor * _Nonnull)apptentiveQuestionLabel SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveQuestionLabel:(UIColor * _Nonnull)value;
-/// The color to use for instruction labels.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIColor * _Nonnull apptentiveInstructionsLabel;)
-+ (UIColor * _Nonnull)apptentiveInstructionsLabel SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveInstructionsLabel:(UIColor * _Nonnull)value;
-/// The color to use for choice labels.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIColor * _Nonnull apptentiveChoiceLabel;)
-+ (UIColor * _Nonnull)apptentiveChoiceLabel SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveChoiceLabel:(UIColor * _Nonnull)value;
-/// The color to use for UI elements to indicate an error state.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIColor * _Nonnull apptentiveError;)
-+ (UIColor * _Nonnull)apptentiveError SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveError:(UIColor * _Nonnull)value;
-/// The color to use for labels of secondary prominence.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIColor * _Nonnull apptentiveSecondaryLabel;)
-+ (UIColor * _Nonnull)apptentiveSecondaryLabel SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveSecondaryLabel:(UIColor * _Nonnull)value;
-/// The border color to use for the segmented control for range surveys.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIColor * _Nonnull apptentiveRangeControlBorder;)
-+ (UIColor * _Nonnull)apptentiveRangeControlBorder SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveRangeControlBorder:(UIColor * _Nonnull)value;
-/// The color to use for the survey introduction text.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIColor * _Nonnull apptentiveSurveyIntroduction;)
-+ (UIColor * _Nonnull)apptentiveSurveyIntroduction SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveSurveyIntroduction:(UIColor * _Nonnull)value;
-/// The color to use for the borders of text fields and text views.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIColor * _Nonnull apptentiveTextInputBorder;)
-+ (UIColor * _Nonnull)apptentiveTextInputBorder SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveTextInputBorder:(UIColor * _Nonnull)value;
-/// The color to use for text fields and text views.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIColor * _Nonnull apptentiveTextInputBackground;)
-+ (UIColor * _Nonnull)apptentiveTextInputBackground SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveTextInputBackground:(UIColor * _Nonnull)value;
-/// The color to use for text within text fields and text views.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIColor * _Nonnull apptentiveTextInput;)
-+ (UIColor * _Nonnull)apptentiveTextInput SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveTextInput:(UIColor * _Nonnull)value;
-/// The color to use for the placeholder text within text fields and text views.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIColor * _Nonnull apptentiveTextInputPlaceholder;)
-+ (UIColor * _Nonnull)apptentiveTextInputPlaceholder SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveTextInputPlaceholder:(UIColor * _Nonnull)value;
-/// The color used for min and max labels for the range survey.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIColor * _Nonnull apptentiveMinMaxLabel;)
-+ (UIColor * _Nonnull)apptentiveMinMaxLabel SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveMinMaxLabel:(UIColor * _Nonnull)value;
-/// The color used for the background of the entire survey.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIColor * _Nonnull apptentiveGroupedBackground;)
-+ (UIColor * _Nonnull)apptentiveGroupedBackground SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveGroupedBackground:(UIColor * _Nonnull)value;
-/// The color used for the cell where the survey question is located.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIColor * _Nonnull apptentiveSecondaryGroupedBackground;)
-+ (UIColor * _Nonnull)apptentiveSecondaryGroupedBackground SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveSecondaryGroupedBackground:(UIColor * _Nonnull)value;
-/// The color to use for separators in e.g. table views.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIColor * _Nonnull apptentiveSeparator;)
-+ (UIColor * _Nonnull)apptentiveSeparator SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveSeparator:(UIColor * _Nonnull)value;
-/// The color to use for images in a selected state for surveys.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIColor * _Nonnull apptentiveImageSelected;)
-+ (UIColor * _Nonnull)apptentiveImageSelected SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveImageSelected:(UIColor * _Nonnull)value;
-/// The color to use for images in a non-selected state for surveys.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIColor * _Nonnull apptentiveImageNotSelected;)
-+ (UIColor * _Nonnull)apptentiveImageNotSelected SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveImageNotSelected:(UIColor * _Nonnull)value;
-/// The background color to use for the submit button on surveys.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIColor * _Nonnull apptentiveSubmitButton;)
-+ (UIColor * _Nonnull)apptentiveSubmitButton SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveSubmitButton:(UIColor * _Nonnull)value;
-/// The background color to use for the footer which contains the terms and conditions for branched surveys.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIColor * _Nonnull apptentiveBranchedSurveyFooter;)
-+ (UIColor * _Nonnull)apptentiveBranchedSurveyFooter SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveBranchedSurveyFooter:(UIColor * _Nonnull)value;
-/// The color to use for the survey footer label (Thank You text).
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIColor * _Nonnull apptentiveSubmitStatusLabel;)
-+ (UIColor * _Nonnull)apptentiveSubmitStatusLabel SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveSubmitStatusLabel:(UIColor * _Nonnull)value;
-/// The color to use for the terms of service label.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIColor * _Nonnull apptentiveTermsOfServiceLabel;)
-+ (UIColor * _Nonnull)apptentiveTermsOfServiceLabel SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveTermsOfServiceLabel:(UIColor * _Nonnull)value;
-/// The color to use for the submit button text color.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIColor * _Nonnull apptentiveSubmitButtonTitle;)
-+ (UIColor * _Nonnull)apptentiveSubmitButtonTitle SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveSubmitButtonTitle:(UIColor * _Nonnull)value;
-/// The color to use for submit button border.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIColor * _Nonnull apptentiveSubmitButtonBorder;)
-+ (UIColor * _Nonnull)apptentiveSubmitButtonBorder SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveSubmitButtonBorder:(UIColor * _Nonnull)value;
-/// The color to use for the space between questions.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIColor * _Nonnull apptentiveQuestionSeparator;)
-+ (UIColor * _Nonnull)apptentiveQuestionSeparator SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveQuestionSeparator:(UIColor * _Nonnull)value;
-/// The color to use for the background of Message Center.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIColor * _Nonnull apptentiveMessageCenterBackground;)
-+ (UIColor * _Nonnull)apptentiveMessageCenterBackground SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveMessageCenterBackground:(UIColor * _Nonnull)value;
-/// The color to use for the button that deletes the attachment from the draft message.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIColor * _Nonnull apptentiveMessageCenterAttachmentDeleteButton;)
-+ (UIColor * _Nonnull)apptentiveMessageCenterAttachmentDeleteButton SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveMessageCenterAttachmentDeleteButton:(UIColor * _Nonnull)value;
-/// The color to use for the compose box for Message Center.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIColor * _Nonnull apptentiveMessageCenterComposeBoxBackground;)
-+ (UIColor * _Nonnull)apptentiveMessageCenterComposeBoxBackground SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveMessageCenterComposeBoxBackground:(UIColor * _Nonnull)value;
-/// The color to use for the compose box separator.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIColor * _Nonnull apptentiveMessageCenterComposeBoxSeparator;)
-+ (UIColor * _Nonnull)apptentiveMessageCenterComposeBoxSeparator SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveMessageCenterComposeBoxSeparator:(UIColor * _Nonnull)value;
-/// The color to use for text input borders when selected.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIColor * _Nonnull apptentiveTextInputBorderSelected;)
-+ (UIColor * _Nonnull)apptentiveTextInputBorderSelected SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveTextInputBorderSelected:(UIColor * _Nonnull)value;
-/// The text color used for the disclaimer text.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIColor * _Nonnull apptentiveDisclaimerLabel;)
-+ (UIColor * _Nonnull)apptentiveDisclaimerLabel SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveDisclaimerLabel:(UIColor * _Nonnull)value;
-@end
-
-
-@interface UIFont (SWIFT_EXTENSION(ApptentiveKit))
-/// The font to use for placeholder for text inputs in message center.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIFont * _Nonnull apptentiveMessageCenterTextInputPlaceholder;)
-+ (UIFont * _Nonnull)apptentiveMessageCenterTextInputPlaceholder SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveMessageCenterTextInputPlaceholder:(UIFont * _Nonnull)value;
-/// The font to use for text inputs in message menter.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIFont * _Nonnull apptentiveMessageCenterTextInput;)
-+ (UIFont * _Nonnull)apptentiveMessageCenterTextInput SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveMessageCenterTextInput:(UIFont * _Nonnull)value;
-/// The font to use for placeholder text for text inputs in surveys.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIFont * _Nonnull apptentiveTextInputPlaceholder;)
-+ (UIFont * _Nonnull)apptentiveTextInputPlaceholder SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveTextInputPlaceholder:(UIFont * _Nonnull)value;
-/// The font to use for the greeting title for message center.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIFont * _Nonnull apptentiveMessageCenterStatus;)
-+ (UIFont * _Nonnull)apptentiveMessageCenterStatus SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveMessageCenterStatus:(UIFont * _Nonnull)value;
-/// The font to use for the greeting title for message center.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIFont * _Nonnull apptentiveMessageCenterGreetingTitle;)
-+ (UIFont * _Nonnull)apptentiveMessageCenterGreetingTitle SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveMessageCenterGreetingTitle:(UIFont * _Nonnull)value;
-/// The font to use for the greeting body for message center.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIFont * _Nonnull apptentiveMessageCenterGreetingBody;)
-+ (UIFont * _Nonnull)apptentiveMessageCenterGreetingBody SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveMessageCenterGreetingBody:(UIFont * _Nonnull)value;
-/// The font to use for attachment placeholder file extension labels.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIFont * _Nonnull apptentiveMessageCenterAttachmentLabel;)
-+ (UIFont * _Nonnull)apptentiveMessageCenterAttachmentLabel SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveMessageCenterAttachmentLabel:(UIFont * _Nonnull)value;
-/// The font used for all survey question labels.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIFont * _Nonnull apptentiveQuestionLabel;)
-+ (UIFont * _Nonnull)apptentiveQuestionLabel SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveQuestionLabel:(UIFont * _Nonnull)value;
-/// The font used for the terms of service.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIFont * _Nonnull apptentiveTermsOfServiceLabel;)
-+ (UIFont * _Nonnull)apptentiveTermsOfServiceLabel SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveTermsOfServiceLabel:(UIFont * _Nonnull)value;
-/// The font used for all survey answer choice labels.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIFont * _Nonnull apptentiveChoiceLabel;)
-+ (UIFont * _Nonnull)apptentiveChoiceLabel SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveChoiceLabel:(UIFont * _Nonnull)value;
-/// The font used for the message body in message center.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIFont * _Nonnull apptentiveMessageLabel;)
-+ (UIFont * _Nonnull)apptentiveMessageLabel SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveMessageLabel:(UIFont * _Nonnull)value;
-/// The font used for the min and max labels for the range survey.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIFont * _Nonnull apptentiveMinMaxLabel;)
-+ (UIFont * _Nonnull)apptentiveMinMaxLabel SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveMinMaxLabel:(UIFont * _Nonnull)value;
-/// The font used for the sender label in message center.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIFont * _Nonnull apptentiveSenderLabel;)
-+ (UIFont * _Nonnull)apptentiveSenderLabel SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveSenderLabel:(UIFont * _Nonnull)value;
-/// The font used for the message date label in message center.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIFont * _Nonnull apptentiveMessageDateLabel;)
-+ (UIFont * _Nonnull)apptentiveMessageDateLabel SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveMessageDateLabel:(UIFont * _Nonnull)value;
-/// The font used for the instructions label for surveys.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIFont * _Nonnull apptentiveInstructionsLabel;)
-+ (UIFont * _Nonnull)apptentiveInstructionsLabel SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveInstructionsLabel:(UIFont * _Nonnull)value;
-/// The font used for the survey introduction label.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIFont * _Nonnull apptentiveSurveyIntroductionLabel;)
-+ (UIFont * _Nonnull)apptentiveSurveyIntroductionLabel SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveSurveyIntroductionLabel:(UIFont * _Nonnull)value;
-/// The font used for the survey footer label (Thank You text).
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIFont * _Nonnull apptentiveSubmitStatusLabel;)
-+ (UIFont * _Nonnull)apptentiveSubmitStatusLabel SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveSubmitStatusLabel:(UIFont * _Nonnull)value;
-/// The font used for the disclaimer text.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIFont * _Nonnull apptentiveDisclaimerLabel;)
-+ (UIFont * _Nonnull)apptentiveDisclaimerLabel SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveDisclaimerLabel:(UIFont * _Nonnull)value;
-/// The font used for the submit button at the end of surveys.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIFont * _Nonnull apptentiveSubmitButtonTitle;)
-+ (UIFont * _Nonnull)apptentiveSubmitButtonTitle SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveSubmitButtonTitle:(UIFont * _Nonnull)value;
-/// The font used for the multi- and single-line text inputs in surveys.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIFont * _Nonnull apptentiveTextInput;)
-+ (UIFont * _Nonnull)apptentiveTextInput SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveTextInput:(UIFont * _Nonnull)value;
-@end
-
-
-@interface UIImage (SWIFT_EXTENSION(ApptentiveKit))
-/// The image to use for the add attachment button for message center.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIImage * _Nullable apptentiveMessageAttachmentButton;)
-+ (UIImage * _Nullable)apptentiveMessageAttachmentButton SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveMessageAttachmentButton:(UIImage * _Nullable)value;
-/// The image to use for the button that sends messages for message center.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIImage * _Nullable apptentiveMessageSendButton;)
-+ (UIImage * _Nullable)apptentiveMessageSendButton SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveMessageSendButton:(UIImage * _Nullable)value;
-/// The image to use as the chat bubble for outbound messages.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIImage * _Nullable apptentiveSentMessageBubble;)
-+ (UIImage * _Nullable)apptentiveSentMessageBubble SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveSentMessageBubble:(UIImage * _Nullable)value;
-/// The image to use as the chat bubble for inbound messages.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIImage * _Nullable apptentiveReceivedMessageBubble;)
-+ (UIImage * _Nullable)apptentiveReceivedMessageBubble SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveReceivedMessageBubble:(UIImage * _Nullable)value;
-/// The image to use for attachment placeholders in messages and the composer.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIImage * _Nullable apptentiveAttachmentPlaceholder;)
-+ (UIImage * _Nullable)apptentiveAttachmentPlaceholder SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveAttachmentPlaceholder:(UIImage * _Nullable)value;
-/// The image to use for the attachment delete button.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIImage * _Nullable apptentiveAttachmentRemoveButton;)
-+ (UIImage * _Nullable)apptentiveAttachmentRemoveButton SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveAttachmentRemoveButton:(UIImage * _Nullable)value;
-/// The image to use for the top navigation bar for surveys.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIImage * _Nullable apptentiveHeaderLogo;)
-+ (UIImage * _Nullable)apptentiveHeaderLogo SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveHeaderLogo:(UIImage * _Nullable)value;
-/// The image to use next to a radio button question choice.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIImage * _Nullable apptentiveRadioButton;)
-+ (UIImage * _Nullable)apptentiveRadioButton SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveRadioButton:(UIImage * _Nullable)value;
-/// The image to use next to a checkbox question choice.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIImage * _Nullable apptentiveCheckbox;)
-+ (UIImage * _Nullable)apptentiveCheckbox SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveCheckbox:(UIImage * _Nullable)value;
-/// The image to use next to a selected radio button question choice.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIImage * _Nullable apptentiveRadioButtonSelected;)
-+ (UIImage * _Nullable)apptentiveRadioButtonSelected SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveRadioButtonSelected:(UIImage * _Nullable)value;
-/// The image to use next to a selected checkbox question choice.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIImage * _Nullable apptentiveCheckboxSelected;)
-+ (UIImage * _Nullable)apptentiveCheckboxSelected SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveCheckboxSelected:(UIImage * _Nullable)value;
-@end
-
-
-@interface UITableView (SWIFT_EXTENSION(ApptentiveKit))
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class) NSInteger apptentiveStyle;)
-+ (NSInteger)apptentiveStyle SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveStyle:(NSInteger)newValue;
-@end
-
-
-enum ToolbarMode : NSInteger;
-
-@interface UIToolbar (SWIFT_EXTENSION(ApptentiveKit))
-/// Determines when to show a toolbar in Apptentive view controllers.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class) enum ToolbarMode apptentiveMode;)
-+ (enum ToolbarMode)apptentiveMode SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveMode:(enum ToolbarMode)value;
-@end
-
-/// The circumstances under which to show a toolbar.
-typedef SWIFT_ENUM(NSInteger, ToolbarMode, open) {
-/// Always show the toolbar.
- ToolbarModeAlwaysShown = 0,
-/// Show the toolbar only when there will be UI present in it.
- ToolbarModeHiddenWhenEmpty = 1,
-};
-
-
-@interface UIViewController (SWIFT_EXTENSION(ApptentiveKit))
-@property (nonatomic) UIModalPresentationStyle apptentiveModalPresentationStyle;
-@end
-
-
-
-
-/// A button used to indicate positive sentiment in the EnjoymentDialog (“Love Dialog”) interaction.
-SWIFT_CLASS("_TtC13ApptentiveKit9YesButton")
-@interface YesButton : DialogButton
-@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/src/ios/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/Info.plist b/src/ios/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/Info.plist
deleted file mode 100644
index da04fda..0000000
Binary files a/src/ios/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/Info.plist and /dev/null differ
diff --git a/src/ios/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/Modules/ApptentiveKit.swiftmodule/arm64-apple-ios.abi.json b/src/ios/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/Modules/ApptentiveKit.swiftmodule/arm64-apple-ios.abi.json
deleted file mode 100644
index 5827519..0000000
--- a/src/ios/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/Modules/ApptentiveKit.swiftmodule/arm64-apple-ios.abi.json
+++ /dev/null
@@ -1,50876 +0,0 @@
-{
- "ABIRoot": {
- "kind": "Root",
- "name": "TopLevel",
- "printedName": "TopLevel",
- "children": [
- {
- "kind": "Import",
- "name": "StoreKit",
- "printedName": "StoreKit",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "UIKit",
- "printedName": "UIKit",
- "declKind": "Import",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "UIKit",
- "printedName": "UIKit",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "UIKit",
- "printedName": "UIKit",
- "declKind": "Import",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "UIKit",
- "printedName": "UIKit",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "UIKit",
- "printedName": "UIKit",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "DialogViewController",
- "printedName": "DialogViewController",
- "children": [
- {
- "kind": "Function",
- "name": "viewDidLoad",
- "printedName": "viewDidLoad()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Func",
- "usr": "c:@M@ApptentiveKit@objc(cs)DialogViewController(im)viewDidLoad",
- "mangledName": "$s13ApptentiveKit20DialogViewControllerC11viewDidLoadyyF",
- "moduleName": "ApptentiveKit",
- "overriding": true,
- "objc_name": "viewDidLoad",
- "declAttributes": [
- "Dynamic",
- "ObjC",
- "Custom",
- "Override",
- "AccessControl",
- "RawDocComment"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "viewDidAppear",
- "printedName": "viewDidAppear(_:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ],
- "declKind": "Func",
- "usr": "c:@M@ApptentiveKit@objc(cs)DialogViewController(im)viewDidAppear:",
- "mangledName": "$s13ApptentiveKit20DialogViewControllerC13viewDidAppearyySbF",
- "moduleName": "ApptentiveKit",
- "overriding": true,
- "objc_name": "viewDidAppear:",
- "declAttributes": [
- "Dynamic",
- "ObjC",
- "Custom",
- "Override",
- "AccessControl"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "dismiss",
- "printedName": "dismiss()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit20DialogViewControllerC7dismissyyF",
- "mangledName": "$s13ApptentiveKit20DialogViewControllerC7dismissyyF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Custom",
- "AccessControl",
- "RawDocComment"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(nibName:bundle:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "DialogViewController",
- "printedName": "ApptentiveKit.DialogViewController",
- "usr": "c:@M@ApptentiveKit@objc(cs)DialogViewController"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Foundation.Bundle?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bundle",
- "printedName": "Foundation.Bundle",
- "usr": "c:objc(cs)NSBundle"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Constructor",
- "usr": "c:@M@ApptentiveKit@objc(cs)DialogViewController(im)initWithNibName:bundle:",
- "mangledName": "$s13ApptentiveKit20DialogViewControllerC7nibName6bundleACSSSg_So8NSBundleCSgtcfc",
- "moduleName": "ApptentiveKit",
- "overriding": true,
- "implicit": true,
- "objc_name": "initWithNibName:bundle:",
- "declAttributes": [
- "Dynamic",
- "ObjC",
- "Custom",
- "Override"
- ],
- "init_kind": "Designated"
- }
- ],
- "declKind": "Class",
- "usr": "c:@M@ApptentiveKit@objc(cs)DialogViewController",
- "mangledName": "$s13ApptentiveKit20DialogViewControllerC",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Custom",
- "AccessControl",
- "RawDocComment",
- "ObjC"
- ],
- "superclassUsr": "c:objc(cs)UIViewController",
- "hasMissingDesignatedInitializers": true,
- "superclassNames": [
- "UIKit.UIViewController",
- "UIKit.UIResponder",
- "ObjectiveC.NSObject"
- ],
- "conformances": [
- {
- "kind": "Conformance",
- "name": "DialogViewModelDelegate",
- "printedName": "DialogViewModelDelegate",
- "usr": "s:13ApptentiveKit23DialogViewModelDelegateP",
- "mangledName": "$s13ApptentiveKit23DialogViewModelDelegateP"
- },
- {
- "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": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "UIKit",
- "printedName": "UIKit",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "QuickLook",
- "printedName": "QuickLook",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "UIKit",
- "printedName": "UIKit",
- "declKind": "Import",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "Import",
- "name": "UIKit",
- "printedName": "UIKit",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "UIKit",
- "printedName": "UIKit",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "UIKit",
- "printedName": "UIKit",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "UIKit",
- "printedName": "UIKit",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "OSLog",
- "printedName": "OSLog",
- "declKind": "Import",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "TypeDecl",
- "name": "ApptentiveLogger",
- "printedName": "ApptentiveLogger",
- "children": [
- {
- "kind": "Var",
- "name": "shouldHideSensitiveLogs",
- "printedName": "shouldHideSensitiveLogs",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit0A6LoggerV23shouldHideSensitiveLogsSbvpZ",
- "mangledName": "$s13ApptentiveKit0A6LoggerV23shouldHideSensitiveLogsSbvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A6LoggerV23shouldHideSensitiveLogsSbvgZ",
- "mangledName": "$s13ApptentiveKit0A6LoggerV23shouldHideSensitiveLogsSbvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "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": "s:13ApptentiveKit0A6LoggerV23shouldHideSensitiveLogsSbvsZ",
- "mangledName": "$s13ApptentiveKit0A6LoggerV23shouldHideSensitiveLogsSbvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A6LoggerV23shouldHideSensitiveLogsSbvMZ",
- "mangledName": "$s13ApptentiveKit0A6LoggerV23shouldHideSensitiveLogsSbvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "logLevel",
- "printedName": "logLevel",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "LogLevel",
- "printedName": "ApptentiveKit.LogLevel",
- "usr": "s:13ApptentiveKit8LogLevelO"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit0A6LoggerV8logLevelAA03LogE0Ovp",
- "mangledName": "$s13ApptentiveKit0A6LoggerV8logLevelAA03LogE0Ovp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "LogLevel",
- "printedName": "ApptentiveKit.LogLevel",
- "usr": "s:13ApptentiveKit8LogLevelO"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A6LoggerV8logLevelAA03LogE0Ovg",
- "mangledName": "$s13ApptentiveKit0A6LoggerV8logLevelAA03LogE0Ovg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "LogLevel",
- "printedName": "ApptentiveKit.LogLevel",
- "usr": "s:13ApptentiveKit8LogLevelO"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A6LoggerV8logLevelAA03LogE0Ovs",
- "mangledName": "$s13ApptentiveKit0A6LoggerV8logLevelAA03LogE0Ovs",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A6LoggerV8logLevelAA03LogE0OvM",
- "mangledName": "$s13ApptentiveKit0A6LoggerV8logLevelAA03LogE0OvM",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "default",
- "printedName": "default",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveLogger",
- "printedName": "ApptentiveKit.ApptentiveLogger",
- "usr": "s:13ApptentiveKit0A6LoggerV"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit0A6LoggerV7defaultACvpZ",
- "mangledName": "$s13ApptentiveKit0A6LoggerV7defaultACvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveLogger",
- "printedName": "ApptentiveKit.ApptentiveLogger",
- "usr": "s:13ApptentiveKit0A6LoggerV"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A6LoggerV7defaultACvgZ",
- "mangledName": "$s13ApptentiveKit0A6LoggerV7defaultACvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "ApptentiveLogger",
- "printedName": "ApptentiveKit.ApptentiveLogger",
- "usr": "s:13ApptentiveKit0A6LoggerV"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A6LoggerV7defaultACvsZ",
- "mangledName": "$s13ApptentiveKit0A6LoggerV7defaultACvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A6LoggerV7defaultACvMZ",
- "mangledName": "$s13ApptentiveKit0A6LoggerV7defaultACvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "engagement",
- "printedName": "engagement",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveLogger",
- "printedName": "ApptentiveKit.ApptentiveLogger",
- "usr": "s:13ApptentiveKit0A6LoggerV"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit0A6LoggerV10engagementACvpZ",
- "mangledName": "$s13ApptentiveKit0A6LoggerV10engagementACvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveLogger",
- "printedName": "ApptentiveKit.ApptentiveLogger",
- "usr": "s:13ApptentiveKit0A6LoggerV"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A6LoggerV10engagementACvgZ",
- "mangledName": "$s13ApptentiveKit0A6LoggerV10engagementACvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "ApptentiveLogger",
- "printedName": "ApptentiveKit.ApptentiveLogger",
- "usr": "s:13ApptentiveKit0A6LoggerV"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A6LoggerV10engagementACvsZ",
- "mangledName": "$s13ApptentiveKit0A6LoggerV10engagementACvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A6LoggerV10engagementACvMZ",
- "mangledName": "$s13ApptentiveKit0A6LoggerV10engagementACvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "interaction",
- "printedName": "interaction",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveLogger",
- "printedName": "ApptentiveKit.ApptentiveLogger",
- "usr": "s:13ApptentiveKit0A6LoggerV"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit0A6LoggerV11interactionACvpZ",
- "mangledName": "$s13ApptentiveKit0A6LoggerV11interactionACvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveLogger",
- "printedName": "ApptentiveKit.ApptentiveLogger",
- "usr": "s:13ApptentiveKit0A6LoggerV"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A6LoggerV11interactionACvgZ",
- "mangledName": "$s13ApptentiveKit0A6LoggerV11interactionACvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "ApptentiveLogger",
- "printedName": "ApptentiveKit.ApptentiveLogger",
- "usr": "s:13ApptentiveKit0A6LoggerV"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A6LoggerV11interactionACvsZ",
- "mangledName": "$s13ApptentiveKit0A6LoggerV11interactionACvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A6LoggerV11interactionACvMZ",
- "mangledName": "$s13ApptentiveKit0A6LoggerV11interactionACvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "network",
- "printedName": "network",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveLogger",
- "printedName": "ApptentiveKit.ApptentiveLogger",
- "usr": "s:13ApptentiveKit0A6LoggerV"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit0A6LoggerV7networkACvpZ",
- "mangledName": "$s13ApptentiveKit0A6LoggerV7networkACvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveLogger",
- "printedName": "ApptentiveKit.ApptentiveLogger",
- "usr": "s:13ApptentiveKit0A6LoggerV"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A6LoggerV7networkACvgZ",
- "mangledName": "$s13ApptentiveKit0A6LoggerV7networkACvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "ApptentiveLogger",
- "printedName": "ApptentiveKit.ApptentiveLogger",
- "usr": "s:13ApptentiveKit0A6LoggerV"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A6LoggerV7networkACvsZ",
- "mangledName": "$s13ApptentiveKit0A6LoggerV7networkACvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A6LoggerV7networkACvMZ",
- "mangledName": "$s13ApptentiveKit0A6LoggerV7networkACvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "payload",
- "printedName": "payload",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveLogger",
- "printedName": "ApptentiveKit.ApptentiveLogger",
- "usr": "s:13ApptentiveKit0A6LoggerV"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit0A6LoggerV7payloadACvpZ",
- "mangledName": "$s13ApptentiveKit0A6LoggerV7payloadACvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveLogger",
- "printedName": "ApptentiveKit.ApptentiveLogger",
- "usr": "s:13ApptentiveKit0A6LoggerV"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A6LoggerV7payloadACvgZ",
- "mangledName": "$s13ApptentiveKit0A6LoggerV7payloadACvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "ApptentiveLogger",
- "printedName": "ApptentiveKit.ApptentiveLogger",
- "usr": "s:13ApptentiveKit0A6LoggerV"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A6LoggerV7payloadACvsZ",
- "mangledName": "$s13ApptentiveKit0A6LoggerV7payloadACvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A6LoggerV7payloadACvMZ",
- "mangledName": "$s13ApptentiveKit0A6LoggerV7payloadACvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "targeting",
- "printedName": "targeting",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveLogger",
- "printedName": "ApptentiveKit.ApptentiveLogger",
- "usr": "s:13ApptentiveKit0A6LoggerV"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit0A6LoggerV9targetingACvpZ",
- "mangledName": "$s13ApptentiveKit0A6LoggerV9targetingACvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveLogger",
- "printedName": "ApptentiveKit.ApptentiveLogger",
- "usr": "s:13ApptentiveKit0A6LoggerV"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A6LoggerV9targetingACvgZ",
- "mangledName": "$s13ApptentiveKit0A6LoggerV9targetingACvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "ApptentiveLogger",
- "printedName": "ApptentiveKit.ApptentiveLogger",
- "usr": "s:13ApptentiveKit0A6LoggerV"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A6LoggerV9targetingACvsZ",
- "mangledName": "$s13ApptentiveKit0A6LoggerV9targetingACvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A6LoggerV9targetingACvMZ",
- "mangledName": "$s13ApptentiveKit0A6LoggerV9targetingACvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "messages",
- "printedName": "messages",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveLogger",
- "printedName": "ApptentiveKit.ApptentiveLogger",
- "usr": "s:13ApptentiveKit0A6LoggerV"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit0A6LoggerV8messagesACvpZ",
- "mangledName": "$s13ApptentiveKit0A6LoggerV8messagesACvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveLogger",
- "printedName": "ApptentiveKit.ApptentiveLogger",
- "usr": "s:13ApptentiveKit0A6LoggerV"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A6LoggerV8messagesACvgZ",
- "mangledName": "$s13ApptentiveKit0A6LoggerV8messagesACvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "ApptentiveLogger",
- "printedName": "ApptentiveKit.ApptentiveLogger",
- "usr": "s:13ApptentiveKit0A6LoggerV"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A6LoggerV8messagesACvsZ",
- "mangledName": "$s13ApptentiveKit0A6LoggerV8messagesACvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A6LoggerV8messagesACvMZ",
- "mangledName": "$s13ApptentiveKit0A6LoggerV8messagesACvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "attachments",
- "printedName": "attachments",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveLogger",
- "printedName": "ApptentiveKit.ApptentiveLogger",
- "usr": "s:13ApptentiveKit0A6LoggerV"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit0A6LoggerV11attachmentsACvpZ",
- "mangledName": "$s13ApptentiveKit0A6LoggerV11attachmentsACvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveLogger",
- "printedName": "ApptentiveKit.ApptentiveLogger",
- "usr": "s:13ApptentiveKit0A6LoggerV"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A6LoggerV11attachmentsACvgZ",
- "mangledName": "$s13ApptentiveKit0A6LoggerV11attachmentsACvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "ApptentiveLogger",
- "printedName": "ApptentiveKit.ApptentiveLogger",
- "usr": "s:13ApptentiveKit0A6LoggerV"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A6LoggerV11attachmentsACvsZ",
- "mangledName": "$s13ApptentiveKit0A6LoggerV11attachmentsACvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A6LoggerV11attachmentsACvMZ",
- "mangledName": "$s13ApptentiveKit0A6LoggerV11attachmentsACvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "logLevel",
- "printedName": "logLevel",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "LogLevel",
- "printedName": "ApptentiveKit.LogLevel",
- "usr": "s:13ApptentiveKit8LogLevelO"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit0A6LoggerV8logLevelAA03LogE0OvpZ",
- "mangledName": "$s13ApptentiveKit0A6LoggerV8logLevelAA03LogE0OvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "LogLevel",
- "printedName": "ApptentiveKit.LogLevel",
- "usr": "s:13ApptentiveKit8LogLevelO"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A6LoggerV8logLevelAA03LogE0OvgZ",
- "mangledName": "$s13ApptentiveKit0A6LoggerV8logLevelAA03LogE0OvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "LogLevel",
- "printedName": "ApptentiveKit.LogLevel",
- "usr": "s:13ApptentiveKit8LogLevelO"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A6LoggerV8logLevelAA03LogE0OvsZ",
- "mangledName": "$s13ApptentiveKit0A6LoggerV8logLevelAA03LogE0OvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A6LoggerV8logLevelAA03LogE0OvMZ",
- "mangledName": "$s13ApptentiveKit0A6LoggerV8logLevelAA03LogE0OvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- }
- ],
- "declKind": "Struct",
- "usr": "s:13ApptentiveKit0A6LoggerV",
- "mangledName": "$s13ApptentiveKit0A6LoggerV",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "LogLevel",
- "printedName": "LogLevel",
- "children": [
- {
- "kind": "Var",
- "name": "debug",
- "printedName": "debug",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.LogLevel.Type) -> ApptentiveKit.LogLevel",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "LogLevel",
- "printedName": "ApptentiveKit.LogLevel",
- "usr": "s:13ApptentiveKit8LogLevelO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.LogLevel.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "LogLevel",
- "printedName": "ApptentiveKit.LogLevel",
- "usr": "s:13ApptentiveKit8LogLevelO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:13ApptentiveKit8LogLevelO5debugyA2CmF",
- "mangledName": "$s13ApptentiveKit8LogLevelO5debugyA2CmF",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "Var",
- "name": "info",
- "printedName": "info",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.LogLevel.Type) -> ApptentiveKit.LogLevel",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "LogLevel",
- "printedName": "ApptentiveKit.LogLevel",
- "usr": "s:13ApptentiveKit8LogLevelO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.LogLevel.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "LogLevel",
- "printedName": "ApptentiveKit.LogLevel",
- "usr": "s:13ApptentiveKit8LogLevelO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:13ApptentiveKit8LogLevelO4infoyA2CmF",
- "mangledName": "$s13ApptentiveKit8LogLevelO4infoyA2CmF",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "Var",
- "name": "notice",
- "printedName": "notice",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.LogLevel.Type) -> ApptentiveKit.LogLevel",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "LogLevel",
- "printedName": "ApptentiveKit.LogLevel",
- "usr": "s:13ApptentiveKit8LogLevelO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.LogLevel.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "LogLevel",
- "printedName": "ApptentiveKit.LogLevel",
- "usr": "s:13ApptentiveKit8LogLevelO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:13ApptentiveKit8LogLevelO6noticeyA2CmF",
- "mangledName": "$s13ApptentiveKit8LogLevelO6noticeyA2CmF",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "Var",
- "name": "warning",
- "printedName": "warning",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.LogLevel.Type) -> ApptentiveKit.LogLevel",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "LogLevel",
- "printedName": "ApptentiveKit.LogLevel",
- "usr": "s:13ApptentiveKit8LogLevelO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.LogLevel.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "LogLevel",
- "printedName": "ApptentiveKit.LogLevel",
- "usr": "s:13ApptentiveKit8LogLevelO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:13ApptentiveKit8LogLevelO7warningyA2CmF",
- "mangledName": "$s13ApptentiveKit8LogLevelO7warningyA2CmF",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "Var",
- "name": "error",
- "printedName": "error",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.LogLevel.Type) -> ApptentiveKit.LogLevel",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "LogLevel",
- "printedName": "ApptentiveKit.LogLevel",
- "usr": "s:13ApptentiveKit8LogLevelO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.LogLevel.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "LogLevel",
- "printedName": "ApptentiveKit.LogLevel",
- "usr": "s:13ApptentiveKit8LogLevelO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:13ApptentiveKit8LogLevelO5erroryA2CmF",
- "mangledName": "$s13ApptentiveKit8LogLevelO5erroryA2CmF",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "Var",
- "name": "critical",
- "printedName": "critical",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.LogLevel.Type) -> ApptentiveKit.LogLevel",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "LogLevel",
- "printedName": "ApptentiveKit.LogLevel",
- "usr": "s:13ApptentiveKit8LogLevelO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.LogLevel.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "LogLevel",
- "printedName": "ApptentiveKit.LogLevel",
- "usr": "s:13ApptentiveKit8LogLevelO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:13ApptentiveKit8LogLevelO8criticalyA2CmF",
- "mangledName": "$s13ApptentiveKit8LogLevelO8criticalyA2CmF",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "Var",
- "name": "fault",
- "printedName": "fault",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.LogLevel.Type) -> ApptentiveKit.LogLevel",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "LogLevel",
- "printedName": "ApptentiveKit.LogLevel",
- "usr": "s:13ApptentiveKit8LogLevelO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.LogLevel.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "LogLevel",
- "printedName": "ApptentiveKit.LogLevel",
- "usr": "s:13ApptentiveKit8LogLevelO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:13ApptentiveKit8LogLevelO5faultyA2CmF",
- "mangledName": "$s13ApptentiveKit8LogLevelO5faultyA2CmF",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "Function",
- "name": "<",
- "printedName": "<(_:_:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- },
- {
- "kind": "TypeNominal",
- "name": "LogLevel",
- "printedName": "ApptentiveKit.LogLevel",
- "usr": "s:13ApptentiveKit8LogLevelO"
- },
- {
- "kind": "TypeNominal",
- "name": "LogLevel",
- "printedName": "ApptentiveKit.LogLevel",
- "usr": "s:13ApptentiveKit8LogLevelO"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit8LogLevelO1loiySbAC_ACtFZ",
- "mangledName": "$s13ApptentiveKit8LogLevelO1loiySbAC_ACtFZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(rawValue:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "ApptentiveKit.LogLevel?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "LogLevel",
- "printedName": "ApptentiveKit.LogLevel",
- "usr": "s:13ApptentiveKit8LogLevelO"
- }
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ],
- "declKind": "Constructor",
- "usr": "s:13ApptentiveKit8LogLevelO8rawValueACSgSi_tcfc",
- "mangledName": "$s13ApptentiveKit8LogLevelO8rawValueACSgSi_tcfc",
- "moduleName": "ApptentiveKit",
- "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:13ApptentiveKit8LogLevelO8rawValueSivp",
- "mangledName": "$s13ApptentiveKit8LogLevelO8rawValueSivp",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit8LogLevelO8rawValueSivg",
- "mangledName": "$s13ApptentiveKit8LogLevelO8rawValueSivg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "get"
- }
- ]
- }
- ],
- "declKind": "Enum",
- "usr": "s:13ApptentiveKit8LogLevelO",
- "mangledName": "$s13ApptentiveKit8LogLevelO",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "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": "Comparable",
- "printedName": "Comparable",
- "usr": "s:SL",
- "mangledName": "$sSL"
- }
- ]
- },
- {
- "kind": "Import",
- "name": "UIKit",
- "printedName": "UIKit",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "Apptentive",
- "printedName": "Apptentive",
- "children": [
- {
- "kind": "Var",
- "name": "shared",
- "printedName": "shared",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Apptentive",
- "printedName": "ApptentiveKit.Apptentive",
- "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive"
- }
- ],
- "declKind": "Var",
- "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(cpy)shared",
- "mangledName": "$s13ApptentiveKit0A0C6sharedACvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Apptentive",
- "printedName": "ApptentiveKit.Apptentive",
- "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(cm)shared",
- "mangledName": "$s13ApptentiveKit0A0C6sharedACvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final",
- "ObjC"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "interactionPresenter",
- "printedName": "interactionPresenter",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "InteractionPresenter",
- "printedName": "ApptentiveKit.InteractionPresenter",
- "usr": "s:13ApptentiveKit20InteractionPresenterC"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit0A0C20interactionPresenterAA011InteractionD0Cvp",
- "mangledName": "$s13ApptentiveKit0A0C20interactionPresenterAA011InteractionD0Cvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "InteractionPresenter",
- "printedName": "ApptentiveKit.InteractionPresenter",
- "usr": "s:13ApptentiveKit20InteractionPresenterC"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A0C20interactionPresenterAA011InteractionD0Cvg",
- "mangledName": "$s13ApptentiveKit0A0C20interactionPresenterAA011InteractionD0Cvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "InteractionPresenter",
- "printedName": "ApptentiveKit.InteractionPresenter",
- "usr": "s:13ApptentiveKit20InteractionPresenterC"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A0C20interactionPresenterAA011InteractionD0Cvs",
- "mangledName": "$s13ApptentiveKit0A0C20interactionPresenterAA011InteractionD0Cvs",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A0C20interactionPresenterAA011InteractionD0CvM",
- "mangledName": "$s13ApptentiveKit0A0C20interactionPresenterAA011InteractionD0CvM",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "theme",
- "printedName": "theme",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UITheme",
- "printedName": "ApptentiveKit.Apptentive.UITheme",
- "usr": "s:13ApptentiveKit0A0C7UIThemeO"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit0A0C5themeAC7UIThemeOvp",
- "mangledName": "$s13ApptentiveKit0A0C5themeAC7UIThemeOvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UITheme",
- "printedName": "ApptentiveKit.Apptentive.UITheme",
- "usr": "s:13ApptentiveKit0A0C7UIThemeO"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A0C5themeAC7UIThemeOvg",
- "mangledName": "$s13ApptentiveKit0A0C5themeAC7UIThemeOvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UITheme",
- "printedName": "ApptentiveKit.Apptentive.UITheme",
- "usr": "s:13ApptentiveKit0A0C7UIThemeO"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A0C5themeAC7UIThemeOvs",
- "mangledName": "$s13ApptentiveKit0A0C5themeAC7UIThemeOvs",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A0C5themeAC7UIThemeOvM",
- "mangledName": "$s13ApptentiveKit0A0C5themeAC7UIThemeOvM",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "personName",
- "printedName": "personName",
- "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@ApptentiveKit@objc(cs)Apptentive(py)personName",
- "mangledName": "$s13ApptentiveKit0A0C10personNameSSSgvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(im)personName",
- "mangledName": "$s13ApptentiveKit0A0C10personNameSSSgvg",
- "moduleName": "ApptentiveKit",
- "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@ApptentiveKit@objc(cs)Apptentive(im)setPersonName:",
- "mangledName": "$s13ApptentiveKit0A0C10personNameSSSgvs",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "ObjC"
- ],
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A0C10personNameSSSgvM",
- "mangledName": "$s13ApptentiveKit0A0C10personNameSSSgvM",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "personEmailAddress",
- "printedName": "personEmailAddress",
- "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@ApptentiveKit@objc(cs)Apptentive(py)personEmailAddress",
- "mangledName": "$s13ApptentiveKit0A0C18personEmailAddressSSSgvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(im)personEmailAddress",
- "mangledName": "$s13ApptentiveKit0A0C18personEmailAddressSSSgvg",
- "moduleName": "ApptentiveKit",
- "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@ApptentiveKit@objc(cs)Apptentive(im)setPersonEmailAddress:",
- "mangledName": "$s13ApptentiveKit0A0C18personEmailAddressSSSgvs",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "ObjC"
- ],
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A0C18personEmailAddressSSSgvM",
- "mangledName": "$s13ApptentiveKit0A0C18personEmailAddressSSSgvM",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "mParticleID",
- "printedName": "mParticleID",
- "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@ApptentiveKit@objc(cs)Apptentive(py)mParticleID",
- "mangledName": "$s13ApptentiveKit0A0C11mParticleIDSSSgvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(im)mParticleID",
- "mangledName": "$s13ApptentiveKit0A0C11mParticleIDSSSgvg",
- "moduleName": "ApptentiveKit",
- "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@ApptentiveKit@objc(cs)Apptentive(im)setMParticleID:",
- "mangledName": "$s13ApptentiveKit0A0C11mParticleIDSSSgvs",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "ObjC"
- ],
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A0C11mParticleIDSSSgvM",
- "mangledName": "$s13ApptentiveKit0A0C11mParticleIDSSSgvM",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "personCustomData",
- "printedName": "personCustomData",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "CustomData",
- "printedName": "ApptentiveKit.CustomData",
- "usr": "s:13ApptentiveKit10CustomDataV"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit0A0C16personCustomDataAA0dE0Vvp",
- "mangledName": "$s13ApptentiveKit0A0C16personCustomDataAA0dE0Vvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "CustomData",
- "printedName": "ApptentiveKit.CustomData",
- "usr": "s:13ApptentiveKit10CustomDataV"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A0C16personCustomDataAA0dE0Vvg",
- "mangledName": "$s13ApptentiveKit0A0C16personCustomDataAA0dE0Vvg",
- "moduleName": "ApptentiveKit",
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "CustomData",
- "printedName": "ApptentiveKit.CustomData",
- "usr": "s:13ApptentiveKit10CustomDataV"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A0C16personCustomDataAA0dE0Vvs",
- "mangledName": "$s13ApptentiveKit0A0C16personCustomDataAA0dE0Vvs",
- "moduleName": "ApptentiveKit",
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A0C16personCustomDataAA0dE0VvM",
- "mangledName": "$s13ApptentiveKit0A0C16personCustomDataAA0dE0VvM",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "deviceCustomData",
- "printedName": "deviceCustomData",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "CustomData",
- "printedName": "ApptentiveKit.CustomData",
- "usr": "s:13ApptentiveKit10CustomDataV"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit0A0C16deviceCustomDataAA0dE0Vvp",
- "mangledName": "$s13ApptentiveKit0A0C16deviceCustomDataAA0dE0Vvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "CustomData",
- "printedName": "ApptentiveKit.CustomData",
- "usr": "s:13ApptentiveKit10CustomDataV"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A0C16deviceCustomDataAA0dE0Vvg",
- "mangledName": "$s13ApptentiveKit0A0C16deviceCustomDataAA0dE0Vvg",
- "moduleName": "ApptentiveKit",
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "CustomData",
- "printedName": "ApptentiveKit.CustomData",
- "usr": "s:13ApptentiveKit10CustomDataV"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A0C16deviceCustomDataAA0dE0Vvs",
- "mangledName": "$s13ApptentiveKit0A0C16deviceCustomDataAA0dE0Vvs",
- "moduleName": "ApptentiveKit",
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A0C16deviceCustomDataAA0dE0VvM",
- "mangledName": "$s13ApptentiveKit0A0C16deviceCustomDataAA0dE0VvM",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "unreadMessageCount",
- "printedName": "unreadMessageCount",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ],
- "declKind": "Var",
- "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(py)unreadMessageCount",
- "mangledName": "$s13ApptentiveKit0A0C18unreadMessageCountSivp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl",
- "Dynamic",
- "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@ApptentiveKit@objc(cs)Apptentive(im)unreadMessageCount",
- "mangledName": "$s13ApptentiveKit0A0C18unreadMessageCountSivg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Dynamic",
- "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@ApptentiveKit@objc(cs)Apptentive(im)setUnreadMessageCount:",
- "mangledName": "$s13ApptentiveKit0A0C18unreadMessageCountSivs",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Dynamic",
- "ObjC"
- ],
- "accessorKind": "set"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "distributionName",
- "printedName": "distributionName",
- "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@ApptentiveKit@objc(cs)Apptentive(py)distributionName",
- "mangledName": "$s13ApptentiveKit0A0C16distributionNameSSSgvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(im)distributionName",
- "mangledName": "$s13ApptentiveKit0A0C16distributionNameSSSgvg",
- "moduleName": "ApptentiveKit",
- "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@ApptentiveKit@objc(cs)Apptentive(im)setDistributionName:",
- "mangledName": "$s13ApptentiveKit0A0C16distributionNameSSSgvs",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "ObjC"
- ],
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A0C16distributionNameSSSgvM",
- "mangledName": "$s13ApptentiveKit0A0C16distributionNameSSSgvM",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "distributionVersion",
- "printedName": "distributionVersion",
- "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@ApptentiveKit@objc(cs)Apptentive(py)distributionVersion",
- "mangledName": "$s13ApptentiveKit0A0C19distributionVersionSSSgvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(im)distributionVersion",
- "mangledName": "$s13ApptentiveKit0A0C19distributionVersionSSSgvg",
- "moduleName": "ApptentiveKit",
- "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@ApptentiveKit@objc(cs)Apptentive(im)setDistributionVersion:",
- "mangledName": "$s13ApptentiveKit0A0C19distributionVersionSSSgvs",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "ObjC"
- ],
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A0C19distributionVersionSSSgvM",
- "mangledName": "$s13ApptentiveKit0A0C19distributionVersionSSSgvM",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "UITheme",
- "printedName": "UITheme",
- "children": [
- {
- "kind": "Var",
- "name": "apptentive",
- "printedName": "apptentive",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.Apptentive.UITheme.Type) -> ApptentiveKit.Apptentive.UITheme",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UITheme",
- "printedName": "ApptentiveKit.Apptentive.UITheme",
- "usr": "s:13ApptentiveKit0A0C7UIThemeO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.Apptentive.UITheme.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UITheme",
- "printedName": "ApptentiveKit.Apptentive.UITheme",
- "usr": "s:13ApptentiveKit0A0C7UIThemeO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:13ApptentiveKit0A0C7UIThemeO10apptentiveyA2EmF",
- "mangledName": "$s13ApptentiveKit0A0C7UIThemeO10apptentiveyA2EmF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "none",
- "printedName": "none",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.Apptentive.UITheme.Type) -> ApptentiveKit.Apptentive.UITheme",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UITheme",
- "printedName": "ApptentiveKit.Apptentive.UITheme",
- "usr": "s:13ApptentiveKit0A0C7UIThemeO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.Apptentive.UITheme.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UITheme",
- "printedName": "ApptentiveKit.Apptentive.UITheme",
- "usr": "s:13ApptentiveKit0A0C7UIThemeO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:13ApptentiveKit0A0C7UIThemeO4noneyA2EmF",
- "mangledName": "$s13ApptentiveKit0A0C7UIThemeO4noneyA2EmF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Function",
- "name": "==",
- "printedName": "==(_:_:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- },
- {
- "kind": "TypeNominal",
- "name": "UITheme",
- "printedName": "ApptentiveKit.Apptentive.UITheme",
- "usr": "s:13ApptentiveKit0A0C7UIThemeO"
- },
- {
- "kind": "TypeNominal",
- "name": "UITheme",
- "printedName": "ApptentiveKit.Apptentive.UITheme",
- "usr": "s:13ApptentiveKit0A0C7UIThemeO"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit0A0C7UIThemeO2eeoiySbAE_AEtFZ",
- "mangledName": "$s13ApptentiveKit0A0C7UIThemeO2eeoiySbAE_AEtFZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Var",
- "name": "hashValue",
- "printedName": "hashValue",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit0A0C7UIThemeO9hashValueSivp",
- "mangledName": "$s13ApptentiveKit0A0C7UIThemeO9hashValueSivp",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A0C7UIThemeO9hashValueSivg",
- "mangledName": "$s13ApptentiveKit0A0C7UIThemeO9hashValueSivg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Function",
- "name": "hash",
- "printedName": "hash(into:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Hasher",
- "printedName": "Swift.Hasher",
- "paramValueOwnership": "InOut",
- "usr": "s:s6HasherV"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit0A0C7UIThemeO4hash4intoys6HasherVz_tF",
- "mangledName": "$s13ApptentiveKit0A0C7UIThemeO4hash4intoys6HasherVz_tF",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "funcSelfKind": "NonMutating"
- }
- ],
- "declKind": "Enum",
- "usr": "s:13ApptentiveKit0A0C7UIThemeO",
- "mangledName": "$s13ApptentiveKit0A0C7UIThemeO",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "conformances": [
- {
- "kind": "Conformance",
- "name": "Equatable",
- "printedName": "Equatable",
- "usr": "s:SQ",
- "mangledName": "$sSQ"
- },
- {
- "kind": "Conformance",
- "name": "Hashable",
- "printedName": "Hashable",
- "usr": "s:SH",
- "mangledName": "$sSH"
- }
- ]
- },
- {
- "kind": "Function",
- "name": "register",
- "printedName": "register(with:completion:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "AppCredentials",
- "printedName": "ApptentiveKit.Apptentive.AppCredentials",
- "usr": "s:13ApptentiveKit0A0C14AppCredentialsV"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "((Swift.Result<(), Swift.Error>) -> ())?",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(Swift.Result<(), Swift.Error>) -> ()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Result",
- "printedName": "Swift.Result<(), Swift.Error>",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Error",
- "printedName": "Swift.Error",
- "usr": "s:s5ErrorP"
- }
- ],
- "usr": "s:s6ResultO"
- }
- ]
- }
- ],
- "hasDefaultArg": true,
- "usr": "s:Sq"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit0A0C8register4with10completionyAC14AppCredentialsV_ys6ResultOyyts5Error_pGcSgtF",
- "mangledName": "$s13ApptentiveKit0A0C8register4with10completionyAC14AppCredentialsV_ys6ResultOyyts5Error_pGcSgtF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "TypeDecl",
- "name": "AppCredentials",
- "printedName": "AppCredentials",
- "children": [
- {
- "kind": "Var",
- "name": "key",
- "printedName": "key",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit0A0C14AppCredentialsV3keySSvp",
- "mangledName": "$s13ApptentiveKit0A0C14AppCredentialsV3keySSvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A0C14AppCredentialsV3keySSvg",
- "mangledName": "$s13ApptentiveKit0A0C14AppCredentialsV3keySSvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "signature",
- "printedName": "signature",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit0A0C14AppCredentialsV9signatureSSvp",
- "mangledName": "$s13ApptentiveKit0A0C14AppCredentialsV9signatureSSvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A0C14AppCredentialsV9signatureSSvg",
- "mangledName": "$s13ApptentiveKit0A0C14AppCredentialsV9signatureSSvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(key:signature:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "AppCredentials",
- "printedName": "ApptentiveKit.Apptentive.AppCredentials",
- "usr": "s:13ApptentiveKit0A0C14AppCredentialsV"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Constructor",
- "usr": "s:13ApptentiveKit0A0C14AppCredentialsV3key9signatureAESS_SStcfc",
- "mangledName": "$s13ApptentiveKit0A0C14AppCredentialsV3key9signatureAESS_SStcfc",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "init_kind": "Designated"
- },
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(from:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "AppCredentials",
- "printedName": "ApptentiveKit.Apptentive.AppCredentials",
- "usr": "s:13ApptentiveKit0A0C14AppCredentialsV"
- },
- {
- "kind": "TypeNominal",
- "name": "Decoder",
- "printedName": "Swift.Decoder",
- "usr": "s:s7DecoderP"
- }
- ],
- "declKind": "Constructor",
- "usr": "s:13ApptentiveKit0A0C14AppCredentialsV4fromAEs7Decoder_p_tKcfc",
- "mangledName": "$s13ApptentiveKit0A0C14AppCredentialsV4fromAEs7Decoder_p_tKcfc",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "throwing": true,
- "init_kind": "Designated"
- },
- {
- "kind": "Function",
- "name": "encode",
- "printedName": "encode(to:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Encoder",
- "printedName": "Swift.Encoder",
- "usr": "s:s7EncoderP"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit0A0C14AppCredentialsV6encode2toys7Encoder_p_tKF",
- "mangledName": "$s13ApptentiveKit0A0C14AppCredentialsV6encode2toys7Encoder_p_tKF",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "throwing": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "==",
- "printedName": "==(_:_:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- },
- {
- "kind": "TypeNominal",
- "name": "AppCredentials",
- "printedName": "ApptentiveKit.Apptentive.AppCredentials",
- "usr": "s:13ApptentiveKit0A0C14AppCredentialsV"
- },
- {
- "kind": "TypeNominal",
- "name": "AppCredentials",
- "printedName": "ApptentiveKit.Apptentive.AppCredentials",
- "usr": "s:13ApptentiveKit0A0C14AppCredentialsV"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit0A0C14AppCredentialsV2eeoiySbAE_AEtFZ",
- "mangledName": "$s13ApptentiveKit0A0C14AppCredentialsV2eeoiySbAE_AEtFZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "funcSelfKind": "NonMutating"
- }
- ],
- "declKind": "Struct",
- "usr": "s:13ApptentiveKit0A0C14AppCredentialsV",
- "mangledName": "$s13ApptentiveKit0A0C14AppCredentialsV",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "conformances": [
- {
- "kind": "Conformance",
- "name": "Decodable",
- "printedName": "Decodable",
- "usr": "s:Se",
- "mangledName": "$sSe"
- },
- {
- "kind": "Conformance",
- "name": "Encodable",
- "printedName": "Encodable",
- "usr": "s:SE",
- "mangledName": "$sSE"
- },
- {
- "kind": "Conformance",
- "name": "Equatable",
- "printedName": "Equatable",
- "usr": "s:SQ",
- "mangledName": "$sSQ"
- }
- ]
- },
- {
- "kind": "Function",
- "name": "engage",
- "printedName": "engage(event:from:completion:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Event",
- "printedName": "ApptentiveKit.Event",
- "usr": "s:13ApptentiveKit5EventV"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "UIKit.UIViewController?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIViewController",
- "printedName": "UIKit.UIViewController",
- "usr": "c:objc(cs)UIViewController"
- }
- ],
- "hasDefaultArg": true,
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "((Swift.Result) -> ())?",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(Swift.Result) -> ()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Result",
- "printedName": "Swift.Result",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- },
- {
- "kind": "TypeNominal",
- "name": "Error",
- "printedName": "Swift.Error",
- "usr": "s:s5ErrorP"
- }
- ],
- "usr": "s:s6ResultO"
- }
- ]
- }
- ],
- "hasDefaultArg": true,
- "usr": "s:Sq"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit0A0C6engage5event4from10completionyAA5EventV_So16UIViewControllerCSgys6ResultOySbs5Error_pGcSgtF",
- "mangledName": "$s13ApptentiveKit0A0C6engage5event4from10completionyAA5EventV_So16UIViewControllerCSgys6ResultOySbs5Error_pGcSgtF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "dismissAllInteractions",
- "printedName": "dismissAllInteractions(animated:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit0A0C22dismissAllInteractions8animatedySb_tF",
- "mangledName": "$s13ApptentiveKit0A0C22dismissAllInteractions8animatedySb_tF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "presentMessageCenter",
- "printedName": "presentMessageCenter(from:completion:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "UIKit.UIViewController?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIViewController",
- "printedName": "UIKit.UIViewController",
- "usr": "c:objc(cs)UIViewController"
- }
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "((Swift.Result) -> ())?",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(Swift.Result) -> ()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Result",
- "printedName": "Swift.Result",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- },
- {
- "kind": "TypeNominal",
- "name": "Error",
- "printedName": "Swift.Error",
- "usr": "s:s5ErrorP"
- }
- ],
- "usr": "s:s6ResultO"
- }
- ]
- }
- ],
- "hasDefaultArg": true,
- "usr": "s:Sq"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit0A0C20presentMessageCenter4from10completionySo16UIViewControllerCSg_ys6ResultOySbs5Error_pGcSgtF",
- "mangledName": "$s13ApptentiveKit0A0C20presentMessageCenter4from10completionySo16UIViewControllerCSg_ys6ResultOySbs5Error_pGcSgtF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "presentMessageCenter",
- "printedName": "presentMessageCenter(from:with:completion:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "UIKit.UIViewController?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIViewController",
- "printedName": "UIKit.UIViewController",
- "usr": "c:objc(cs)UIViewController"
- }
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "ApptentiveKit.CustomData?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "CustomData",
- "printedName": "ApptentiveKit.CustomData",
- "usr": "s:13ApptentiveKit10CustomDataV"
- }
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "((Swift.Result) -> ())?",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(Swift.Result) -> ()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Result",
- "printedName": "Swift.Result",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- },
- {
- "kind": "TypeNominal",
- "name": "Error",
- "printedName": "Swift.Error",
- "usr": "s:s5ErrorP"
- }
- ],
- "usr": "s:s6ResultO"
- }
- ]
- }
- ],
- "hasDefaultArg": true,
- "usr": "s:Sq"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit0A0C20presentMessageCenter4from4with10completionySo16UIViewControllerCSg_AA10CustomDataVSgys6ResultOySbs5Error_pGcSgtF",
- "mangledName": "$s13ApptentiveKit0A0C20presentMessageCenter4from4with10completionySo16UIViewControllerCSg_AA10CustomDataVSgys6ResultOySbs5Error_pGcSgtF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "sendAttachment",
- "printedName": "sendAttachment(_:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Func",
- "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(im)sendAttachmentText:",
- "mangledName": "$s13ApptentiveKit0A0C14sendAttachmentyySSF",
- "moduleName": "ApptentiveKit",
- "objc_name": "sendAttachmentText:",
- "declAttributes": [
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "sendAttachment",
- "printedName": "sendAttachment(_:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIImage",
- "printedName": "UIKit.UIImage",
- "usr": "c:objc(cs)UIImage"
- }
- ],
- "declKind": "Func",
- "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(im)sendAttachmentImage:",
- "mangledName": "$s13ApptentiveKit0A0C14sendAttachmentyySo7UIImageCF",
- "moduleName": "ApptentiveKit",
- "objc_name": "sendAttachmentImage:",
- "declAttributes": [
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "sendAttachment",
- "printedName": "sendAttachment(_:mediaType:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Data",
- "printedName": "Foundation.Data",
- "usr": "s:10Foundation4DataV"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Func",
- "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(im)sendAttachmentFile:withMimeType:",
- "mangledName": "$s13ApptentiveKit0A0C14sendAttachment_9mediaTypey10Foundation4DataV_SStF",
- "moduleName": "ApptentiveKit",
- "objc_name": "sendAttachmentFile:withMimeType:",
- "declAttributes": [
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "canShowInteraction",
- "printedName": "canShowInteraction(event:completion:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Event",
- "printedName": "ApptentiveKit.Event",
- "usr": "s:13ApptentiveKit5EventV"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "((Swift.Result) -> ())?",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(Swift.Result) -> ()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Result",
- "printedName": "Swift.Result",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- },
- {
- "kind": "TypeNominal",
- "name": "Error",
- "printedName": "Swift.Error",
- "usr": "s:s5ErrorP"
- }
- ],
- "usr": "s:s6ResultO"
- }
- ]
- }
- ],
- "hasDefaultArg": true,
- "usr": "s:Sq"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit0A0C18canShowInteraction5event10completionyAA5EventV_ys6ResultOySbs5Error_pGcSgtF",
- "mangledName": "$s13ApptentiveKit0A0C18canShowInteraction5event10completionyAA5EventV_ys6ResultOySbs5Error_pGcSgtF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(apiBaseURL:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Apptentive",
- "printedName": "ApptentiveKit.Apptentive",
- "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive"
- },
- {
- "kind": "TypeNominal",
- "name": "URL",
- "printedName": "Foundation.URL",
- "usr": "s:10Foundation3URLV"
- }
- ],
- "declKind": "Constructor",
- "usr": "s:13ApptentiveKit0A0C10apiBaseURLAC10Foundation0E0V_tcfc",
- "mangledName": "$s13ApptentiveKit0A0C10apiBaseURLAC10Foundation0E0V_tcfc",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Convenience",
- "AccessControl",
- "RawDocComment"
- ],
- "init_kind": "Convenience"
- },
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Apptentive",
- "printedName": "ApptentiveKit.Apptentive",
- "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive"
- }
- ],
- "declKind": "Constructor",
- "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(im)init",
- "mangledName": "$s13ApptentiveKit0A0CACycfc",
- "moduleName": "ApptentiveKit",
- "overriding": true,
- "implicit": true,
- "objc_name": "init",
- "declAttributes": [
- "Dynamic",
- "ObjC",
- "Override"
- ],
- "init_kind": "Designated"
- },
- {
- "kind": "Function",
- "name": "setRemoteNotificationDeviceToken",
- "printedName": "setRemoteNotificationDeviceToken(_:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Data",
- "printedName": "Foundation.Data",
- "usr": "s:10Foundation4DataV"
- }
- ],
- "declKind": "Func",
- "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)setRemoteNotificationDeviceToken:",
- "mangledName": "$s13ApptentiveKit0A0C32setRemoteNotificationDeviceTokenyy10Foundation4DataVF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Dynamic",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "setRemoteNotifcationDeviceToken",
- "printedName": "setRemoteNotifcationDeviceToken(_:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Data",
- "printedName": "Foundation.Data",
- "usr": "s:10Foundation4DataV"
- }
- ],
- "declKind": "Func",
- "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)setRemoteNotifcationDeviceToken:",
- "mangledName": "$s13ApptentiveKit0A0C31setRemoteNotifcationDeviceTokenyy10Foundation4DataVF",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "declAttributes": [
- "Dynamic",
- "AccessControl",
- "ObjC",
- "Available",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "didReceiveRemoteNotification",
- "printedName": "didReceiveRemoteNotification(_:fetchCompletionHandler:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- },
- {
- "kind": "TypeNominal",
- "name": "Dictionary",
- "printedName": "[Swift.AnyHashable : Any]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "AnyHashable",
- "printedName": "Swift.AnyHashable",
- "usr": "s:s11AnyHashableV"
- },
- {
- "kind": "TypeNominal",
- "name": "ProtocolComposition",
- "printedName": "Any"
- }
- ],
- "usr": "s:SD"
- },
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(UIKit.UIBackgroundFetchResult) -> ()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIBackgroundFetchResult",
- "printedName": "UIKit.UIBackgroundFetchResult",
- "usr": "c:@E@UIBackgroundFetchResult"
- }
- ]
- }
- ],
- "declKind": "Func",
- "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)didReceiveRemoteNotification:fetchCompletionHandler:",
- "mangledName": "$s13ApptentiveKit0A0C28didReceiveRemoteNotification_22fetchCompletionHandlerSbSDys11AnyHashableVypG_ySo23UIBackgroundFetchResultVctF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Dynamic",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "didReceveUserNotificationResponse",
- "printedName": "didReceveUserNotificationResponse(_:withCompletionHandler:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- },
- {
- "kind": "TypeNominal",
- "name": "UNNotificationResponse",
- "printedName": "UserNotifications.UNNotificationResponse",
- "usr": "c:objc(cs)UNNotificationResponse"
- },
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "() -> ()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ]
- }
- ],
- "declKind": "Func",
- "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)didReceveUserNotificationResponse:withCompletionHandler:",
- "mangledName": "$s13ApptentiveKit0A0C33didReceveUserNotificationResponse_21withCompletionHandlerSbSo014UNNotificationG0C_yyctF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Dynamic",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "willPresent",
- "printedName": "willPresent(_:withCompletionHandler:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- },
- {
- "kind": "TypeNominal",
- "name": "UNNotification",
- "printedName": "UserNotifications.UNNotification",
- "usr": "c:objc(cs)UNNotification"
- },
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(UserNotifications.UNNotificationPresentationOptions) -> ()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UNNotificationPresentationOptions",
- "printedName": "UserNotifications.UNNotificationPresentationOptions",
- "usr": "c:@E@UNNotificationPresentationOptions"
- }
- ]
- }
- ],
- "declKind": "Func",
- "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)willPresent:withCompletionHandler:",
- "mangledName": "$s13ApptentiveKit0A0C11willPresent_21withCompletionHandlerSbSo14UNNotificationC_ySo0H19PresentationOptionsVctF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Dynamic",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "userNotificationCenter",
- "printedName": "userNotificationCenter(_:willPresent:withCompletionHandler:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UNUserNotificationCenter",
- "printedName": "UserNotifications.UNUserNotificationCenter",
- "usr": "c:objc(cs)UNUserNotificationCenter"
- },
- {
- "kind": "TypeNominal",
- "name": "UNNotification",
- "printedName": "UserNotifications.UNNotification",
- "usr": "c:objc(cs)UNNotification"
- },
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(UserNotifications.UNNotificationPresentationOptions) -> ()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UNNotificationPresentationOptions",
- "printedName": "UserNotifications.UNNotificationPresentationOptions",
- "usr": "c:@E@UNNotificationPresentationOptions"
- }
- ]
- }
- ],
- "declKind": "Func",
- "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)userNotificationCenter:willPresentNotification:withCompletionHandler:",
- "mangledName": "$s13ApptentiveKit0A0C22userNotificationCenter_11willPresent21withCompletionHandlerySo06UNUserdE0C_So14UNNotificationCySo0L19PresentationOptionsVctF",
- "moduleName": "ApptentiveKit",
- "objc_name": "userNotificationCenter:willPresentNotification:withCompletionHandler:",
- "declAttributes": [
- "Dynamic",
- "ObjC",
- "AccessControl",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "userNotificationCenter",
- "printedName": "userNotificationCenter(_:didReceive:withCompletionHandler:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UNUserNotificationCenter",
- "printedName": "UserNotifications.UNUserNotificationCenter",
- "usr": "c:objc(cs)UNUserNotificationCenter"
- },
- {
- "kind": "TypeNominal",
- "name": "UNNotificationResponse",
- "printedName": "UserNotifications.UNNotificationResponse",
- "usr": "c:objc(cs)UNNotificationResponse"
- },
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "() -> ()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ]
- }
- ],
- "declKind": "Func",
- "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:",
- "mangledName": "$s13ApptentiveKit0A0C22userNotificationCenter_10didReceive21withCompletionHandlerySo06UNUserdE0C_So22UNNotificationResponseCyyctF",
- "moduleName": "ApptentiveKit",
- "objc_name": "userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:",
- "declAttributes": [
- "Dynamic",
- "ObjC",
- "AccessControl",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Var",
- "name": "engagementManifestURL",
- "printedName": "engagementManifestURL",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Foundation.URL?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "URL",
- "printedName": "Foundation.URL",
- "usr": "s:10Foundation3URLV"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit0A0C21engagementManifestURL10Foundation0E0VSgvp",
- "mangledName": "$s13ApptentiveKit0A0C21engagementManifestURL10Foundation0E0VSgvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Foundation.URL?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "URL",
- "printedName": "Foundation.URL",
- "usr": "s:10Foundation3URLV"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A0C21engagementManifestURL10Foundation0E0VSgvg",
- "mangledName": "$s13ApptentiveKit0A0C21engagementManifestURL10Foundation0E0VSgvg",
- "moduleName": "ApptentiveKit",
- "isFromExtension": true,
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Function",
- "name": "loadEngagementManifest",
- "printedName": "loadEngagementManifest(at:completion:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Foundation.URL?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "URL",
- "printedName": "Foundation.URL",
- "usr": "s:10Foundation3URLV"
- }
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(Swift.Result<(), Swift.Error>) -> ()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Result",
- "printedName": "Swift.Result<(), Swift.Error>",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Error",
- "printedName": "Swift.Error",
- "usr": "s:s5ErrorP"
- }
- ],
- "usr": "s:s6ResultO"
- }
- ]
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit0A0C22loadEngagementManifest2at10completiony10Foundation3URLVSg_ys6ResultOyyts5Error_pGctF",
- "mangledName": "$s13ApptentiveKit0A0C22loadEngagementManifest2at10completiony10Foundation3URLVSg_ys6ResultOyyts5Error_pGctF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "getInteractionList",
- "printedName": "getInteractionList(_:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "([ApptentiveKit.Apptentive.InteractionListItem]) -> ()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Array",
- "printedName": "[ApptentiveKit.Apptentive.InteractionListItem]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "InteractionListItem",
- "printedName": "ApptentiveKit.Apptentive.InteractionListItem",
- "usr": "s:13ApptentiveKit0A0C19InteractionListItemV"
- }
- ],
- "usr": "s:Sa"
- }
- ]
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit0A0C18getInteractionListyyySayAC0dE4ItemVGcF",
- "mangledName": "$s13ApptentiveKit0A0C18getInteractionListyyySayAC0dE4ItemVGcF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "presentInteraction",
- "printedName": "presentInteraction(with:completion:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- },
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(Swift.Result<(), Swift.Error>) -> ()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Result",
- "printedName": "Swift.Result<(), Swift.Error>",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Error",
- "printedName": "Swift.Error",
- "usr": "s:s5ErrorP"
- }
- ],
- "usr": "s:s6ResultO"
- }
- ]
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit0A0C18presentInteraction4with10completionySS_ys6ResultOyyts5Error_pGctF",
- "mangledName": "$s13ApptentiveKit0A0C18presentInteraction4with10completionySS_ys6ResultOyyts5Error_pGctF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "presentInteraction",
- "printedName": "presentInteraction(at:completion:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "URL",
- "printedName": "Foundation.URL",
- "usr": "s:10Foundation3URLV"
- },
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(Swift.Result<(), Swift.Error>) -> ()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Result",
- "printedName": "Swift.Result<(), Swift.Error>",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Error",
- "printedName": "Swift.Error",
- "usr": "s:s5ErrorP"
- }
- ],
- "usr": "s:s6ResultO"
- }
- ]
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit0A0C18presentInteraction2at10completiony10Foundation3URLV_ys6ResultOyyts5Error_pGctF",
- "mangledName": "$s13ApptentiveKit0A0C18presentInteraction2at10completiony10Foundation3URLV_ys6ResultOyyts5Error_pGctF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "TypeDecl",
- "name": "InteractionListItem",
- "printedName": "InteractionListItem",
- "children": [
- {
- "kind": "Var",
- "name": "id",
- "printedName": "id",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit0A0C19InteractionListItemV2idSSvp",
- "mangledName": "$s13ApptentiveKit0A0C19InteractionListItemV2idSSvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A0C19InteractionListItemV2idSSvg",
- "mangledName": "$s13ApptentiveKit0A0C19InteractionListItemV2idSSvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "displayName",
- "printedName": "displayName",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit0A0C19InteractionListItemV11displayNameSSvp",
- "mangledName": "$s13ApptentiveKit0A0C19InteractionListItemV11displayNameSSvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A0C19InteractionListItemV11displayNameSSvg",
- "mangledName": "$s13ApptentiveKit0A0C19InteractionListItemV11displayNameSSvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "typeName",
- "printedName": "typeName",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit0A0C19InteractionListItemV8typeNameSSvp",
- "mangledName": "$s13ApptentiveKit0A0C19InteractionListItemV8typeNameSSvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A0C19InteractionListItemV8typeNameSSvg",
- "mangledName": "$s13ApptentiveKit0A0C19InteractionListItemV8typeNameSSvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "get"
- }
- ]
- }
- ],
- "declKind": "Struct",
- "usr": "s:13ApptentiveKit0A0C19InteractionListItemV",
- "mangledName": "$s13ApptentiveKit0A0C19InteractionListItemV",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "isFromExtension": true
- },
- {
- "kind": "Function",
- "name": "getEventList",
- "printedName": "getEventList(_:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "([Swift.String]) -> ()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Array",
- "printedName": "[Swift.String]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sa"
- }
- ]
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit0A0C12getEventListyyySaySSGcF",
- "mangledName": "$s13ApptentiveKit0A0C12getEventListyyySaySSGcF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "register",
- "printedName": "register(with:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "ApptentiveConfiguration",
- "printedName": "ApptentiveKit.ApptentiveConfiguration",
- "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveConfiguration"
- }
- ],
- "declKind": "Func",
- "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(cm)registerWithConfiguration:",
- "mangledName": "$s13ApptentiveKit0A0C8register4withyAA0A13ConfigurationC_tFZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "deprecated": true,
- "objc_name": "registerWithConfiguration:",
- "declAttributes": [
- "Dynamic",
- "AccessControl",
- "ObjC",
- "Available"
- ],
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "register",
- "printedName": "register(with:completion:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "ApptentiveConfiguration",
- "printedName": "ApptentiveKit.ApptentiveConfiguration",
- "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveConfiguration"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "((Swift.Bool) -> ())?",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(Swift.Bool) -> ()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ]
- }
- ],
- "hasDefaultArg": true,
- "usr": "s:Sq"
- }
- ],
- "declKind": "Func",
- "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)registerWithConfiguration:completion:",
- "mangledName": "$s13ApptentiveKit0A0C8register4with10completionyAA0A13ConfigurationC_ySbcSgtF",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "objc_name": "registerWithConfiguration:completion:",
- "declAttributes": [
- "Dynamic",
- "AccessControl",
- "ObjC",
- "Available"
- ],
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "sharedConnection",
- "printedName": "sharedConnection()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Apptentive",
- "printedName": "ApptentiveKit.Apptentive",
- "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive"
- }
- ],
- "declKind": "Func",
- "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(cm)sharedConnection",
- "mangledName": "$s13ApptentiveKit0A0C16sharedConnectionACyFZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "deprecated": true,
- "declAttributes": [
- "Dynamic",
- "AccessControl",
- "ObjC",
- "Available"
- ],
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Var",
- "name": "appID",
- "printedName": "appID",
- "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@ApptentiveKit@objc(cs)Apptentive(py)appID",
- "mangledName": "$s13ApptentiveKit0A0C5appIDSSSgvp",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "declAttributes": [
- "Dynamic",
- "AccessControl",
- "ObjC",
- "Available"
- ],
- "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@ApptentiveKit@objc(cs)Apptentive(im)appID",
- "mangledName": "$s13ApptentiveKit0A0C5appIDSSSgvg",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Dynamic",
- "ObjC"
- ],
- "isFromExtension": true,
- "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:@CM@ApptentiveKit@objc(cs)Apptentive(im)setAppID:",
- "mangledName": "$s13ApptentiveKit0A0C5appIDSSSgvs",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Dynamic",
- "ObjC"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "showInfoButton",
- "printedName": "showInfoButton",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(py)showInfoButton",
- "mangledName": "$s13ApptentiveKit0A0C14showInfoButtonSbvp",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "declAttributes": [
- "Dynamic",
- "AccessControl",
- "ObjC",
- "Available"
- ],
- "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@ApptentiveKit@objc(cs)Apptentive(im)showInfoButton",
- "mangledName": "$s13ApptentiveKit0A0C14showInfoButtonSbvg",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Dynamic",
- "ObjC"
- ],
- "isFromExtension": true,
- "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:@CM@ApptentiveKit@objc(cs)Apptentive(im)setShowInfoButton:",
- "mangledName": "$s13ApptentiveKit0A0C14showInfoButtonSbvs",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Dynamic",
- "ObjC"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "surveyTermsAndConditions",
- "printedName": "surveyTermsAndConditions",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "ApptentiveKit.TermsAndConditions?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "TermsAndConditions",
- "printedName": "ApptentiveKit.TermsAndConditions",
- "usr": "c:@M@ApptentiveKit@objc(cs)TermsAndConditions"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(py)surveyTermsAndConditions",
- "mangledName": "$s13ApptentiveKit0A0C24surveyTermsAndConditionsAA0deF0CSgvp",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "declAttributes": [
- "Dynamic",
- "AccessControl",
- "ObjC",
- "Available"
- ],
- "isFromExtension": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "ApptentiveKit.TermsAndConditions?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "TermsAndConditions",
- "printedName": "ApptentiveKit.TermsAndConditions",
- "usr": "c:@M@ApptentiveKit@objc(cs)TermsAndConditions"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)surveyTermsAndConditions",
- "mangledName": "$s13ApptentiveKit0A0C24surveyTermsAndConditionsAA0deF0CSgvg",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Dynamic",
- "ObjC"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "ApptentiveKit.TermsAndConditions?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "TermsAndConditions",
- "printedName": "ApptentiveKit.TermsAndConditions",
- "usr": "c:@M@ApptentiveKit@objc(cs)TermsAndConditions"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)setSurveyTermsAndConditions:",
- "mangledName": "$s13ApptentiveKit0A0C24surveyTermsAndConditionsAA0deF0CSgvs",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Dynamic",
- "ObjC"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveKey",
- "printedName": "apptentiveKey",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(py)apptentiveKey",
- "mangledName": "$s13ApptentiveKit0A0C13apptentiveKeySSvp",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "declAttributes": [
- "Dynamic",
- "AccessControl",
- "ObjC",
- "Available"
- ],
- "isFromExtension": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)apptentiveKey",
- "mangledName": "$s13ApptentiveKit0A0C13apptentiveKeySSvg",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Dynamic",
- "ObjC"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveSignature",
- "printedName": "apptentiveSignature",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(py)apptentiveSignature",
- "mangledName": "$s13ApptentiveKit0A0C19apptentiveSignatureSSvp",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "declAttributes": [
- "Dynamic",
- "AccessControl",
- "ObjC",
- "Available"
- ],
- "isFromExtension": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)apptentiveSignature",
- "mangledName": "$s13ApptentiveKit0A0C19apptentiveSignatureSSvg",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Dynamic",
- "ObjC"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Function",
- "name": "engage",
- "printedName": "engage(_:fromViewController:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "UIKit.UIViewController?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIViewController",
- "printedName": "UIKit.UIViewController",
- "usr": "c:objc(cs)UIViewController"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Func",
- "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)engage:fromViewController:",
- "mangledName": "$s13ApptentiveKit0A0C6engage_18fromViewControllerySS_So06UIViewF0CSgtF",
- "moduleName": "ApptentiveKit",
- "objc_name": "engage:fromViewController:",
- "declAttributes": [
- "Dynamic",
- "AccessControl",
- "ObjC"
- ],
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "engage",
- "printedName": "engage(_:fromViewController:completion:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "UIKit.UIViewController?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIViewController",
- "printedName": "UIKit.UIViewController",
- "usr": "c:objc(cs)UIViewController"
- }
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "((Swift.Bool) -> ())?",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(Swift.Bool) -> ()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ]
- }
- ],
- "hasDefaultArg": true,
- "usr": "s:Sq"
- }
- ],
- "declKind": "Func",
- "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)engage:fromViewController:completion:",
- "mangledName": "$s13ApptentiveKit0A0C6engage_18fromViewController10completionySS_So06UIViewF0CSgySbcSgtF",
- "moduleName": "ApptentiveKit",
- "objc_name": "engage:fromViewController:completion:",
- "declAttributes": [
- "Dynamic",
- "AccessControl",
- "ObjC"
- ],
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "engage",
- "printedName": "engage(event:withCustomData:from:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "[Swift.AnyHashable : Any]?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Dictionary",
- "printedName": "[Swift.AnyHashable : Any]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "AnyHashable",
- "printedName": "Swift.AnyHashable",
- "usr": "s:s11AnyHashableV"
- },
- {
- "kind": "TypeNominal",
- "name": "ProtocolComposition",
- "printedName": "Any"
- }
- ],
- "usr": "s:SD"
- }
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "UIKit.UIViewController?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIViewController",
- "printedName": "UIKit.UIViewController",
- "usr": "c:objc(cs)UIViewController"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Func",
- "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)engage:withCustomData:fromViewController:",
- "mangledName": "$s13ApptentiveKit0A0C6engage5event14withCustomData4fromySS_SDys11AnyHashableVypGSgSo16UIViewControllerCSgtF",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "objc_name": "engage:withCustomData:fromViewController:",
- "declAttributes": [
- "Dynamic",
- "AccessControl",
- "ObjC",
- "Available"
- ],
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "engage",
- "printedName": "engage(event:withCustomData:from:completion:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "[Swift.AnyHashable : Any]?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Dictionary",
- "printedName": "[Swift.AnyHashable : Any]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "AnyHashable",
- "printedName": "Swift.AnyHashable",
- "usr": "s:s11AnyHashableV"
- },
- {
- "kind": "TypeNominal",
- "name": "ProtocolComposition",
- "printedName": "Any"
- }
- ],
- "usr": "s:SD"
- }
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "UIKit.UIViewController?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIViewController",
- "printedName": "UIKit.UIViewController",
- "usr": "c:objc(cs)UIViewController"
- }
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "((Swift.Bool) -> ())?",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(Swift.Bool) -> ()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ]
- }
- ],
- "hasDefaultArg": true,
- "usr": "s:Sq"
- }
- ],
- "declKind": "Func",
- "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)engage:withCustomData:fromViewController:completion:",
- "mangledName": "$s13ApptentiveKit0A0C6engage5event14withCustomData4from10completionySS_SDys11AnyHashableVypGSgSo16UIViewControllerCSgySbcSgtF",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "objc_name": "engage:withCustomData:fromViewController:completion:",
- "declAttributes": [
- "Dynamic",
- "AccessControl",
- "ObjC",
- "Available"
- ],
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "engage",
- "printedName": "engage(event:withCustomData:withExtendedData:from:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "[Swift.AnyHashable : Any]?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Dictionary",
- "printedName": "[Swift.AnyHashable : Any]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "AnyHashable",
- "printedName": "Swift.AnyHashable",
- "usr": "s:s11AnyHashableV"
- },
- {
- "kind": "TypeNominal",
- "name": "ProtocolComposition",
- "printedName": "Any"
- }
- ],
- "usr": "s:SD"
- }
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "[[Swift.AnyHashable : Any]]?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Array",
- "printedName": "[[Swift.AnyHashable : Any]]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Dictionary",
- "printedName": "[Swift.AnyHashable : Any]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "AnyHashable",
- "printedName": "Swift.AnyHashable",
- "usr": "s:s11AnyHashableV"
- },
- {
- "kind": "TypeNominal",
- "name": "ProtocolComposition",
- "printedName": "Any"
- }
- ],
- "usr": "s:SD"
- }
- ],
- "usr": "s:Sa"
- }
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "UIKit.UIViewController?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIViewController",
- "printedName": "UIKit.UIViewController",
- "usr": "c:objc(cs)UIViewController"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Func",
- "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)engage:withCustomData:withExtendedData:fromViewController:",
- "mangledName": "$s13ApptentiveKit0A0C6engage5event14withCustomData0e8ExtendedG04fromySS_SDys11AnyHashableVypGSgSayAKGSgSo16UIViewControllerCSgtF",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "objc_name": "engage:withCustomData:withExtendedData:fromViewController:",
- "declAttributes": [
- "Dynamic",
- "AccessControl",
- "ObjC",
- "Available"
- ],
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "engage",
- "printedName": "engage(event:withCustomData:withExtendedData:from:completion:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "[Swift.AnyHashable : Any]?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Dictionary",
- "printedName": "[Swift.AnyHashable : Any]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "AnyHashable",
- "printedName": "Swift.AnyHashable",
- "usr": "s:s11AnyHashableV"
- },
- {
- "kind": "TypeNominal",
- "name": "ProtocolComposition",
- "printedName": "Any"
- }
- ],
- "usr": "s:SD"
- }
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "[[Swift.AnyHashable : Any]]?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Array",
- "printedName": "[[Swift.AnyHashable : Any]]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Dictionary",
- "printedName": "[Swift.AnyHashable : Any]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "AnyHashable",
- "printedName": "Swift.AnyHashable",
- "usr": "s:s11AnyHashableV"
- },
- {
- "kind": "TypeNominal",
- "name": "ProtocolComposition",
- "printedName": "Any"
- }
- ],
- "usr": "s:SD"
- }
- ],
- "usr": "s:Sa"
- }
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "UIKit.UIViewController?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIViewController",
- "printedName": "UIKit.UIViewController",
- "usr": "c:objc(cs)UIViewController"
- }
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "((Swift.Bool) -> ())?",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(Swift.Bool) -> ()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ]
- }
- ],
- "hasDefaultArg": true,
- "usr": "s:Sq"
- }
- ],
- "declKind": "Func",
- "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)engage:withCustomData:withExtendedData:fromViewController:completion:",
- "mangledName": "$s13ApptentiveKit0A0C6engage5event14withCustomData0e8ExtendedG04from10completionySS_SDys11AnyHashableVypGSgSayALGSgSo16UIViewControllerCSgySbcSgtF",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "objc_name": "engage:withCustomData:withExtendedData:fromViewController:completion:",
- "declAttributes": [
- "Dynamic",
- "AccessControl",
- "ObjC",
- "Available"
- ],
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "queryCanShowInteraction",
- "printedName": "queryCanShowInteraction(forEvent:completion:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- },
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(Swift.Bool) -> ()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ]
- }
- ],
- "declKind": "Func",
- "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)queryCanShowInteractionForEvent:completion:",
- "mangledName": "$s13ApptentiveKit0A0C23queryCanShowInteraction8forEvent10completionySS_ySbctF",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "objc_name": "queryCanShowInteractionForEvent:completion:",
- "declAttributes": [
- "Dynamic",
- "AccessControl",
- "ObjC",
- "Available"
- ],
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "extendedData",
- "printedName": "extendedData(date:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Dictionary",
- "printedName": "[Swift.AnyHashable : Any]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "AnyHashable",
- "printedName": "Swift.AnyHashable",
- "usr": "s:s11AnyHashableV"
- },
- {
- "kind": "TypeNominal",
- "name": "ProtocolComposition",
- "printedName": "Any"
- }
- ],
- "usr": "s:SD"
- },
- {
- "kind": "TypeNominal",
- "name": "Date",
- "printedName": "Foundation.Date",
- "usr": "s:10Foundation4DateV"
- }
- ],
- "declKind": "Func",
- "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(cm)extendedDataDate:",
- "mangledName": "$s13ApptentiveKit0A0C12extendedData4dateSDys11AnyHashableVypG10Foundation4DateV_tFZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "deprecated": true,
- "objc_name": "extendedDataDate:",
- "declAttributes": [
- "Dynamic",
- "AccessControl",
- "ObjC",
- "Available"
- ],
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "extendedData",
- "printedName": "extendedData(latitude:longitude:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Dictionary",
- "printedName": "[Swift.AnyHashable : Any]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "AnyHashable",
- "printedName": "Swift.AnyHashable",
- "usr": "s:s11AnyHashableV"
- },
- {
- "kind": "TypeNominal",
- "name": "ProtocolComposition",
- "printedName": "Any"
- }
- ],
- "usr": "s:SD"
- },
- {
- "kind": "TypeNominal",
- "name": "Double",
- "printedName": "Swift.Double",
- "usr": "s:Sd"
- },
- {
- "kind": "TypeNominal",
- "name": "Double",
- "printedName": "Swift.Double",
- "usr": "s:Sd"
- }
- ],
- "declKind": "Func",
- "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(cm)extendedDataLocationForLatitude:longitude:",
- "mangledName": "$s13ApptentiveKit0A0C12extendedData8latitude9longitudeSDys11AnyHashableVypGSd_SdtFZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "deprecated": true,
- "objc_name": "extendedDataLocationForLatitude:longitude:",
- "declAttributes": [
- "Dynamic",
- "AccessControl",
- "ObjC",
- "Available"
- ],
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "extendedData",
- "printedName": "extendedData(transactionID:affiliation:revenue:shipping:tax:currency:commerceItems:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Dictionary",
- "printedName": "[Swift.AnyHashable : Any]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "AnyHashable",
- "printedName": "Swift.AnyHashable",
- "usr": "s:s11AnyHashableV"
- },
- {
- "kind": "TypeNominal",
- "name": "ProtocolComposition",
- "printedName": "Any"
- }
- ],
- "usr": "s:SD"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Foundation.NSNumber?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "NSNumber",
- "printedName": "Foundation.NSNumber",
- "usr": "c:objc(cs)NSNumber"
- }
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Foundation.NSNumber?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "NSNumber",
- "printedName": "Foundation.NSNumber",
- "usr": "c:objc(cs)NSNumber"
- }
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Foundation.NSNumber?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "NSNumber",
- "printedName": "Foundation.NSNumber",
- "usr": "c:objc(cs)NSNumber"
- }
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "[[Swift.AnyHashable : Any]]?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Array",
- "printedName": "[[Swift.AnyHashable : Any]]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Dictionary",
- "printedName": "[Swift.AnyHashable : Any]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "AnyHashable",
- "printedName": "Swift.AnyHashable",
- "usr": "s:s11AnyHashableV"
- },
- {
- "kind": "TypeNominal",
- "name": "ProtocolComposition",
- "printedName": "Any"
- }
- ],
- "usr": "s:SD"
- }
- ],
- "usr": "s:Sa"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Func",
- "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(cm)extendedDataCommerceWithTransactionID:affiliation:revenue:shipping:tax:currency:commerceItems:",
- "mangledName": "$s13ApptentiveKit0A0C12extendedData13transactionID11affiliation7revenue8shipping3tax8currency13commerceItemsSDys11AnyHashableVypGSSSg_AOSo8NSNumberCSgA2rOSayANGSgtFZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "deprecated": true,
- "objc_name": "extendedDataCommerceWithTransactionID:affiliation:revenue:shipping:tax:currency:commerceItems:",
- "declAttributes": [
- "Dynamic",
- "AccessControl",
- "ObjC",
- "Available"
- ],
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "extendedData",
- "printedName": "extendedData(itemID:name:category:price:quantity:currency:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Dictionary",
- "printedName": "[Swift.AnyHashable : Any]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "AnyHashable",
- "printedName": "Swift.AnyHashable",
- "usr": "s:s11AnyHashableV"
- },
- {
- "kind": "TypeNominal",
- "name": "ProtocolComposition",
- "printedName": "Any"
- }
- ],
- "usr": "s:SD"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Foundation.NSNumber?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "NSNumber",
- "printedName": "Foundation.NSNumber",
- "usr": "c:objc(cs)NSNumber"
- }
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Foundation.NSNumber?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "NSNumber",
- "printedName": "Foundation.NSNumber",
- "usr": "c:objc(cs)NSNumber"
- }
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Func",
- "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(cm)extendedDataCommerceItemWithItemID:name:category:price:quantity:currency:",
- "mangledName": "$s13ApptentiveKit0A0C12extendedData6itemID4name8category5price8quantity8currencySDys11AnyHashableVypGSSSg_A2NSo8NSNumberCSgAqNtFZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "deprecated": true,
- "objc_name": "extendedDataCommerceItemWithItemID:name:category:price:quantity:currency:",
- "declAttributes": [
- "Dynamic",
- "AccessControl",
- "ObjC",
- "Available"
- ],
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "queryCanShowMessageCenter",
- "printedName": "queryCanShowMessageCenter(completion:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(Swift.Bool) -> ()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ]
- }
- ],
- "declKind": "Func",
- "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)queryCanShowMessageCenterWithCompletion:",
- "mangledName": "$s13ApptentiveKit0A0C25queryCanShowMessageCenter10completionyySbc_tF",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "objc_name": "queryCanShowMessageCenterWithCompletion:",
- "declAttributes": [
- "Dynamic",
- "AccessControl",
- "ObjC",
- "Available"
- ],
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "presentMessageCenterCompat",
- "printedName": "presentMessageCenterCompat(from:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "UIKit.UIViewController?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIViewController",
- "printedName": "UIKit.UIViewController",
- "usr": "c:objc(cs)UIViewController"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Func",
- "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)presentMessageCenterFromViewController:",
- "mangledName": "$s13ApptentiveKit0A0C26presentMessageCenterCompat4fromySo16UIViewControllerCSg_tF",
- "moduleName": "ApptentiveKit",
- "objc_name": "presentMessageCenterFromViewController:",
- "declAttributes": [
- "Dynamic",
- "AccessControl",
- "ObjC"
- ],
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "presentMessageCenterCompat",
- "printedName": "presentMessageCenterCompat(from:completion:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "UIKit.UIViewController?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIViewController",
- "printedName": "UIKit.UIViewController",
- "usr": "c:objc(cs)UIViewController"
- }
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "((Swift.Bool) -> ())?",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(Swift.Bool) -> ()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ]
- }
- ],
- "hasDefaultArg": true,
- "usr": "s:Sq"
- }
- ],
- "declKind": "Func",
- "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)presentMessageCenterFromViewController:completion:",
- "mangledName": "$s13ApptentiveKit0A0C26presentMessageCenterCompat4from10completionySo16UIViewControllerCSg_ySbcSgtF",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "objc_name": "presentMessageCenterFromViewController:completion:",
- "declAttributes": [
- "Dynamic",
- "AccessControl",
- "ObjC",
- "Available"
- ],
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "presentMessageCenterCompat",
- "printedName": "presentMessageCenterCompat(from:withCustomData:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "UIKit.UIViewController?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIViewController",
- "printedName": "UIKit.UIViewController",
- "usr": "c:objc(cs)UIViewController"
- }
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "[Swift.AnyHashable : Any]?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Dictionary",
- "printedName": "[Swift.AnyHashable : Any]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "AnyHashable",
- "printedName": "Swift.AnyHashable",
- "usr": "s:s11AnyHashableV"
- },
- {
- "kind": "TypeNominal",
- "name": "ProtocolComposition",
- "printedName": "Any"
- }
- ],
- "usr": "s:SD"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Func",
- "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)presentMessageCenterFromViewController:withCustomData:",
- "mangledName": "$s13ApptentiveKit0A0C26presentMessageCenterCompat4from14withCustomDataySo16UIViewControllerCSg_SDys11AnyHashableVypGSgtF",
- "moduleName": "ApptentiveKit",
- "objc_name": "presentMessageCenterFromViewController:withCustomData:",
- "declAttributes": [
- "Dynamic",
- "AccessControl",
- "ObjC"
- ],
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "presentMessageCenterCompat",
- "printedName": "presentMessageCenterCompat(from:withCustomData:completion:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "UIKit.UIViewController?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIViewController",
- "printedName": "UIKit.UIViewController",
- "usr": "c:objc(cs)UIViewController"
- }
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "[Swift.AnyHashable : Any]?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Dictionary",
- "printedName": "[Swift.AnyHashable : Any]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "AnyHashable",
- "printedName": "Swift.AnyHashable",
- "usr": "s:s11AnyHashableV"
- },
- {
- "kind": "TypeNominal",
- "name": "ProtocolComposition",
- "printedName": "Any"
- }
- ],
- "usr": "s:SD"
- }
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "((Swift.Bool) -> ())?",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(Swift.Bool) -> ()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ]
- }
- ],
- "hasDefaultArg": true,
- "usr": "s:Sq"
- }
- ],
- "declKind": "Func",
- "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)presentMessageCenterFromViewController:withCustomData:completion:",
- "mangledName": "$s13ApptentiveKit0A0C26presentMessageCenterCompat4from14withCustomData10completionySo16UIViewControllerCSg_SDys11AnyHashableVypGSgySbcSgtF",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "objc_name": "presentMessageCenterFromViewController:withCustomData:completion:",
- "declAttributes": [
- "Dynamic",
- "AccessControl",
- "ObjC",
- "Available"
- ],
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "dismissMessageCenter",
- "printedName": "dismissMessageCenter(animated:completion:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "(() -> ())?",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "() -> ()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ]
- }
- ],
- "hasDefaultArg": true,
- "usr": "s:Sq"
- }
- ],
- "declKind": "Func",
- "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)dismissMessageCenterWithAnimated:completion:",
- "mangledName": "$s13ApptentiveKit0A0C20dismissMessageCenter8animated10completionySb_yycSgtF",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "objc_name": "dismissMessageCenterWithAnimated:completion:",
- "declAttributes": [
- "Dynamic",
- "AccessControl",
- "ObjC",
- "Available"
- ],
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "unreadMessageCountAccessoryView",
- "printedName": "unreadMessageCountAccessoryView(apptentiveHeart:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIView",
- "printedName": "UIKit.UIView",
- "usr": "c:objc(cs)UIView"
- },
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ],
- "declKind": "Func",
- "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)unreadMessageCountAccessoryViewWithApptentiveHeart:",
- "mangledName": "$s13ApptentiveKit0A0C31unreadMessageCountAccessoryView15apptentiveHeartSo6UIViewCSb_tF",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "objc_name": "unreadMessageCountAccessoryViewWithApptentiveHeart:",
- "declAttributes": [
- "Dynamic",
- "AccessControl",
- "ObjC",
- "Available"
- ],
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "openAppStore",
- "printedName": "openAppStore()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Func",
- "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)openAppStore",
- "mangledName": "$s13ApptentiveKit0A0C12openAppStoreyyF",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "declAttributes": [
- "Dynamic",
- "AccessControl",
- "ObjC",
- "Available"
- ],
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "setPushProvider",
- "printedName": "setPushProvider(_:deviceToken:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "ApptentivePushProvider",
- "printedName": "ApptentiveKit.ApptentivePushProvider",
- "usr": "c:@M@ApptentiveKit@E@ApptentivePushProvider"
- },
- {
- "kind": "TypeNominal",
- "name": "Data",
- "printedName": "Foundation.Data",
- "usr": "s:10Foundation4DataV"
- }
- ],
- "declKind": "Func",
- "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)setPushProvider:deviceToken:",
- "mangledName": "$s13ApptentiveKit0A0C15setPushProvider_11deviceTokenyAA0adE0O_10Foundation4DataVtF",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "declAttributes": [
- "Dynamic",
- "AccessControl",
- "ObjC",
- "Available"
- ],
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "didReceveUserNotificationResponse",
- "printedName": "didReceveUserNotificationResponse(_:from:withCompletionHandler:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- },
- {
- "kind": "TypeNominal",
- "name": "UNNotificationResponse",
- "printedName": "UserNotifications.UNNotificationResponse",
- "usr": "c:objc(cs)UNNotificationResponse"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "UIKit.UIViewController?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIViewController",
- "printedName": "UIKit.UIViewController",
- "usr": "c:objc(cs)UIViewController"
- }
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "() -> ()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ]
- }
- ],
- "declKind": "Func",
- "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)didReceveUserNotificationResponse:from:withCompletionHandler:",
- "mangledName": "$s13ApptentiveKit0A0C33didReceveUserNotificationResponse_4from21withCompletionHandlerSbSo014UNNotificationG0C_So16UIViewControllerCSgyyctF",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "declAttributes": [
- "Dynamic",
- "AccessControl",
- "ObjC",
- "Available"
- ],
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Var",
- "name": "advertisingIdentifier",
- "printedName": "advertisingIdentifier",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Foundation.UUID?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UUID",
- "printedName": "Foundation.UUID",
- "usr": "s:10Foundation4UUIDV"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(py)advertisingIdentifier",
- "mangledName": "$s13ApptentiveKit0A0C21advertisingIdentifier10Foundation4UUIDVSgvp",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "declAttributes": [
- "Dynamic",
- "AccessControl",
- "ObjC",
- "Available"
- ],
- "isFromExtension": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Foundation.UUID?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UUID",
- "printedName": "Foundation.UUID",
- "usr": "s:10Foundation4UUIDV"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)advertisingIdentifier",
- "mangledName": "$s13ApptentiveKit0A0C21advertisingIdentifier10Foundation4UUIDVSgvg",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Dynamic",
- "ObjC"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Foundation.UUID?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UUID",
- "printedName": "Foundation.UUID",
- "usr": "s:10Foundation4UUIDV"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)setAdvertisingIdentifier:",
- "mangledName": "$s13ApptentiveKit0A0C21advertisingIdentifier10Foundation4UUIDVSgvs",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Dynamic",
- "ObjC"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "mParticleId",
- "printedName": "mParticleId",
- "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@ApptentiveKit@objc(cs)Apptentive(py)mParticleId",
- "mangledName": "$s13ApptentiveKit0A0C11mParticleIdSSSgvp",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "declAttributes": [
- "Dynamic",
- "AccessControl",
- "ObjC",
- "Available"
- ],
- "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@ApptentiveKit@objc(cs)Apptentive(im)mParticleId",
- "mangledName": "$s13ApptentiveKit0A0C11mParticleIdSSSgvg",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Dynamic",
- "ObjC"
- ],
- "isFromExtension": true,
- "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:@CM@ApptentiveKit@objc(cs)Apptentive(im)setMParticleId:",
- "mangledName": "$s13ApptentiveKit0A0C11mParticleIdSSSgvs",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Dynamic",
- "ObjC"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- }
- ]
- },
- {
- "kind": "Function",
- "name": "removeCustomPersonData",
- "printedName": "removeCustomPersonData(withKey:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Func",
- "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)removeCustomPersonDataWithKey:",
- "mangledName": "$s13ApptentiveKit0A0C22removeCustomPersonData7withKeyySS_tF",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "objc_name": "removeCustomPersonDataWithKey:",
- "declAttributes": [
- "Dynamic",
- "AccessControl",
- "ObjC",
- "Available"
- ],
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "removeCustomDeviceData",
- "printedName": "removeCustomDeviceData(withKey:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Func",
- "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)removeCustomDeviceDataWithKey:",
- "mangledName": "$s13ApptentiveKit0A0C22removeCustomDeviceData7withKeyySS_tF",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "objc_name": "removeCustomDeviceDataWithKey:",
- "declAttributes": [
- "Dynamic",
- "AccessControl",
- "ObjC",
- "Available"
- ],
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "addCustomDeviceData",
- "printedName": "addCustomDeviceData(_:withKey:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Func",
- "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)addCustomDeviceDataString:withKey:",
- "mangledName": "$s13ApptentiveKit0A0C19addCustomDeviceData_7withKeyySS_SStF",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "objc_name": "addCustomDeviceDataString:withKey:",
- "declAttributes": [
- "Dynamic",
- "AccessControl",
- "ObjC",
- "Available"
- ],
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "addCustomDeviceData",
- "printedName": "addCustomDeviceData(_:withKey:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "NSNumber",
- "printedName": "Foundation.NSNumber",
- "usr": "c:objc(cs)NSNumber"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Func",
- "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)addCustomDeviceDataNumber:withKey:",
- "mangledName": "$s13ApptentiveKit0A0C19addCustomDeviceData_7withKeyySo8NSNumberC_SStF",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "objc_name": "addCustomDeviceDataNumber:withKey:",
- "declAttributes": [
- "Dynamic",
- "AccessControl",
- "ObjC",
- "Available"
- ],
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "addCustomDeviceData",
- "printedName": "addCustomDeviceData(_:withKey:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Func",
- "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)addCustomDeviceDataBool:withKey:",
- "mangledName": "$s13ApptentiveKit0A0C19addCustomDeviceData_7withKeyySb_SStF",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "objc_name": "addCustomDeviceDataBool:withKey:",
- "declAttributes": [
- "Dynamic",
- "AccessControl",
- "ObjC",
- "Available"
- ],
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "addCustomPersonData",
- "printedName": "addCustomPersonData(_:withKey:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Func",
- "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)addCustomPersonDataString:withKey:",
- "mangledName": "$s13ApptentiveKit0A0C19addCustomPersonData_7withKeyySS_SStF",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "objc_name": "addCustomPersonDataString:withKey:",
- "declAttributes": [
- "Dynamic",
- "AccessControl",
- "ObjC",
- "Available"
- ],
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "addCustomPersonData",
- "printedName": "addCustomPersonData(_:withKey:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "NSNumber",
- "printedName": "Foundation.NSNumber",
- "usr": "c:objc(cs)NSNumber"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Func",
- "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)addCustomPersonDataNumber:withKey:",
- "mangledName": "$s13ApptentiveKit0A0C19addCustomPersonData_7withKeyySo8NSNumberC_SStF",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "objc_name": "addCustomPersonDataNumber:withKey:",
- "declAttributes": [
- "Dynamic",
- "AccessControl",
- "ObjC",
- "Available"
- ],
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "addCustomPersonData",
- "printedName": "addCustomPersonData(_:withKey:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Func",
- "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)addCustomPersonDataBool:withKey:",
- "mangledName": "$s13ApptentiveKit0A0C19addCustomPersonData_7withKeyySb_SStF",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "objc_name": "addCustomPersonDataBool:withKey:",
- "declAttributes": [
- "Dynamic",
- "AccessControl",
- "ObjC",
- "Available"
- ],
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Var",
- "name": "styleSheet",
- "printedName": "styleSheet",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Any?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ProtocolComposition",
- "printedName": "Any"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(py)styleSheet",
- "mangledName": "$s13ApptentiveKit0A0C10styleSheetypSgvp",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "declAttributes": [
- "Dynamic",
- "AccessControl",
- "ObjC",
- "Available"
- ],
- "isFromExtension": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Any?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ProtocolComposition",
- "printedName": "Any"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)styleSheet",
- "mangledName": "$s13ApptentiveKit0A0C10styleSheetypSgvg",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Dynamic",
- "ObjC"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Any?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ProtocolComposition",
- "printedName": "Any"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)setStyleSheet:",
- "mangledName": "$s13ApptentiveKit0A0C10styleSheetypSgvs",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Dynamic",
- "ObjC"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- }
- ]
- },
- {
- "kind": "Function",
- "name": "checkSDKConfiguration",
- "printedName": "checkSDKConfiguration()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Func",
- "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)checkSDKConfiguration",
- "mangledName": "$s13ApptentiveKit0A0C21checkSDKConfigurationyyF",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "declAttributes": [
- "Dynamic",
- "AccessControl",
- "ObjC",
- "Available"
- ],
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "logIn",
- "printedName": "logIn(withToken:completion:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- },
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(Swift.Bool, Swift.Error) -> ()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Tuple",
- "printedName": "(Swift.Bool, Swift.Error)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- },
- {
- "kind": "TypeNominal",
- "name": "Error",
- "printedName": "Swift.Error",
- "usr": "s:s5ErrorP"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "Func",
- "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)logInWithToken:completion:",
- "mangledName": "$s13ApptentiveKit0A0C5logIn9withToken10completionySS_ySb_s5Error_ptctF",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "objc_name": "logInWithToken:completion:",
- "declAttributes": [
- "Dynamic",
- "AccessControl",
- "ObjC",
- "Available"
- ],
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "logOut",
- "printedName": "logOut()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Func",
- "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)logOut",
- "mangledName": "$s13ApptentiveKit0A0C6logOutyyF",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "declAttributes": [
- "Dynamic",
- "AccessControl",
- "ObjC",
- "Available"
- ],
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Var",
- "name": "authenticationFailureCallback",
- "printedName": "authenticationFailureCallback",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "((ApptentiveKit.ApptentiveAuthenticationFailureReason, Swift.String) -> ())?",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.ApptentiveAuthenticationFailureReason, Swift.String) -> ()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Tuple",
- "printedName": "(ApptentiveKit.ApptentiveAuthenticationFailureReason, Swift.String)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveAuthenticationFailureReason",
- "printedName": "ApptentiveKit.ApptentiveAuthenticationFailureReason",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveAuthenticationFailureReason"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ]
- }
- ]
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(py)authenticationFailureCallback",
- "mangledName": "$s13ApptentiveKit0A0C29authenticationFailureCallbackyAA0a14AuthenticationD6ReasonO_SStcSgvp",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "declAttributes": [
- "Dynamic",
- "AccessControl",
- "ObjC",
- "Available"
- ],
- "isFromExtension": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "((ApptentiveKit.ApptentiveAuthenticationFailureReason, Swift.String) -> ())?",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.ApptentiveAuthenticationFailureReason, Swift.String) -> ()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Tuple",
- "printedName": "(ApptentiveKit.ApptentiveAuthenticationFailureReason, Swift.String)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveAuthenticationFailureReason",
- "printedName": "ApptentiveKit.ApptentiveAuthenticationFailureReason",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveAuthenticationFailureReason"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ]
- }
- ]
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)authenticationFailureCallback",
- "mangledName": "$s13ApptentiveKit0A0C29authenticationFailureCallbackyAA0a14AuthenticationD6ReasonO_SStcSgvg",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Dynamic",
- "ObjC"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "((ApptentiveKit.ApptentiveAuthenticationFailureReason, Swift.String) -> ())?",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.ApptentiveAuthenticationFailureReason, Swift.String) -> ()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Tuple",
- "printedName": "(ApptentiveKit.ApptentiveAuthenticationFailureReason, Swift.String)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveAuthenticationFailureReason",
- "printedName": "ApptentiveKit.ApptentiveAuthenticationFailureReason",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveAuthenticationFailureReason"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ]
- }
- ]
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)setAuthenticationFailureCallback:",
- "mangledName": "$s13ApptentiveKit0A0C29authenticationFailureCallbackyAA0a14AuthenticationD6ReasonO_SStcSgvs",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Dynamic",
- "ObjC"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "preInteractionCallback",
- "printedName": "preInteractionCallback",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "((Swift.String, [Swift.AnyHashable : Any]?) -> Swift.Bool)?",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(Swift.String, [Swift.AnyHashable : Any]?) -> Swift.Bool",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- },
- {
- "kind": "TypeNominal",
- "name": "Tuple",
- "printedName": "(Swift.String, [Swift.AnyHashable : Any]?)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "[Swift.AnyHashable : Any]?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Dictionary",
- "printedName": "[Swift.AnyHashable : Any]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "AnyHashable",
- "printedName": "Swift.AnyHashable",
- "usr": "s:s11AnyHashableV"
- },
- {
- "kind": "TypeNominal",
- "name": "ProtocolComposition",
- "printedName": "Any"
- }
- ],
- "usr": "s:SD"
- }
- ],
- "usr": "s:Sq"
- }
- ]
- }
- ]
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(py)preInteractionCallback",
- "mangledName": "$s13ApptentiveKit0A0C22preInteractionCallbackSbSS_SDys11AnyHashableVypGSgtcSgvp",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "declAttributes": [
- "Dynamic",
- "AccessControl",
- "ObjC",
- "Available"
- ],
- "isFromExtension": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "((Swift.String, [Swift.AnyHashable : Any]?) -> Swift.Bool)?",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(Swift.String, [Swift.AnyHashable : Any]?) -> Swift.Bool",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- },
- {
- "kind": "TypeNominal",
- "name": "Tuple",
- "printedName": "(Swift.String, [Swift.AnyHashable : Any]?)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "[Swift.AnyHashable : Any]?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Dictionary",
- "printedName": "[Swift.AnyHashable : Any]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "AnyHashable",
- "printedName": "Swift.AnyHashable",
- "usr": "s:s11AnyHashableV"
- },
- {
- "kind": "TypeNominal",
- "name": "ProtocolComposition",
- "printedName": "Any"
- }
- ],
- "usr": "s:SD"
- }
- ],
- "usr": "s:Sq"
- }
- ]
- }
- ]
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)preInteractionCallback",
- "mangledName": "$s13ApptentiveKit0A0C22preInteractionCallbackSbSS_SDys11AnyHashableVypGSgtcSgvg",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Dynamic",
- "ObjC"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "((Swift.String, [Swift.AnyHashable : Any]?) -> Swift.Bool)?",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(Swift.String, [Swift.AnyHashable : Any]?) -> Swift.Bool",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- },
- {
- "kind": "TypeNominal",
- "name": "Tuple",
- "printedName": "(Swift.String, [Swift.AnyHashable : Any]?)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "[Swift.AnyHashable : Any]?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Dictionary",
- "printedName": "[Swift.AnyHashable : Any]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "AnyHashable",
- "printedName": "Swift.AnyHashable",
- "usr": "s:s11AnyHashableV"
- },
- {
- "kind": "TypeNominal",
- "name": "ProtocolComposition",
- "printedName": "Any"
- }
- ],
- "usr": "s:SD"
- }
- ],
- "usr": "s:Sq"
- }
- ]
- }
- ]
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)setPreInteractionCallback:",
- "mangledName": "$s13ApptentiveKit0A0C22preInteractionCallbackSbSS_SDys11AnyHashableVypGSgtcSgvs",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Dynamic",
- "ObjC"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- }
- ]
- },
- {
- "kind": "Function",
- "name": "updateToken",
- "printedName": "updateToken(_:completion:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "((Swift.Bool) -> ())?",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(Swift.Bool) -> ()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ]
- }
- ],
- "hasDefaultArg": true,
- "usr": "s:Sq"
- }
- ],
- "declKind": "Func",
- "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)updateToken:completion:",
- "mangledName": "$s13ApptentiveKit0A0C11updateToken_10completionySS_ySbcSgtF",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "declAttributes": [
- "Dynamic",
- "AccessControl",
- "ObjC",
- "Available"
- ],
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Var",
- "name": "logLevel",
- "printedName": "logLevel",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveLogLevel",
- "printedName": "ApptentiveKit.ApptentiveLogLevel",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveLogLevel"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(py)logLevel",
- "mangledName": "$s13ApptentiveKit0A0C8logLevelAA0a3LogD0Ovp",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "declAttributes": [
- "Dynamic",
- "AccessControl",
- "ObjC",
- "Available"
- ],
- "isFromExtension": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveLogLevel",
- "printedName": "ApptentiveKit.ApptentiveLogLevel",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveLogLevel"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)logLevel",
- "mangledName": "$s13ApptentiveKit0A0C8logLevelAA0a3LogD0Ovg",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Dynamic",
- "ObjC"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "ApptentiveLogLevel",
- "printedName": "ApptentiveKit.ApptentiveLogLevel",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveLogLevel"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)setLogLevel:",
- "mangledName": "$s13ApptentiveKit0A0C8logLevelAA0a3LogD0Ovs",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Dynamic",
- "ObjC"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- }
- ]
- }
- ],
- "declKind": "Class",
- "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive",
- "mangledName": "$s13ApptentiveKit0A0C",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment",
- "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": "TypeDecl",
- "name": "ApptentiveError",
- "printedName": "ApptentiveError",
- "children": [
- {
- "kind": "Var",
- "name": "internalInconsistency",
- "printedName": "internalInconsistency",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.ApptentiveError.Type) -> ApptentiveKit.ApptentiveError",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveError",
- "printedName": "ApptentiveKit.ApptentiveError",
- "usr": "s:13ApptentiveKit0A5ErrorO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.ApptentiveError.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveError",
- "printedName": "ApptentiveKit.ApptentiveError",
- "usr": "s:13ApptentiveKit0A5ErrorO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:13ApptentiveKit0A5ErrorO21internalInconsistencyyA2CmF",
- "mangledName": "$s13ApptentiveKit0A5ErrorO21internalInconsistencyyA2CmF",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "Var",
- "name": "invalidCustomDataType",
- "printedName": "invalidCustomDataType",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.ApptentiveError.Type) -> (Any?) -> ApptentiveKit.ApptentiveError",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(Any?) -> ApptentiveKit.ApptentiveError",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveError",
- "printedName": "ApptentiveKit.ApptentiveError",
- "usr": "s:13ApptentiveKit0A5ErrorO"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Any?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ProtocolComposition",
- "printedName": "Any"
- }
- ],
- "usr": "s:Sq"
- }
- ]
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.ApptentiveError.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveError",
- "printedName": "ApptentiveKit.ApptentiveError",
- "usr": "s:13ApptentiveKit0A5ErrorO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:13ApptentiveKit0A5ErrorO21invalidCustomDataTypeyACypSgcACmF",
- "mangledName": "$s13ApptentiveKit0A5ErrorO21invalidCustomDataTypeyACypSgcACmF",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "Var",
- "name": "fileExistsAtContainerDirectoryPath",
- "printedName": "fileExistsAtContainerDirectoryPath",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.ApptentiveError.Type) -> ApptentiveKit.ApptentiveError",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveError",
- "printedName": "ApptentiveKit.ApptentiveError",
- "usr": "s:13ApptentiveKit0A5ErrorO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.ApptentiveError.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveError",
- "printedName": "ApptentiveKit.ApptentiveError",
- "usr": "s:13ApptentiveKit0A5ErrorO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:13ApptentiveKit0A5ErrorO34fileExistsAtContainerDirectoryPathyA2CmF",
- "mangledName": "$s13ApptentiveKit0A5ErrorO34fileExistsAtContainerDirectoryPathyA2CmF",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "Var",
- "name": "mismatchedCredentials",
- "printedName": "mismatchedCredentials",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.ApptentiveError.Type) -> ApptentiveKit.ApptentiveError",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveError",
- "printedName": "ApptentiveKit.ApptentiveError",
- "usr": "s:13ApptentiveKit0A5ErrorO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.ApptentiveError.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveError",
- "printedName": "ApptentiveKit.ApptentiveError",
- "usr": "s:13ApptentiveKit0A5ErrorO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:13ApptentiveKit0A5ErrorO21mismatchedCredentialsyA2CmF",
- "mangledName": "$s13ApptentiveKit0A5ErrorO21mismatchedCredentialsyA2CmF",
- "moduleName": "ApptentiveKit"
- }
- ],
- "declKind": "Enum",
- "usr": "s:13ApptentiveKit0A5ErrorO",
- "mangledName": "$s13ApptentiveKit0A5ErrorO",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl"
- ],
- "conformances": [
- {
- "kind": "Conformance",
- "name": "Error",
- "printedName": "Error",
- "usr": "s:s5ErrorP",
- "mangledName": "$ss5ErrorP"
- },
- {
- "kind": "Conformance",
- "name": "Sendable",
- "printedName": "Sendable",
- "usr": "s:s8SendableP",
- "mangledName": "$ss8SendableP"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveAssertionHandler",
- "printedName": "apptentiveAssertionHandler",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(@autoclosure () -> Swift.String, Swift.StaticString, Swift.UInt) -> ()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Tuple",
- "printedName": "(@autoclosure () -> Swift.String, Swift.StaticString, Swift.UInt)",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "() -> Swift.String",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- },
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "typeAttributes": [
- "noescape"
- ]
- },
- {
- "kind": "TypeNominal",
- "name": "StaticString",
- "printedName": "Swift.StaticString",
- "usr": "s:s12StaticStringV"
- },
- {
- "kind": "TypeNominal",
- "name": "UInt",
- "printedName": "Swift.UInt",
- "usr": "s:Su"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit26apptentiveAssertionHandleryySSyXK_s12StaticStringVSutcvp",
- "mangledName": "$s13ApptentiveKit26apptentiveAssertionHandleryySSyXK_s12StaticStringVSutcvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(@autoclosure () -> Swift.String, Swift.StaticString, Swift.UInt) -> ()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Tuple",
- "printedName": "(@autoclosure () -> Swift.String, Swift.StaticString, Swift.UInt)",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "() -> Swift.String",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- },
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "typeAttributes": [
- "noescape"
- ]
- },
- {
- "kind": "TypeNominal",
- "name": "StaticString",
- "printedName": "Swift.StaticString",
- "usr": "s:s12StaticStringV"
- },
- {
- "kind": "TypeNominal",
- "name": "UInt",
- "printedName": "Swift.UInt",
- "usr": "s:Su"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit26apptentiveAssertionHandleryySSyXK_s12StaticStringVSutcvg",
- "mangledName": "$s13ApptentiveKit26apptentiveAssertionHandleryySSyXK_s12StaticStringVSutcvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(@autoclosure () -> Swift.String, Swift.StaticString, Swift.UInt) -> ()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Tuple",
- "printedName": "(@autoclosure () -> Swift.String, Swift.StaticString, Swift.UInt)",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "() -> Swift.String",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- },
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "typeAttributes": [
- "noescape"
- ]
- },
- {
- "kind": "TypeNominal",
- "name": "StaticString",
- "printedName": "Swift.StaticString",
- "usr": "s:s12StaticStringV"
- },
- {
- "kind": "TypeNominal",
- "name": "UInt",
- "printedName": "Swift.UInt",
- "usr": "s:Su"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit26apptentiveAssertionHandleryySSyXK_s12StaticStringVSutcvs",
- "mangledName": "$s13ApptentiveKit26apptentiveAssertionHandleryySSyXK_s12StaticStringVSutcvs",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit26apptentiveAssertionHandleryySSyXK_s12StaticStringVSutcvM",
- "mangledName": "$s13ApptentiveKit26apptentiveAssertionHandleryySSyXK_s12StaticStringVSutcvM",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "UIKit",
- "printedName": "UIKit",
- "declKind": "Import",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "UIKit",
- "printedName": "UIKit",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "UIKit",
- "printedName": "UIKit",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "UIKit",
- "printedName": "UIKit",
- "declKind": "Import",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "Import",
- "name": "UIKit",
- "printedName": "UIKit",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "UIKit",
- "printedName": "UIKit",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "MobileCoreServices",
- "printedName": "MobileCoreServices",
- "declKind": "Import",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "Import",
- "name": "PhotosUI",
- "printedName": "PhotosUI",
- "declKind": "Import",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "Import",
- "name": "UIKit",
- "printedName": "UIKit",
- "declKind": "Import",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "UIKit",
- "printedName": "UIKit",
- "declKind": "Import",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "TypeDecl",
- "name": "CustomDataCompatible",
- "printedName": "CustomDataCompatible",
- "declKind": "Protocol",
- "usr": "s:13ApptentiveKit20CustomDataCompatibleP",
- "mangledName": "$s13ApptentiveKit20CustomDataCompatibleP",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "CustomData",
- "printedName": "CustomData",
- "children": [
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "CustomData",
- "printedName": "ApptentiveKit.CustomData",
- "usr": "s:13ApptentiveKit10CustomDataV"
- }
- ],
- "declKind": "Constructor",
- "usr": "s:13ApptentiveKit10CustomDataVACycfc",
- "mangledName": "$s13ApptentiveKit10CustomDataVACycfc",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "init_kind": "Designated"
- },
- {
- "kind": "Subscript",
- "name": "subscript",
- "printedName": "subscript(_:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "ApptentiveKit.CustomDataCompatible?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "CustomDataCompatible",
- "printedName": "ApptentiveKit.CustomDataCompatible",
- "usr": "s:13ApptentiveKit20CustomDataCompatibleP"
- }
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Subscript",
- "usr": "s:13ApptentiveKit10CustomDataVyAA0cD10Compatible_pSgSScip",
- "mangledName": "$s13ApptentiveKit10CustomDataVyAA0cD10Compatible_pSgSScip",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "ApptentiveKit.CustomDataCompatible?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "CustomDataCompatible",
- "printedName": "ApptentiveKit.CustomDataCompatible",
- "usr": "s:13ApptentiveKit20CustomDataCompatibleP"
- }
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit10CustomDataVyAA0cD10Compatible_pSgSScig",
- "mangledName": "$s13ApptentiveKit10CustomDataVyAA0cD10Compatible_pSgSScig",
- "moduleName": "ApptentiveKit",
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "ApptentiveKit.CustomDataCompatible?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "CustomDataCompatible",
- "printedName": "ApptentiveKit.CustomDataCompatible",
- "usr": "s:13ApptentiveKit20CustomDataCompatibleP"
- }
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit10CustomDataVyAA0cD10Compatible_pSgSScis",
- "mangledName": "$s13ApptentiveKit10CustomDataVyAA0cD10Compatible_pSgSScis",
- "moduleName": "ApptentiveKit",
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit10CustomDataVyAA0cD10Compatible_pSgSSciM",
- "mangledName": "$s13ApptentiveKit10CustomDataVyAA0cD10Compatible_pSgSSciM",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "keys",
- "printedName": "keys",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Keys",
- "printedName": "Swift.Dictionary.Keys",
- "usr": "s:SD4KeysV"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit10CustomDataV4keysSD4KeysVySSAA0cD10Compatible_p_Gvp",
- "mangledName": "$s13ApptentiveKit10CustomDataV4keysSD4KeysVySSAA0cD10Compatible_p_Gvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Keys",
- "printedName": "Swift.Dictionary.Keys",
- "usr": "s:SD4KeysV"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit10CustomDataV4keysSD4KeysVySSAA0cD10Compatible_p_Gvg",
- "mangledName": "$s13ApptentiveKit10CustomDataV4keysSD4KeysVySSAA0cD10Compatible_p_Gvg",
- "moduleName": "ApptentiveKit",
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Function",
- "name": "encode",
- "printedName": "encode(to:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Encoder",
- "printedName": "Swift.Encoder",
- "usr": "s:s7EncoderP"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit10CustomDataV6encode2toys7Encoder_p_tKF",
- "mangledName": "$s13ApptentiveKit10CustomDataV6encode2toys7Encoder_p_tKF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "throwing": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(from:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "CustomData",
- "printedName": "ApptentiveKit.CustomData",
- "usr": "s:13ApptentiveKit10CustomDataV"
- },
- {
- "kind": "TypeNominal",
- "name": "Decoder",
- "printedName": "Swift.Decoder",
- "usr": "s:s7DecoderP"
- }
- ],
- "declKind": "Constructor",
- "usr": "s:13ApptentiveKit10CustomDataV4fromACs7Decoder_p_tKcfc",
- "mangledName": "$s13ApptentiveKit10CustomDataV4fromACs7Decoder_p_tKcfc",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "throwing": true,
- "init_kind": "Designated"
- },
- {
- "kind": "Function",
- "name": "==",
- "printedName": "==(_:_:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- },
- {
- "kind": "TypeNominal",
- "name": "CustomData",
- "printedName": "ApptentiveKit.CustomData",
- "usr": "s:13ApptentiveKit10CustomDataV"
- },
- {
- "kind": "TypeNominal",
- "name": "CustomData",
- "printedName": "ApptentiveKit.CustomData",
- "usr": "s:13ApptentiveKit10CustomDataV"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit10CustomDataV2eeoiySbAC_ACtFZ",
- "mangledName": "$s13ApptentiveKit10CustomDataV2eeoiySbAC_ACtFZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "funcSelfKind": "NonMutating"
- }
- ],
- "declKind": "Struct",
- "usr": "s:13ApptentiveKit10CustomDataV",
- "mangledName": "$s13ApptentiveKit10CustomDataV",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "conformances": [
- {
- "kind": "Conformance",
- "name": "Equatable",
- "printedName": "Equatable",
- "usr": "s:SQ",
- "mangledName": "$sSQ"
- },
- {
- "kind": "Conformance",
- "name": "Decodable",
- "printedName": "Decodable",
- "usr": "s:Se",
- "mangledName": "$sSe"
- },
- {
- "kind": "Conformance",
- "name": "Encodable",
- "printedName": "Encodable",
- "usr": "s:SE",
- "mangledName": "$sSE"
- }
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "SurveyViewModelDelegate",
- "printedName": "SurveyViewModelDelegate",
- "children": [
- {
- "kind": "Function",
- "name": "surveyViewModelDidFinish",
- "printedName": "surveyViewModelDidFinish(_:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "SurveyViewModel",
- "printedName": "ApptentiveKit.SurveyViewModel",
- "usr": "s:13ApptentiveKit15SurveyViewModelC"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit23SurveyViewModelDelegateP06surveydE9DidFinishyyAA0cdE0CF",
- "mangledName": "$s13ApptentiveKit23SurveyViewModelDelegateP06surveydE9DidFinishyyAA0cdE0CF",
- "moduleName": "ApptentiveKit",
- "genericSig": "<τ_0_0 where τ_0_0 : ApptentiveKit.SurveyViewModelDelegate>",
- "sugared_genericSig": "",
- "protocolReq": true,
- "declAttributes": [
- "RawDocComment"
- ],
- "reqNewWitnessTableEntry": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "surveyViewModelValidationDidChange",
- "printedName": "surveyViewModelValidationDidChange(_:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "SurveyViewModel",
- "printedName": "ApptentiveKit.SurveyViewModel",
- "usr": "s:13ApptentiveKit15SurveyViewModelC"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit23SurveyViewModelDelegateP06surveydE19ValidationDidChangeyyAA0cdE0CF",
- "mangledName": "$s13ApptentiveKit23SurveyViewModelDelegateP06surveydE19ValidationDidChangeyyAA0cdE0CF",
- "moduleName": "ApptentiveKit",
- "genericSig": "<τ_0_0 where τ_0_0 : ApptentiveKit.SurveyViewModelDelegate>",
- "sugared_genericSig": "",
- "protocolReq": true,
- "declAttributes": [
- "RawDocComment"
- ],
- "reqNewWitnessTableEntry": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "surveyViewModelSelectionDidChange",
- "printedName": "surveyViewModelSelectionDidChange(_:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "SurveyViewModel",
- "printedName": "ApptentiveKit.SurveyViewModel",
- "usr": "s:13ApptentiveKit15SurveyViewModelC"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit23SurveyViewModelDelegateP06surveydE18SelectionDidChangeyyAA0cdE0CF",
- "mangledName": "$s13ApptentiveKit23SurveyViewModelDelegateP06surveydE18SelectionDidChangeyyAA0cdE0CF",
- "moduleName": "ApptentiveKit",
- "genericSig": "<τ_0_0 where τ_0_0 : ApptentiveKit.SurveyViewModelDelegate>",
- "sugared_genericSig": "",
- "protocolReq": true,
- "declAttributes": [
- "RawDocComment"
- ],
- "reqNewWitnessTableEntry": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "surveyViewModelPageWillChange",
- "printedName": "surveyViewModelPageWillChange(_:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "SurveyViewModel",
- "printedName": "ApptentiveKit.SurveyViewModel",
- "usr": "s:13ApptentiveKit15SurveyViewModelC"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit23SurveyViewModelDelegateP06surveydE14PageWillChangeyyAA0cdE0CF",
- "mangledName": "$s13ApptentiveKit23SurveyViewModelDelegateP06surveydE14PageWillChangeyyAA0cdE0CF",
- "moduleName": "ApptentiveKit",
- "genericSig": "<τ_0_0 where τ_0_0 : ApptentiveKit.SurveyViewModelDelegate>",
- "sugared_genericSig": "",
- "protocolReq": true,
- "declAttributes": [
- "RawDocComment"
- ],
- "reqNewWitnessTableEntry": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "surveyViewModelPageDidChange",
- "printedName": "surveyViewModelPageDidChange(_:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "SurveyViewModel",
- "printedName": "ApptentiveKit.SurveyViewModel",
- "usr": "s:13ApptentiveKit15SurveyViewModelC"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit23SurveyViewModelDelegateP06surveydE13PageDidChangeyyAA0cdE0CF",
- "mangledName": "$s13ApptentiveKit23SurveyViewModelDelegateP06surveydE13PageDidChangeyyAA0cdE0CF",
- "moduleName": "ApptentiveKit",
- "genericSig": "<τ_0_0 where τ_0_0 : ApptentiveKit.SurveyViewModelDelegate>",
- "sugared_genericSig": "",
- "protocolReq": true,
- "declAttributes": [
- "RawDocComment"
- ],
- "reqNewWitnessTableEntry": true,
- "funcSelfKind": "NonMutating"
- }
- ],
- "declKind": "Protocol",
- "usr": "s:13ApptentiveKit23SurveyViewModelDelegateP",
- "mangledName": "$s13ApptentiveKit23SurveyViewModelDelegateP",
- "moduleName": "ApptentiveKit",
- "genericSig": "<τ_0_0 : AnyObject>",
- "sugared_genericSig": "",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "SurveyViewModel",
- "printedName": "SurveyViewModel",
- "children": [
- {
- "kind": "Var",
- "name": "name",
- "printedName": "name",
- "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": "s:13ApptentiveKit15SurveyViewModelC4nameSSSgvp",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC4nameSSSgvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "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": "s:13ApptentiveKit15SurveyViewModelC4nameSSSgvg",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC4nameSSSgvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "isRequired",
- "printedName": "isRequired",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit15SurveyViewModelC10isRequiredSbvp",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC10isRequiredSbvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit15SurveyViewModelC10isRequiredSbvg",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC10isRequiredSbvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "pageIndicatorSegmentCount",
- "printedName": "pageIndicatorSegmentCount",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit15SurveyViewModelC25pageIndicatorSegmentCountSivp",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC25pageIndicatorSegmentCountSivp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit15SurveyViewModelC25pageIndicatorSegmentCountSivg",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC25pageIndicatorSegmentCountSivg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "validationErrorMessage",
- "printedName": "validationErrorMessage",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit15SurveyViewModelC22validationErrorMessageSSvp",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC22validationErrorMessageSSvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit15SurveyViewModelC22validationErrorMessageSSvg",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC22validationErrorMessageSSvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "disclaimerText",
- "printedName": "disclaimerText",
- "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": "s:13ApptentiveKit15SurveyViewModelC14disclaimerTextSSSgvp",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC14disclaimerTextSSSgvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "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": "s:13ApptentiveKit15SurveyViewModelC14disclaimerTextSSSgvg",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC14disclaimerTextSSSgvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "TermsAndConditions",
- "printedName": "TermsAndConditions",
- "declKind": "Struct",
- "usr": "s:13ApptentiveKit15SurveyViewModelC18TermsAndConditionsV",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC18TermsAndConditionsV",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "termsAndConditions",
- "printedName": "termsAndConditions",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "ApptentiveKit.SurveyViewModel.TermsAndConditions?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "TermsAndConditions",
- "printedName": "ApptentiveKit.SurveyViewModel.TermsAndConditions",
- "usr": "s:13ApptentiveKit15SurveyViewModelC18TermsAndConditionsV"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit15SurveyViewModelC18termsAndConditionsAC05TermsgH0VSgvp",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC18termsAndConditionsAC05TermsgH0VSgvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "ApptentiveKit.SurveyViewModel.TermsAndConditions?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "TermsAndConditions",
- "printedName": "ApptentiveKit.SurveyViewModel.TermsAndConditions",
- "usr": "s:13ApptentiveKit15SurveyViewModelC18TermsAndConditionsV"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit15SurveyViewModelC18termsAndConditionsAC05TermsgH0VSgvg",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC18termsAndConditionsAC05TermsgH0VSgvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "CloseConfirmation",
- "printedName": "CloseConfirmation",
- "declKind": "Struct",
- "usr": "s:13ApptentiveKit15SurveyViewModelC17CloseConfirmationV",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC17CloseConfirmationV",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "closeConfirmation",
- "printedName": "closeConfirmation",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "CloseConfirmation",
- "printedName": "ApptentiveKit.SurveyViewModel.CloseConfirmation",
- "usr": "s:13ApptentiveKit15SurveyViewModelC17CloseConfirmationV"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit15SurveyViewModelC17closeConfirmationAC05CloseG0Vvp",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC17closeConfirmationAC05CloseG0Vvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "CloseConfirmation",
- "printedName": "ApptentiveKit.SurveyViewModel.CloseConfirmation",
- "usr": "s:13ApptentiveKit15SurveyViewModelC17CloseConfirmationV"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit15SurveyViewModelC17closeConfirmationAC05CloseG0Vvg",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC17closeConfirmationAC05CloseG0Vvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "delegate",
- "printedName": "delegate",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "WeakStorage",
- "printedName": "ApptentiveKit.SurveyViewModelDelegate?"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit15SurveyViewModelC8delegateAA0cdE8Delegate_pSgvp",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC8delegateAA0cdE8Delegate_pSgvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "ReferenceOwnership",
- "AccessControl",
- "RawDocComment"
- ],
- "ownership": 1,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "ApptentiveKit.SurveyViewModelDelegate?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "SurveyViewModelDelegate",
- "printedName": "ApptentiveKit.SurveyViewModelDelegate",
- "usr": "s:13ApptentiveKit23SurveyViewModelDelegateP"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit15SurveyViewModelC8delegateAA0cdE8Delegate_pSgvg",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC8delegateAA0cdE8Delegate_pSgvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "ApptentiveKit.SurveyViewModelDelegate?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "SurveyViewModelDelegate",
- "printedName": "ApptentiveKit.SurveyViewModelDelegate",
- "usr": "s:13ApptentiveKit23SurveyViewModelDelegateP"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit15SurveyViewModelC8delegateAA0cdE8Delegate_pSgvs",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC8delegateAA0cdE8Delegate_pSgvs",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit15SurveyViewModelC8delegateAA0cdE8Delegate_pSgvM",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC8delegateAA0cdE8Delegate_pSgvM",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "currentPage",
- "printedName": "currentPage",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Page",
- "printedName": "ApptentiveKit.SurveyViewModel.Page",
- "usr": "s:13ApptentiveKit15SurveyViewModelC4PageC"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit15SurveyViewModelC11currentPageAC0G0Cvp",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC11currentPageAC0G0Cvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Page",
- "printedName": "ApptentiveKit.SurveyViewModel.Page",
- "usr": "s:13ApptentiveKit15SurveyViewModelC4PageC"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit15SurveyViewModelC11currentPageAC0G0Cvg",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC11currentPageAC0G0Cvg",
- "moduleName": "ApptentiveKit",
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "questions",
- "printedName": "questions",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Array",
- "printedName": "[ApptentiveKit.SurveyViewModel.Question]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Question",
- "printedName": "ApptentiveKit.SurveyViewModel.Question",
- "usr": "s:13ApptentiveKit15SurveyViewModelC8QuestionC"
- }
- ],
- "usr": "s:Sa"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit15SurveyViewModelC9questionsSayAC8QuestionCGvp",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC9questionsSayAC8QuestionCGvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Array",
- "printedName": "[ApptentiveKit.SurveyViewModel.Question]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Question",
- "printedName": "ApptentiveKit.SurveyViewModel.Question",
- "usr": "s:13ApptentiveKit15SurveyViewModelC8QuestionC"
- }
- ],
- "usr": "s:Sa"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit15SurveyViewModelC9questionsSayAC8QuestionCGvg",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC9questionsSayAC8QuestionCGvg",
- "moduleName": "ApptentiveKit",
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "isMarkedAsInvalid",
- "printedName": "isMarkedAsInvalid",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit15SurveyViewModelC17isMarkedAsInvalidSbvp",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC17isMarkedAsInvalidSbvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit15SurveyViewModelC17isMarkedAsInvalidSbvg",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC17isMarkedAsInvalidSbvg",
- "moduleName": "ApptentiveKit",
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "thankYouMessage",
- "printedName": "thankYouMessage",
- "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": "s:13ApptentiveKit15SurveyViewModelC15thankYouMessageSSSgvp",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC15thankYouMessageSSSgvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit15SurveyViewModelC15thankYouMessageSSSgvg",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC15thankYouMessageSSSgvg",
- "moduleName": "ApptentiveKit",
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "introduction",
- "printedName": "introduction",
- "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": "s:13ApptentiveKit15SurveyViewModelC12introductionSSSgvp",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC12introductionSSSgvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit15SurveyViewModelC12introductionSSSgvg",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC12introductionSSSgvg",
- "moduleName": "ApptentiveKit",
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "advanceButtonText",
- "printedName": "advanceButtonText",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit15SurveyViewModelC17advanceButtonTextSSvp",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC17advanceButtonTextSSvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit15SurveyViewModelC17advanceButtonTextSSvg",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC17advanceButtonTextSSvg",
- "moduleName": "ApptentiveKit",
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "invalidQuestionIndexes",
- "printedName": "invalidQuestionIndexes",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "IndexSet",
- "printedName": "Foundation.IndexSet",
- "usr": "s:10Foundation8IndexSetV"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit15SurveyViewModelC22invalidQuestionIndexes10Foundation8IndexSetVvp",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC22invalidQuestionIndexes10Foundation8IndexSetVvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "IndexSet",
- "printedName": "Foundation.IndexSet",
- "usr": "s:10Foundation8IndexSetV"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit15SurveyViewModelC22invalidQuestionIndexes10Foundation8IndexSetVvg",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC22invalidQuestionIndexes10Foundation8IndexSetVvg",
- "moduleName": "ApptentiveKit",
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "surveyDidSendResponse",
- "printedName": "surveyDidSendResponse",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit15SurveyViewModelC21surveyDidSendResponseSbvp",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC21surveyDidSendResponseSbvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit15SurveyViewModelC21surveyDidSendResponseSbvg",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC21surveyDidSendResponseSbvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "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": "s:13ApptentiveKit15SurveyViewModelC21surveyDidSendResponseSbvs",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC21surveyDidSendResponseSbvs",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit15SurveyViewModelC21surveyDidSendResponseSbvM",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC21surveyDidSendResponseSbvM",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "highlightFirstQuestionSegment",
- "printedName": "highlightFirstQuestionSegment",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit15SurveyViewModelC29highlightFirstQuestionSegmentSbvp",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC29highlightFirstQuestionSegmentSbvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit15SurveyViewModelC29highlightFirstQuestionSegmentSbvg",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC29highlightFirstQuestionSegmentSbvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "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": "s:13ApptentiveKit15SurveyViewModelC29highlightFirstQuestionSegmentSbvs",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC29highlightFirstQuestionSegmentSbvs",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit15SurveyViewModelC29highlightFirstQuestionSegmentSbvM",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC29highlightFirstQuestionSegmentSbvM",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Function",
- "name": "setValue",
- "printedName": "setValue(_:for:)",
- "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": "TypeNominal",
- "name": "IndexPath",
- "printedName": "Foundation.IndexPath",
- "usr": "s:10Foundation9IndexPathV"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit15SurveyViewModelC8setValue_3forySSSg_10Foundation9IndexPathVtF",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC8setValue_3forySSSg_10Foundation9IndexPathVtF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "selectValueFromRange",
- "printedName": "selectValueFromRange(at:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "IndexPath",
- "printedName": "Foundation.IndexPath",
- "usr": "s:10Foundation9IndexPathV"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit15SurveyViewModelC20selectValueFromRange2aty10Foundation9IndexPathV_tF",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC20selectValueFromRange2aty10Foundation9IndexPathV_tF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "openTermsAndConditions",
- "printedName": "openTermsAndConditions()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit15SurveyViewModelC22openTermsAndConditionsyyF",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC22openTermsAndConditionsyyF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "advance",
- "printedName": "advance()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit15SurveyViewModelC7advanceyyF",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC7advanceyyF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Var",
- "name": "isValid",
- "printedName": "isValid",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit15SurveyViewModelC7isValidSbvp",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC7isValidSbvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit15SurveyViewModelC7isValidSbvg",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC7isValidSbvg",
- "moduleName": "ApptentiveKit",
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "DisplayMode",
- "printedName": "DisplayMode",
- "children": [
- {
- "kind": "Var",
- "name": "list",
- "printedName": "list",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.SurveyViewModel.DisplayMode.Type) -> ApptentiveKit.SurveyViewModel.DisplayMode",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "DisplayMode",
- "printedName": "ApptentiveKit.SurveyViewModel.DisplayMode",
- "usr": "s:13ApptentiveKit15SurveyViewModelC11DisplayModeO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.SurveyViewModel.DisplayMode.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "DisplayMode",
- "printedName": "ApptentiveKit.SurveyViewModel.DisplayMode",
- "usr": "s:13ApptentiveKit15SurveyViewModelC11DisplayModeO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:13ApptentiveKit15SurveyViewModelC11DisplayModeO4listyA2EmF",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC11DisplayModeO4listyA2EmF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "paged",
- "printedName": "paged",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.SurveyViewModel.DisplayMode.Type) -> ApptentiveKit.SurveyViewModel.DisplayMode",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "DisplayMode",
- "printedName": "ApptentiveKit.SurveyViewModel.DisplayMode",
- "usr": "s:13ApptentiveKit15SurveyViewModelC11DisplayModeO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.SurveyViewModel.DisplayMode.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "DisplayMode",
- "printedName": "ApptentiveKit.SurveyViewModel.DisplayMode",
- "usr": "s:13ApptentiveKit15SurveyViewModelC11DisplayModeO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:13ApptentiveKit15SurveyViewModelC11DisplayModeO5pagedyA2EmF",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC11DisplayModeO5pagedyA2EmF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Function",
- "name": "==",
- "printedName": "==(_:_:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- },
- {
- "kind": "TypeNominal",
- "name": "DisplayMode",
- "printedName": "ApptentiveKit.SurveyViewModel.DisplayMode",
- "usr": "s:13ApptentiveKit15SurveyViewModelC11DisplayModeO"
- },
- {
- "kind": "TypeNominal",
- "name": "DisplayMode",
- "printedName": "ApptentiveKit.SurveyViewModel.DisplayMode",
- "usr": "s:13ApptentiveKit15SurveyViewModelC11DisplayModeO"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit15SurveyViewModelC11DisplayModeO2eeoiySbAE_AEtFZ",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC11DisplayModeO2eeoiySbAE_AEtFZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Var",
- "name": "hashValue",
- "printedName": "hashValue",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit15SurveyViewModelC11DisplayModeO9hashValueSivp",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC11DisplayModeO9hashValueSivp",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit15SurveyViewModelC11DisplayModeO9hashValueSivg",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC11DisplayModeO9hashValueSivg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Function",
- "name": "hash",
- "printedName": "hash(into:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Hasher",
- "printedName": "Swift.Hasher",
- "paramValueOwnership": "InOut",
- "usr": "s:s6HasherV"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit15SurveyViewModelC11DisplayModeO4hash4intoys6HasherVz_tF",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC11DisplayModeO4hash4intoys6HasherVz_tF",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "funcSelfKind": "NonMutating"
- }
- ],
- "declKind": "Enum",
- "usr": "s:13ApptentiveKit15SurveyViewModelC11DisplayModeO",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC11DisplayModeO",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "conformances": [
- {
- "kind": "Conformance",
- "name": "Equatable",
- "printedName": "Equatable",
- "usr": "s:SQ",
- "mangledName": "$sSQ"
- },
- {
- "kind": "Conformance",
- "name": "Hashable",
- "printedName": "Hashable",
- "usr": "s:SH",
- "mangledName": "$sSH"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "displayMode",
- "printedName": "displayMode",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "DisplayMode",
- "printedName": "ApptentiveKit.SurveyViewModel.DisplayMode",
- "usr": "s:13ApptentiveKit15SurveyViewModelC11DisplayModeO"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit15SurveyViewModelC11displayModeAC07DisplayG0Ovp",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC11displayModeAC07DisplayG0Ovp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "DisplayMode",
- "printedName": "ApptentiveKit.SurveyViewModel.DisplayMode",
- "usr": "s:13ApptentiveKit15SurveyViewModelC11DisplayModeO"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit15SurveyViewModelC11displayModeAC07DisplayG0Ovg",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC11displayModeAC07DisplayG0Ovg",
- "moduleName": "ApptentiveKit",
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "shouldConfirmCancel",
- "printedName": "shouldConfirmCancel",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit15SurveyViewModelC19shouldConfirmCancelSbvp",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC19shouldConfirmCancelSbvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit15SurveyViewModelC19shouldConfirmCancelSbvg",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC19shouldConfirmCancelSbvg",
- "moduleName": "ApptentiveKit",
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "currentSelectedSegmentIndex",
- "printedName": "currentSelectedSegmentIndex",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.Int?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit15SurveyViewModelC27currentSelectedSegmentIndexSiSgvp",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC27currentSelectedSegmentIndexSiSgvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.Int?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit15SurveyViewModelC27currentSelectedSegmentIndexSiSgvg",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC27currentSelectedSegmentIndexSiSgvg",
- "moduleName": "ApptentiveKit",
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Function",
- "name": "launch",
- "printedName": "launch()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit15SurveyViewModelC6launchyyF",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC6launchyyF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "continuePartial",
- "printedName": "continuePartial()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit15SurveyViewModelC15continuePartialyyF",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC15continuePartialyyF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "cancel",
- "printedName": "cancel(partial:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit15SurveyViewModelC6cancel7partialySb_tF",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC6cancel7partialySb_tF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "TypeDecl",
- "name": "RangeQuestion",
- "printedName": "RangeQuestion",
- "children": [
- {
- "kind": "Var",
- "name": "minValue",
- "printedName": "minValue",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit15SurveyViewModelC13RangeQuestionC8minValueSivp",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC13RangeQuestionC8minValueSivp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit15SurveyViewModelC13RangeQuestionC8minValueSivg",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC13RangeQuestionC8minValueSivg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "maxValue",
- "printedName": "maxValue",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit15SurveyViewModelC13RangeQuestionC8maxValueSivp",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC13RangeQuestionC8maxValueSivp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit15SurveyViewModelC13RangeQuestionC8maxValueSivg",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC13RangeQuestionC8maxValueSivg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "minText",
- "printedName": "minText",
- "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": "s:13ApptentiveKit15SurveyViewModelC13RangeQuestionC7minTextSSSgvp",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC13RangeQuestionC7minTextSSSgvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "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": "s:13ApptentiveKit15SurveyViewModelC13RangeQuestionC7minTextSSSgvg",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC13RangeQuestionC7minTextSSSgvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "maxText",
- "printedName": "maxText",
- "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": "s:13ApptentiveKit15SurveyViewModelC13RangeQuestionC7maxTextSSSgvp",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC13RangeQuestionC7maxTextSSSgvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "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": "s:13ApptentiveKit15SurveyViewModelC13RangeQuestionC7maxTextSSSgvg",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC13RangeQuestionC7maxTextSSSgvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "selectedValueIndex",
- "printedName": "selectedValueIndex",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.Int?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit15SurveyViewModelC13RangeQuestionC18selectedValueIndexSiSgvp",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC13RangeQuestionC18selectedValueIndexSiSgvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "SetterAccess",
- "AccessControl",
- "RawDocComment"
- ],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.Int?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit15SurveyViewModelC13RangeQuestionC18selectedValueIndexSiSgvg",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC13RangeQuestionC18selectedValueIndexSiSgvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "value",
- "printedName": "value",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.Int?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit15SurveyViewModelC13RangeQuestionC5valueSiSgvp",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC13RangeQuestionC5valueSiSgvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.Int?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit15SurveyViewModelC13RangeQuestionC5valueSiSgvg",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC13RangeQuestionC5valueSiSgvg",
- "moduleName": "ApptentiveKit",
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "choiceLabels",
- "printedName": "choiceLabels",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Array",
- "printedName": "[Swift.String]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sa"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit15SurveyViewModelC13RangeQuestionC12choiceLabelsSaySSGvp",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC13RangeQuestionC12choiceLabelsSaySSGvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Array",
- "printedName": "[Swift.String]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sa"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit15SurveyViewModelC13RangeQuestionC12choiceLabelsSaySSGvg",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC13RangeQuestionC12choiceLabelsSaySSGvg",
- "moduleName": "ApptentiveKit",
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Function",
- "name": "selectValue",
- "printedName": "selectValue(at:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit15SurveyViewModelC13RangeQuestionC11selectValue2atySi_tF",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC13RangeQuestionC11selectValue2atySi_tF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Var",
- "name": "accessibilityHintForSegment",
- "printedName": "accessibilityHintForSegment",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit15SurveyViewModelC13RangeQuestionC27accessibilityHintForSegmentSSvp",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC13RangeQuestionC27accessibilityHintForSegmentSSvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit15SurveyViewModelC13RangeQuestionC27accessibilityHintForSegmentSSvg",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC13RangeQuestionC27accessibilityHintForSegmentSSvg",
- "moduleName": "ApptentiveKit",
- "accessorKind": "get"
- }
- ]
- }
- ],
- "declKind": "Class",
- "usr": "s:13ApptentiveKit15SurveyViewModelC13RangeQuestionC",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC13RangeQuestionC",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "superclassUsr": "s:13ApptentiveKit15SurveyViewModelC8QuestionC",
- "hasMissingDesignatedInitializers": true,
- "inheritsConvenienceInitializers": true,
- "superclassNames": [
- "ApptentiveKit.SurveyViewModel.Question"
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "ChoiceQuestion",
- "printedName": "ChoiceQuestion",
- "children": [
- {
- "kind": "Var",
- "name": "choices",
- "printedName": "choices",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Array",
- "printedName": "[ApptentiveKit.SurveyViewModel.ChoiceQuestion.Choice]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Choice",
- "printedName": "ApptentiveKit.SurveyViewModel.ChoiceQuestion.Choice",
- "usr": "s:13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC0F0C"
- }
- ],
- "usr": "s:Sa"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC7choicesSayAE0F0CGvp",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC7choicesSayAE0F0CGvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Array",
- "printedName": "[ApptentiveKit.SurveyViewModel.ChoiceQuestion.Choice]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Choice",
- "printedName": "ApptentiveKit.SurveyViewModel.ChoiceQuestion.Choice",
- "usr": "s:13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC0F0C"
- }
- ],
- "usr": "s:Sa"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC7choicesSayAE0F0CGvg",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC7choicesSayAE0F0CGvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Function",
- "name": "toggleChoice",
- "printedName": "toggleChoice(at:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC06toggleF02atySi_tF",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC06toggleF02atySi_tF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Var",
- "name": "selectionStyle",
- "printedName": "selectionStyle",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "SelectionStyle",
- "printedName": "ApptentiveKit.SurveyViewModel.ChoiceQuestion.SelectionStyle",
- "usr": "s:13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC14SelectionStyleO"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC14selectionStyleAE09SelectionI0Ovp",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC14selectionStyleAE09SelectionI0Ovp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "SelectionStyle",
- "printedName": "ApptentiveKit.SurveyViewModel.ChoiceQuestion.SelectionStyle",
- "usr": "s:13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC14SelectionStyleO"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC14selectionStyleAE09SelectionI0Ovg",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC14selectionStyleAE09SelectionI0Ovg",
- "moduleName": "ApptentiveKit",
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "SelectionStyle",
- "printedName": "SelectionStyle",
- "children": [
- {
- "kind": "Var",
- "name": "checkbox",
- "printedName": "checkbox",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.SurveyViewModel.ChoiceQuestion.SelectionStyle.Type) -> ApptentiveKit.SurveyViewModel.ChoiceQuestion.SelectionStyle",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "SelectionStyle",
- "printedName": "ApptentiveKit.SurveyViewModel.ChoiceQuestion.SelectionStyle",
- "usr": "s:13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC14SelectionStyleO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.SurveyViewModel.ChoiceQuestion.SelectionStyle.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "SelectionStyle",
- "printedName": "ApptentiveKit.SurveyViewModel.ChoiceQuestion.SelectionStyle",
- "usr": "s:13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC14SelectionStyleO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC14SelectionStyleO8checkboxyA2GmF",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC14SelectionStyleO8checkboxyA2GmF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "radioButton",
- "printedName": "radioButton",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.SurveyViewModel.ChoiceQuestion.SelectionStyle.Type) -> ApptentiveKit.SurveyViewModel.ChoiceQuestion.SelectionStyle",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "SelectionStyle",
- "printedName": "ApptentiveKit.SurveyViewModel.ChoiceQuestion.SelectionStyle",
- "usr": "s:13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC14SelectionStyleO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.SurveyViewModel.ChoiceQuestion.SelectionStyle.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "SelectionStyle",
- "printedName": "ApptentiveKit.SurveyViewModel.ChoiceQuestion.SelectionStyle",
- "usr": "s:13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC14SelectionStyleO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC14SelectionStyleO11radioButtonyA2GmF",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC14SelectionStyleO11radioButtonyA2GmF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Function",
- "name": "==",
- "printedName": "==(_:_:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- },
- {
- "kind": "TypeNominal",
- "name": "SelectionStyle",
- "printedName": "ApptentiveKit.SurveyViewModel.ChoiceQuestion.SelectionStyle",
- "usr": "s:13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC14SelectionStyleO"
- },
- {
- "kind": "TypeNominal",
- "name": "SelectionStyle",
- "printedName": "ApptentiveKit.SurveyViewModel.ChoiceQuestion.SelectionStyle",
- "usr": "s:13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC14SelectionStyleO"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC14SelectionStyleO2eeoiySbAG_AGtFZ",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC14SelectionStyleO2eeoiySbAG_AGtFZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Var",
- "name": "hashValue",
- "printedName": "hashValue",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC14SelectionStyleO9hashValueSivp",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC14SelectionStyleO9hashValueSivp",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC14SelectionStyleO9hashValueSivg",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC14SelectionStyleO9hashValueSivg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Function",
- "name": "hash",
- "printedName": "hash(into:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Hasher",
- "printedName": "Swift.Hasher",
- "paramValueOwnership": "InOut",
- "usr": "s:s6HasherV"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC14SelectionStyleO4hash4intoys6HasherVz_tF",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC14SelectionStyleO4hash4intoys6HasherVz_tF",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "funcSelfKind": "NonMutating"
- }
- ],
- "declKind": "Enum",
- "usr": "s:13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC14SelectionStyleO",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC14SelectionStyleO",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "conformances": [
- {
- "kind": "Conformance",
- "name": "Equatable",
- "printedName": "Equatable",
- "usr": "s:SQ",
- "mangledName": "$sSQ"
- },
- {
- "kind": "Conformance",
- "name": "Hashable",
- "printedName": "Hashable",
- "usr": "s:SH",
- "mangledName": "$sSH"
- }
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "Choice",
- "printedName": "Choice",
- "children": [
- {
- "kind": "Var",
- "name": "label",
- "printedName": "label",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC0F0C5labelSSvp",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC0F0C5labelSSvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC0F0C5labelSSvg",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC0F0C5labelSSvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "placeholderText",
- "printedName": "placeholderText",
- "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": "s:13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC0F0C15placeholderTextSSSgvp",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC0F0C15placeholderTextSSSgvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "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": "s:13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC0F0C15placeholderTextSSSgvg",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC0F0C15placeholderTextSSSgvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "supportsOther",
- "printedName": "supportsOther",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC0F0C13supportsOtherSbvp",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC0F0C13supportsOtherSbvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC0F0C13supportsOtherSbvg",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC0F0C13supportsOtherSbvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "isSelected",
- "printedName": "isSelected",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC0F0C10isSelectedSbvp",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC0F0C10isSelectedSbvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "HasStorage",
- "SetterAccess",
- "AccessControl",
- "RawDocComment"
- ],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC0F0C10isSelectedSbvg",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC0F0C10isSelectedSbvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "isMarkedAsInvalid",
- "printedName": "isMarkedAsInvalid",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC0F0C17isMarkedAsInvalidSbvp",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC0F0C17isMarkedAsInvalidSbvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "HasStorage",
- "SetterAccess",
- "AccessControl",
- "RawDocComment"
- ],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC0F0C17isMarkedAsInvalidSbvg",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC0F0C17isMarkedAsInvalidSbvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "value",
- "printedName": "value",
- "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": "s:13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC0F0C5valueSSSgvp",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC0F0C5valueSSSgvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC0F0C5valueSSSgvg",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC0F0C5valueSSSgvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "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": "s:13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC0F0C5valueSSSgvs",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC0F0C5valueSSSgvs",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC0F0C5valueSSSgvM",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC0F0C5valueSSSgvM",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "_modify"
- }
- ]
- }
- ],
- "declKind": "Class",
- "usr": "s:13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC0F0C",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC0F0C",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "hasMissingDesignatedInitializers": true
- }
- ],
- "declKind": "Class",
- "usr": "s:13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "superclassUsr": "s:13ApptentiveKit15SurveyViewModelC8QuestionC",
- "hasMissingDesignatedInitializers": true,
- "inheritsConvenienceInitializers": true,
- "superclassNames": [
- "ApptentiveKit.SurveyViewModel.Question"
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "Page",
- "printedName": "Page",
- "children": [
- {
- "kind": "Var",
- "name": "id",
- "printedName": "id",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit15SurveyViewModelC4PageC2idSSvp",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC4PageC2idSSvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit15SurveyViewModelC4PageC2idSSvg",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC4PageC2idSSvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "description",
- "printedName": "description",
- "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": "s:13ApptentiveKit15SurveyViewModelC4PageC11descriptionSSSgvp",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC4PageC11descriptionSSSgvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "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": "s:13ApptentiveKit15SurveyViewModelC4PageC11descriptionSSSgvg",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC4PageC11descriptionSSSgvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "questions",
- "printedName": "questions",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Array",
- "printedName": "[ApptentiveKit.SurveyViewModel.Question]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Question",
- "printedName": "ApptentiveKit.SurveyViewModel.Question",
- "usr": "s:13ApptentiveKit15SurveyViewModelC8QuestionC"
- }
- ],
- "usr": "s:Sa"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit15SurveyViewModelC4PageC9questionsSayAC8QuestionCGvp",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC4PageC9questionsSayAC8QuestionCGvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Array",
- "printedName": "[ApptentiveKit.SurveyViewModel.Question]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Question",
- "printedName": "ApptentiveKit.SurveyViewModel.Question",
- "usr": "s:13ApptentiveKit15SurveyViewModelC8QuestionC"
- }
- ],
- "usr": "s:Sa"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit15SurveyViewModelC4PageC9questionsSayAC8QuestionCGvg",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC4PageC9questionsSayAC8QuestionCGvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "advanceButtonLabel",
- "printedName": "advanceButtonLabel",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit15SurveyViewModelC4PageC18advanceButtonLabelSSvp",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC4PageC18advanceButtonLabelSSvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit15SurveyViewModelC4PageC18advanceButtonLabelSSvg",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC4PageC18advanceButtonLabelSSvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "pageIndicatorValue",
- "printedName": "pageIndicatorValue",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.Int?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit15SurveyViewModelC4PageC18pageIndicatorValueSiSgvp",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC4PageC18pageIndicatorValueSiSgvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.Int?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit15SurveyViewModelC4PageC18pageIndicatorValueSiSgvg",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC4PageC18pageIndicatorValueSiSgvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- }
- ],
- "declKind": "Class",
- "usr": "s:13ApptentiveKit15SurveyViewModelC4PageC",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC4PageC",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasMissingDesignatedInitializers": true
- },
- {
- "kind": "TypeDecl",
- "name": "Question",
- "printedName": "Question",
- "children": [
- {
- "kind": "Var",
- "name": "text",
- "printedName": "text",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit15SurveyViewModelC8QuestionC4textSSvp",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC8QuestionC4textSSvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "HasStorage",
- "Final",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit15SurveyViewModelC8QuestionC4textSSvg",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC8QuestionC4textSSvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "isRequired",
- "printedName": "isRequired",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit15SurveyViewModelC8QuestionC10isRequiredSbvp",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC8QuestionC10isRequiredSbvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "HasStorage",
- "Final",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit15SurveyViewModelC8QuestionC10isRequiredSbvg",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC8QuestionC10isRequiredSbvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "requiredText",
- "printedName": "requiredText",
- "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": "s:13ApptentiveKit15SurveyViewModelC8QuestionC12requiredTextSSSgvp",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC8QuestionC12requiredTextSSSgvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "HasStorage",
- "Final",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "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": "s:13ApptentiveKit15SurveyViewModelC8QuestionC12requiredTextSSSgvg",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC8QuestionC12requiredTextSSSgvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "errorMessage",
- "printedName": "errorMessage",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit15SurveyViewModelC8QuestionC12errorMessageSSvp",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC8QuestionC12errorMessageSSvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "HasStorage",
- "Final",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit15SurveyViewModelC8QuestionC12errorMessageSSvg",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC8QuestionC12errorMessageSSvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "instructions",
- "printedName": "instructions",
- "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": "s:13ApptentiveKit15SurveyViewModelC8QuestionC12instructionsSSSgvp",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC8QuestionC12instructionsSSSgvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "HasStorage",
- "Final",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "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": "s:13ApptentiveKit15SurveyViewModelC8QuestionC12instructionsSSSgvg",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC8QuestionC12instructionsSSSgvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "isMarkedAsInvalid",
- "printedName": "isMarkedAsInvalid",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit15SurveyViewModelC8QuestionC17isMarkedAsInvalidSbvp",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC8QuestionC17isMarkedAsInvalidSbvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit15SurveyViewModelC8QuestionC17isMarkedAsInvalidSbvg",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC8QuestionC17isMarkedAsInvalidSbvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "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": "s:13ApptentiveKit15SurveyViewModelC8QuestionC17isMarkedAsInvalidSbvs",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC8QuestionC17isMarkedAsInvalidSbvs",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit15SurveyViewModelC8QuestionC17isMarkedAsInvalidSbvM",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC8QuestionC17isMarkedAsInvalidSbvM",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "accessibilityLabel",
- "printedName": "accessibilityLabel",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit15SurveyViewModelC8QuestionC18accessibilityLabelSSvp",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC8QuestionC18accessibilityLabelSSvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit15SurveyViewModelC8QuestionC18accessibilityLabelSSvg",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC8QuestionC18accessibilityLabelSSvg",
- "moduleName": "ApptentiveKit",
- "accessorKind": "get"
- }
- ]
- }
- ],
- "declKind": "Class",
- "usr": "s:13ApptentiveKit15SurveyViewModelC8QuestionC",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC8QuestionC",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasMissingDesignatedInitializers": true
- },
- {
- "kind": "TypeDecl",
- "name": "FreeformQuestion",
- "printedName": "FreeformQuestion",
- "children": [
- {
- "kind": "Var",
- "name": "placeholderText",
- "printedName": "placeholderText",
- "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": "s:13ApptentiveKit15SurveyViewModelC16FreeformQuestionC15placeholderTextSSSgvp",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC16FreeformQuestionC15placeholderTextSSSgvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "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": "s:13ApptentiveKit15SurveyViewModelC16FreeformQuestionC15placeholderTextSSSgvg",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC16FreeformQuestionC15placeholderTextSSSgvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "allowMultipleLines",
- "printedName": "allowMultipleLines",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit15SurveyViewModelC16FreeformQuestionC18allowMultipleLinesSbvp",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC16FreeformQuestionC18allowMultipleLinesSbvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit15SurveyViewModelC16FreeformQuestionC18allowMultipleLinesSbvg",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC16FreeformQuestionC18allowMultipleLinesSbvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "value",
- "printedName": "value",
- "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": "s:13ApptentiveKit15SurveyViewModelC16FreeformQuestionC5valueSSSgvp",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC16FreeformQuestionC5valueSSSgvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit15SurveyViewModelC16FreeformQuestionC5valueSSSgvg",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC16FreeformQuestionC5valueSSSgvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "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": "s:13ApptentiveKit15SurveyViewModelC16FreeformQuestionC5valueSSSgvs",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC16FreeformQuestionC5valueSSSgvs",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit15SurveyViewModelC16FreeformQuestionC5valueSSSgvM",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC16FreeformQuestionC5valueSSSgvM",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "_modify"
- }
- ]
- }
- ],
- "declKind": "Class",
- "usr": "s:13ApptentiveKit15SurveyViewModelC16FreeformQuestionC",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC16FreeformQuestionC",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "superclassUsr": "s:13ApptentiveKit15SurveyViewModelC8QuestionC",
- "hasMissingDesignatedInitializers": true,
- "inheritsConvenienceInitializers": true,
- "superclassNames": [
- "ApptentiveKit.SurveyViewModel.Question"
- ]
- }
- ],
- "declKind": "Class",
- "usr": "s:13ApptentiveKit15SurveyViewModelC",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "hasMissingDesignatedInitializers": true
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "UIKit",
- "printedName": "UIKit",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "UIKit",
- "printedName": "UIKit",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "UIKit",
- "printedName": "UIKit",
- "declKind": "Import",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "TypeDecl",
- "name": "MessageCenterViewModelDelegate",
- "printedName": "MessageCenterViewModelDelegate",
- "children": [
- {
- "kind": "Function",
- "name": "messageCenterViewModelDidBeginUpdates",
- "printedName": "messageCenterViewModelDidBeginUpdates(_:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "MessageCenterViewModel",
- "printedName": "ApptentiveKit.MessageCenterViewModel",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit30MessageCenterViewModelDelegateP07messagedeF15DidBeginUpdatesyyAA0cdeF0CF",
- "mangledName": "$s13ApptentiveKit30MessageCenterViewModelDelegateP07messagedeF15DidBeginUpdatesyyAA0cdeF0CF",
- "moduleName": "ApptentiveKit",
- "genericSig": "<τ_0_0 where τ_0_0 : ApptentiveKit.MessageCenterViewModelDelegate>",
- "sugared_genericSig": "",
- "protocolReq": true,
- "reqNewWitnessTableEntry": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "messageCenterViewModel",
- "printedName": "messageCenterViewModel(_:didInsertSectionsWith:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "MessageCenterViewModel",
- "printedName": "ApptentiveKit.MessageCenterViewModel",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC"
- },
- {
- "kind": "TypeNominal",
- "name": "IndexSet",
- "printedName": "Foundation.IndexSet",
- "usr": "s:10Foundation8IndexSetV"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit30MessageCenterViewModelDelegateP07messagedeF0_21didInsertSectionsWithyAA0cdeF0C_10Foundation8IndexSetVtF",
- "mangledName": "$s13ApptentiveKit30MessageCenterViewModelDelegateP07messagedeF0_21didInsertSectionsWithyAA0cdeF0C_10Foundation8IndexSetVtF",
- "moduleName": "ApptentiveKit",
- "genericSig": "<τ_0_0 where τ_0_0 : ApptentiveKit.MessageCenterViewModelDelegate>",
- "sugared_genericSig": "",
- "protocolReq": true,
- "reqNewWitnessTableEntry": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "messageCenterViewModel",
- "printedName": "messageCenterViewModel(_:didDeleteSectionsWith:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "MessageCenterViewModel",
- "printedName": "ApptentiveKit.MessageCenterViewModel",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC"
- },
- {
- "kind": "TypeNominal",
- "name": "IndexSet",
- "printedName": "Foundation.IndexSet",
- "usr": "s:10Foundation8IndexSetV"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit30MessageCenterViewModelDelegateP07messagedeF0_21didDeleteSectionsWithyAA0cdeF0C_10Foundation8IndexSetVtF",
- "mangledName": "$s13ApptentiveKit30MessageCenterViewModelDelegateP07messagedeF0_21didDeleteSectionsWithyAA0cdeF0C_10Foundation8IndexSetVtF",
- "moduleName": "ApptentiveKit",
- "genericSig": "<τ_0_0 where τ_0_0 : ApptentiveKit.MessageCenterViewModelDelegate>",
- "sugared_genericSig": "",
- "protocolReq": true,
- "reqNewWitnessTableEntry": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "messageCenterViewModel",
- "printedName": "messageCenterViewModel(_:didDeleteRowsAt:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "MessageCenterViewModel",
- "printedName": "ApptentiveKit.MessageCenterViewModel",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC"
- },
- {
- "kind": "TypeNominal",
- "name": "Array",
- "printedName": "[Foundation.IndexPath]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "IndexPath",
- "printedName": "Foundation.IndexPath",
- "usr": "s:10Foundation9IndexPathV"
- }
- ],
- "usr": "s:Sa"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit30MessageCenterViewModelDelegateP07messagedeF0_15didDeleteRowsAtyAA0cdeF0C_Say10Foundation9IndexPathVGtF",
- "mangledName": "$s13ApptentiveKit30MessageCenterViewModelDelegateP07messagedeF0_15didDeleteRowsAtyAA0cdeF0C_Say10Foundation9IndexPathVGtF",
- "moduleName": "ApptentiveKit",
- "genericSig": "<τ_0_0 where τ_0_0 : ApptentiveKit.MessageCenterViewModelDelegate>",
- "sugared_genericSig": "",
- "protocolReq": true,
- "reqNewWitnessTableEntry": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "messageCenterViewModel",
- "printedName": "messageCenterViewModel(_:didUpdateRowsAt:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "MessageCenterViewModel",
- "printedName": "ApptentiveKit.MessageCenterViewModel",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC"
- },
- {
- "kind": "TypeNominal",
- "name": "Array",
- "printedName": "[Foundation.IndexPath]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "IndexPath",
- "printedName": "Foundation.IndexPath",
- "usr": "s:10Foundation9IndexPathV"
- }
- ],
- "usr": "s:Sa"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit30MessageCenterViewModelDelegateP07messagedeF0_15didUpdateRowsAtyAA0cdeF0C_Say10Foundation9IndexPathVGtF",
- "mangledName": "$s13ApptentiveKit30MessageCenterViewModelDelegateP07messagedeF0_15didUpdateRowsAtyAA0cdeF0C_Say10Foundation9IndexPathVGtF",
- "moduleName": "ApptentiveKit",
- "genericSig": "<τ_0_0 where τ_0_0 : ApptentiveKit.MessageCenterViewModelDelegate>",
- "sugared_genericSig": "",
- "protocolReq": true,
- "reqNewWitnessTableEntry": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "messageCenterViewModel",
- "printedName": "messageCenterViewModel(_:didInsertRowsAt:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "MessageCenterViewModel",
- "printedName": "ApptentiveKit.MessageCenterViewModel",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC"
- },
- {
- "kind": "TypeNominal",
- "name": "Array",
- "printedName": "[Foundation.IndexPath]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "IndexPath",
- "printedName": "Foundation.IndexPath",
- "usr": "s:10Foundation9IndexPathV"
- }
- ],
- "usr": "s:Sa"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit30MessageCenterViewModelDelegateP07messagedeF0_15didInsertRowsAtyAA0cdeF0C_Say10Foundation9IndexPathVGtF",
- "mangledName": "$s13ApptentiveKit30MessageCenterViewModelDelegateP07messagedeF0_15didInsertRowsAtyAA0cdeF0C_Say10Foundation9IndexPathVGtF",
- "moduleName": "ApptentiveKit",
- "genericSig": "<τ_0_0 where τ_0_0 : ApptentiveKit.MessageCenterViewModelDelegate>",
- "sugared_genericSig": "",
- "protocolReq": true,
- "reqNewWitnessTableEntry": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "messageCenterViewModel",
- "printedName": "messageCenterViewModel(_:didMoveRowsAt:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "MessageCenterViewModel",
- "printedName": "ApptentiveKit.MessageCenterViewModel",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC"
- },
- {
- "kind": "TypeNominal",
- "name": "Array",
- "printedName": "[(Foundation.IndexPath, Foundation.IndexPath)]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Tuple",
- "printedName": "(Foundation.IndexPath, Foundation.IndexPath)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "IndexPath",
- "printedName": "Foundation.IndexPath",
- "usr": "s:10Foundation9IndexPathV"
- },
- {
- "kind": "TypeNominal",
- "name": "IndexPath",
- "printedName": "Foundation.IndexPath",
- "usr": "s:10Foundation9IndexPathV"
- }
- ]
- }
- ],
- "usr": "s:Sa"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit30MessageCenterViewModelDelegateP07messagedeF0_13didMoveRowsAtyAA0cdeF0C_Say10Foundation9IndexPathV_AJtGtF",
- "mangledName": "$s13ApptentiveKit30MessageCenterViewModelDelegateP07messagedeF0_13didMoveRowsAtyAA0cdeF0C_Say10Foundation9IndexPathV_AJtGtF",
- "moduleName": "ApptentiveKit",
- "genericSig": "<τ_0_0 where τ_0_0 : ApptentiveKit.MessageCenterViewModelDelegate>",
- "sugared_genericSig": "",
- "protocolReq": true,
- "reqNewWitnessTableEntry": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "messageCenterViewModelDidEndUpdates",
- "printedName": "messageCenterViewModelDidEndUpdates(_:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "MessageCenterViewModel",
- "printedName": "ApptentiveKit.MessageCenterViewModel",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit30MessageCenterViewModelDelegateP07messagedeF13DidEndUpdatesyyAA0cdeF0CF",
- "mangledName": "$s13ApptentiveKit30MessageCenterViewModelDelegateP07messagedeF13DidEndUpdatesyyAA0cdeF0CF",
- "moduleName": "ApptentiveKit",
- "genericSig": "<τ_0_0 where τ_0_0 : ApptentiveKit.MessageCenterViewModelDelegate>",
- "sugared_genericSig": "",
- "protocolReq": true,
- "reqNewWitnessTableEntry": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "messageCenterViewModelMessageListDidLoad",
- "printedName": "messageCenterViewModelMessageListDidLoad(_:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "MessageCenterViewModel",
- "printedName": "ApptentiveKit.MessageCenterViewModel",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit30MessageCenterViewModelDelegateP07messagedefC11ListDidLoadyyAA0cdeF0CF",
- "mangledName": "$s13ApptentiveKit30MessageCenterViewModelDelegateP07messagedefC11ListDidLoadyyAA0cdeF0CF",
- "moduleName": "ApptentiveKit",
- "genericSig": "<τ_0_0 where τ_0_0 : ApptentiveKit.MessageCenterViewModelDelegate>",
- "sugared_genericSig": "",
- "protocolReq": true,
- "reqNewWitnessTableEntry": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "messageCenterViewModelDraftMessageDidUpdate",
- "printedName": "messageCenterViewModelDraftMessageDidUpdate(_:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "MessageCenterViewModel",
- "printedName": "ApptentiveKit.MessageCenterViewModel",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit30MessageCenterViewModelDelegateP07messagedef5DraftC9DidUpdateyyAA0cdeF0CF",
- "mangledName": "$s13ApptentiveKit30MessageCenterViewModelDelegateP07messagedef5DraftC9DidUpdateyyAA0cdeF0CF",
- "moduleName": "ApptentiveKit",
- "genericSig": "<τ_0_0 where τ_0_0 : ApptentiveKit.MessageCenterViewModelDelegate>",
- "sugared_genericSig": "",
- "protocolReq": true,
- "reqNewWitnessTableEntry": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "messageCenterViewModel",
- "printedName": "messageCenterViewModel(_:didFailToRemoveAttachmentAt:with:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "MessageCenterViewModel",
- "printedName": "ApptentiveKit.MessageCenterViewModel",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC"
- },
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- },
- {
- "kind": "TypeNominal",
- "name": "Error",
- "printedName": "Swift.Error",
- "usr": "s:s5ErrorP"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit30MessageCenterViewModelDelegateP07messagedeF0_27didFailToRemoveAttachmentAt4withyAA0cdeF0C_Sis5Error_ptF",
- "mangledName": "$s13ApptentiveKit30MessageCenterViewModelDelegateP07messagedeF0_27didFailToRemoveAttachmentAt4withyAA0cdeF0C_Sis5Error_ptF",
- "moduleName": "ApptentiveKit",
- "genericSig": "<τ_0_0 where τ_0_0 : ApptentiveKit.MessageCenterViewModelDelegate>",
- "sugared_genericSig": "",
- "protocolReq": true,
- "reqNewWitnessTableEntry": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "messageCenterViewModel",
- "printedName": "messageCenterViewModel(_:didFailToAddAttachmentWith:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "MessageCenterViewModel",
- "printedName": "ApptentiveKit.MessageCenterViewModel",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC"
- },
- {
- "kind": "TypeNominal",
- "name": "Error",
- "printedName": "Swift.Error",
- "usr": "s:s5ErrorP"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit30MessageCenterViewModelDelegateP07messagedeF0_26didFailToAddAttachmentWithyAA0cdeF0C_s5Error_ptF",
- "mangledName": "$s13ApptentiveKit30MessageCenterViewModelDelegateP07messagedeF0_26didFailToAddAttachmentWithyAA0cdeF0C_s5Error_ptF",
- "moduleName": "ApptentiveKit",
- "genericSig": "<τ_0_0 where τ_0_0 : ApptentiveKit.MessageCenterViewModelDelegate>",
- "sugared_genericSig": "",
- "protocolReq": true,
- "reqNewWitnessTableEntry": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "messageCenterViewModel",
- "printedName": "messageCenterViewModel(_:didFailToSendMessageWith:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "MessageCenterViewModel",
- "printedName": "ApptentiveKit.MessageCenterViewModel",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC"
- },
- {
- "kind": "TypeNominal",
- "name": "Error",
- "printedName": "Swift.Error",
- "usr": "s:s5ErrorP"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit30MessageCenterViewModelDelegateP07messagedeF0_013didFailToSendC4WithyAA0cdeF0C_s5Error_ptF",
- "mangledName": "$s13ApptentiveKit30MessageCenterViewModelDelegateP07messagedeF0_013didFailToSendC4WithyAA0cdeF0C_s5Error_ptF",
- "moduleName": "ApptentiveKit",
- "genericSig": "<τ_0_0 where τ_0_0 : ApptentiveKit.MessageCenterViewModelDelegate>",
- "sugared_genericSig": "",
- "protocolReq": true,
- "reqNewWitnessTableEntry": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "messageCenterViewModel",
- "printedName": "messageCenterViewModel(_:attachmentDownloadDidFinishAt:inMessageAt:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "MessageCenterViewModel",
- "printedName": "ApptentiveKit.MessageCenterViewModel",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC"
- },
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- },
- {
- "kind": "TypeNominal",
- "name": "IndexPath",
- "printedName": "Foundation.IndexPath",
- "usr": "s:10Foundation9IndexPathV"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit30MessageCenterViewModelDelegateP07messagedeF0_29attachmentDownloadDidFinishAt02incM0yAA0cdeF0C_Si10Foundation9IndexPathVtF",
- "mangledName": "$s13ApptentiveKit30MessageCenterViewModelDelegateP07messagedeF0_29attachmentDownloadDidFinishAt02incM0yAA0cdeF0C_Si10Foundation9IndexPathVtF",
- "moduleName": "ApptentiveKit",
- "genericSig": "<τ_0_0 where τ_0_0 : ApptentiveKit.MessageCenterViewModelDelegate>",
- "sugared_genericSig": "",
- "protocolReq": true,
- "reqNewWitnessTableEntry": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "messageCenterViewModel",
- "printedName": "messageCenterViewModel(_:attachmentDownloadDidFailAt:inMessageAt:with:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "MessageCenterViewModel",
- "printedName": "ApptentiveKit.MessageCenterViewModel",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC"
- },
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- },
- {
- "kind": "TypeNominal",
- "name": "IndexPath",
- "printedName": "Foundation.IndexPath",
- "usr": "s:10Foundation9IndexPathV"
- },
- {
- "kind": "TypeNominal",
- "name": "Error",
- "printedName": "Swift.Error",
- "usr": "s:s5ErrorP"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit30MessageCenterViewModelDelegateP07messagedeF0_27attachmentDownloadDidFailAt02incM04withyAA0cdeF0C_Si10Foundation9IndexPathVs5Error_ptF",
- "mangledName": "$s13ApptentiveKit30MessageCenterViewModelDelegateP07messagedeF0_27attachmentDownloadDidFailAt02incM04withyAA0cdeF0C_Si10Foundation9IndexPathVs5Error_ptF",
- "moduleName": "ApptentiveKit",
- "genericSig": "<τ_0_0 where τ_0_0 : ApptentiveKit.MessageCenterViewModelDelegate>",
- "sugared_genericSig": "",
- "protocolReq": true,
- "reqNewWitnessTableEntry": true,
- "funcSelfKind": "NonMutating"
- }
- ],
- "declKind": "Protocol",
- "usr": "s:13ApptentiveKit30MessageCenterViewModelDelegateP",
- "mangledName": "$s13ApptentiveKit30MessageCenterViewModelDelegateP",
- "moduleName": "ApptentiveKit",
- "genericSig": "<τ_0_0 : AnyObject>",
- "sugared_genericSig": "",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "MessageCenterViewModel",
- "printedName": "MessageCenterViewModel",
- "children": [
- {
- "kind": "Var",
- "name": "headingTitle",
- "printedName": "headingTitle",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC12headingTitleSSvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC12headingTitleSSvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC12headingTitleSSvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC12headingTitleSSvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "branding",
- "printedName": "branding",
- "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": "s:13ApptentiveKit22MessageCenterViewModelC8brandingSSSgvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC8brandingSSSgvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "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": "s:13ApptentiveKit22MessageCenterViewModelC8brandingSSSgvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC8brandingSSSgvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "composerTitle",
- "printedName": "composerTitle",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC13composerTitleSSvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC13composerTitleSSvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC13composerTitleSSvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC13composerTitleSSvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "composerSendButtonTitle",
- "printedName": "composerSendButtonTitle",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC23composerSendButtonTitleSSvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC23composerSendButtonTitleSSvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC23composerSendButtonTitleSSvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC23composerSendButtonTitleSSvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "composerAttachButtonTitle",
- "printedName": "composerAttachButtonTitle",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC25composerAttachButtonTitleSSvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC25composerAttachButtonTitleSSvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC25composerAttachButtonTitleSSvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC25composerAttachButtonTitleSSvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "composerPlaceholderText",
- "printedName": "composerPlaceholderText",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC23composerPlaceholderTextSSvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC23composerPlaceholderTextSSvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC23composerPlaceholderTextSSvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC23composerPlaceholderTextSSvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "composerCloseConfirmBody",
- "printedName": "composerCloseConfirmBody",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC24composerCloseConfirmBodySSvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC24composerCloseConfirmBodySSvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC24composerCloseConfirmBodySSvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC24composerCloseConfirmBodySSvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "composerCloseDiscardButtonTitle",
- "printedName": "composerCloseDiscardButtonTitle",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC31composerCloseDiscardButtonTitleSSvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC31composerCloseDiscardButtonTitleSSvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC31composerCloseDiscardButtonTitleSSvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC31composerCloseDiscardButtonTitleSSvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "composerCloseCancelButtonTitle",
- "printedName": "composerCloseCancelButtonTitle",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC30composerCloseCancelButtonTitleSSvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC30composerCloseCancelButtonTitleSSvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC30composerCloseCancelButtonTitleSSvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC30composerCloseCancelButtonTitleSSvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "greetingTitle",
- "printedName": "greetingTitle",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC13greetingTitleSSvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC13greetingTitleSSvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC13greetingTitleSSvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC13greetingTitleSSvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "greetingBody",
- "printedName": "greetingBody",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC12greetingBodySSvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC12greetingBodySSvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC12greetingBodySSvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC12greetingBodySSvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "greetingImageURL",
- "printedName": "greetingImageURL",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "URL",
- "printedName": "Foundation.URL",
- "usr": "s:10Foundation3URLV"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC16greetingImageURL10Foundation0I0Vvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC16greetingImageURL10Foundation0I0Vvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "URL",
- "printedName": "Foundation.URL",
- "usr": "s:10Foundation3URLV"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC16greetingImageURL10Foundation0I0Vvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC16greetingImageURL10Foundation0I0Vvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "statusBody",
- "printedName": "statusBody",
- "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": "s:13ApptentiveKit22MessageCenterViewModelC10statusBodySSSgvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC10statusBodySSSgvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "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": "s:13ApptentiveKit22MessageCenterViewModelC10statusBodySSSgvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC10statusBodySSSgvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "groupedMessages",
- "printedName": "groupedMessages",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Array",
- "printedName": "[[ApptentiveKit.MessageCenterViewModel.Message]]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Array",
- "printedName": "[ApptentiveKit.MessageCenterViewModel.Message]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Message",
- "printedName": "ApptentiveKit.MessageCenterViewModel.Message",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C"
- }
- ],
- "usr": "s:Sa"
- }
- ],
- "usr": "s:Sa"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC15groupedMessagesSaySayAC0C0CGGvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC15groupedMessagesSaySayAC0C0CGGvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Array",
- "printedName": "[[ApptentiveKit.MessageCenterViewModel.Message]]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Array",
- "printedName": "[ApptentiveKit.MessageCenterViewModel.Message]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Message",
- "printedName": "ApptentiveKit.MessageCenterViewModel.Message",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C"
- }
- ],
- "usr": "s:Sa"
- }
- ],
- "usr": "s:Sa"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC15groupedMessagesSaySayAC0C0CGGvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC15groupedMessagesSaySayAC0C0CGGvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Array",
- "printedName": "[[ApptentiveKit.MessageCenterViewModel.Message]]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Array",
- "printedName": "[ApptentiveKit.MessageCenterViewModel.Message]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Message",
- "printedName": "ApptentiveKit.MessageCenterViewModel.Message",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C"
- }
- ],
- "usr": "s:Sa"
- }
- ],
- "usr": "s:Sa"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC15groupedMessagesSaySayAC0C0CGGvs",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC15groupedMessagesSaySayAC0C0CGGvs",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC15groupedMessagesSaySayAC0C0CGGvM",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC15groupedMessagesSaySayAC0C0CGGvM",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "hasLoadedMessages",
- "printedName": "hasLoadedMessages",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC17hasLoadedMessagesSbvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC17hasLoadedMessagesSbvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC17hasLoadedMessagesSbvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC17hasLoadedMessagesSbvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "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": "s:13ApptentiveKit22MessageCenterViewModelC17hasLoadedMessagesSbvs",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC17hasLoadedMessagesSbvs",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC17hasLoadedMessagesSbvM",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC17hasLoadedMessagesSbvM",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "thumbnailSize",
- "printedName": "thumbnailSize",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "CGSize",
- "printedName": "CoreFoundation.CGSize",
- "usr": "c:@S@CGSize"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC13thumbnailSizeSo6CGSizeVvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC13thumbnailSizeSo6CGSizeVvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "CGSize",
- "printedName": "CoreFoundation.CGSize",
- "usr": "c:@S@CGSize"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC13thumbnailSizeSo6CGSizeVvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC13thumbnailSizeSo6CGSizeVvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "CGSize",
- "printedName": "CoreFoundation.CGSize",
- "usr": "c:@S@CGSize"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC13thumbnailSizeSo6CGSizeVvs",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC13thumbnailSizeSo6CGSizeVvs",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC13thumbnailSizeSo6CGSizeVvM",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC13thumbnailSizeSo6CGSizeVvM",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "profileNamePlaceholder",
- "printedName": "profileNamePlaceholder",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC22profileNamePlaceholderSSvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC22profileNamePlaceholderSSvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC22profileNamePlaceholderSSvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC22profileNamePlaceholderSSvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "profileEmailPlaceholder",
- "printedName": "profileEmailPlaceholder",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC23profileEmailPlaceholderSSvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC23profileEmailPlaceholderSSvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC23profileEmailPlaceholderSSvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC23profileEmailPlaceholderSSvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "profileCancelButtonText",
- "printedName": "profileCancelButtonText",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC23profileCancelButtonTextSSvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC23profileCancelButtonTextSSvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC23profileCancelButtonTextSSvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC23profileCancelButtonTextSSvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "profileSaveButtonText",
- "printedName": "profileSaveButtonText",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC21profileSaveButtonTextSSvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC21profileSaveButtonTextSSvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC21profileSaveButtonTextSSvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC21profileSaveButtonTextSSvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "editProfileViewTitle",
- "printedName": "editProfileViewTitle",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC011editProfileE5TitleSSvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC011editProfileE5TitleSSvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC011editProfileE5TitleSSvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC011editProfileE5TitleSSvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "editProfileNamePlaceholder",
- "printedName": "editProfileNamePlaceholder",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC26editProfileNamePlaceholderSSvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC26editProfileNamePlaceholderSSvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC26editProfileNamePlaceholderSSvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC26editProfileNamePlaceholderSSvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "editProfileEmailPlaceholder",
- "printedName": "editProfileEmailPlaceholder",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC27editProfileEmailPlaceholderSSvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC27editProfileEmailPlaceholderSSvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC27editProfileEmailPlaceholderSSvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC27editProfileEmailPlaceholderSSvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "editProfileCancelButtonText",
- "printedName": "editProfileCancelButtonText",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC27editProfileCancelButtonTextSSvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC27editProfileCancelButtonTextSSvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC27editProfileCancelButtonTextSSvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC27editProfileCancelButtonTextSSvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "editProfileSaveButtonText",
- "printedName": "editProfileSaveButtonText",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC25editProfileSaveButtonTextSSvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC25editProfileSaveButtonTextSSvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC25editProfileSaveButtonTextSSvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC25editProfileSaveButtonTextSSvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "profileMode",
- "printedName": "profileMode",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ProfileMode",
- "printedName": "ApptentiveKit.MessageCenterViewModel.ProfileMode",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC11ProfileModeO"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC11profileModeAC07ProfileH0Ovp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC11profileModeAC07ProfileH0Ovp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ProfileMode",
- "printedName": "ApptentiveKit.MessageCenterViewModel.ProfileMode",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC11ProfileModeO"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC11profileModeAC07ProfileH0Ovg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC11profileModeAC07ProfileH0Ovg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "closeButtonAccessibilityLabel",
- "printedName": "closeButtonAccessibilityLabel",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC29closeButtonAccessibilityLabelSSvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC29closeButtonAccessibilityLabelSSvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC29closeButtonAccessibilityLabelSSvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC29closeButtonAccessibilityLabelSSvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "closeButtonAccessibilityHint",
- "printedName": "closeButtonAccessibilityHint",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC28closeButtonAccessibilityHintSSvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC28closeButtonAccessibilityHintSSvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC28closeButtonAccessibilityHintSSvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC28closeButtonAccessibilityHintSSvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "profileButtonAccessibilityLabel",
- "printedName": "profileButtonAccessibilityLabel",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC31profileButtonAccessibilityLabelSSvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC31profileButtonAccessibilityLabelSSvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC31profileButtonAccessibilityLabelSSvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC31profileButtonAccessibilityLabelSSvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "profileButtonAccessibilityHint",
- "printedName": "profileButtonAccessibilityHint",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC30profileButtonAccessibilityHintSSvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC30profileButtonAccessibilityHintSSvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC30profileButtonAccessibilityHintSSvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC30profileButtonAccessibilityHintSSvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "sendButtonAccessibilityLabel",
- "printedName": "sendButtonAccessibilityLabel",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC28sendButtonAccessibilityLabelSSvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC28sendButtonAccessibilityLabelSSvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC28sendButtonAccessibilityLabelSSvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC28sendButtonAccessibilityLabelSSvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "sendButtonAccessibilityHint",
- "printedName": "sendButtonAccessibilityHint",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC27sendButtonAccessibilityHintSSvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC27sendButtonAccessibilityHintSSvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC27sendButtonAccessibilityHintSSvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC27sendButtonAccessibilityHintSSvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "attachButtonAccessibilityLabel",
- "printedName": "attachButtonAccessibilityLabel",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC30attachButtonAccessibilityLabelSSvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC30attachButtonAccessibilityLabelSSvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC30attachButtonAccessibilityLabelSSvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC30attachButtonAccessibilityLabelSSvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "attachButtonAccessibilityHint",
- "printedName": "attachButtonAccessibilityHint",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC29attachButtonAccessibilityHintSSvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC29attachButtonAccessibilityHintSSvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC29attachButtonAccessibilityHintSSvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC29attachButtonAccessibilityHintSSvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "attachmentOptionsTitle",
- "printedName": "attachmentOptionsTitle",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC22attachmentOptionsTitleSSvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC22attachmentOptionsTitleSSvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC22attachmentOptionsTitleSSvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC22attachmentOptionsTitleSSvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "attachmentOptionsImagesButton",
- "printedName": "attachmentOptionsImagesButton",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC29attachmentOptionsImagesButtonSSvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC29attachmentOptionsImagesButtonSSvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC29attachmentOptionsImagesButtonSSvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC29attachmentOptionsImagesButtonSSvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "attachmentOptionsFilesButton",
- "printedName": "attachmentOptionsFilesButton",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC28attachmentOptionsFilesButtonSSvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC28attachmentOptionsFilesButtonSSvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC28attachmentOptionsFilesButtonSSvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC28attachmentOptionsFilesButtonSSvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "attachmentOptionsCancelButton",
- "printedName": "attachmentOptionsCancelButton",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC29attachmentOptionsCancelButtonSSvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC29attachmentOptionsCancelButtonSSvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC29attachmentOptionsCancelButtonSSvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC29attachmentOptionsCancelButtonSSvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "showAttachmentButtonAccessibilityHint",
- "printedName": "showAttachmentButtonAccessibilityHint",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC37showAttachmentButtonAccessibilityHintSSvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC37showAttachmentButtonAccessibilityHintSSvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC37showAttachmentButtonAccessibilityHintSSvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC37showAttachmentButtonAccessibilityHintSSvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "downloadAttachmentButtonAccessibilityHint",
- "printedName": "downloadAttachmentButtonAccessibilityHint",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC41downloadAttachmentButtonAccessibilityHintSSvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC41downloadAttachmentButtonAccessibilityHintSSvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC41downloadAttachmentButtonAccessibilityHintSSvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC41downloadAttachmentButtonAccessibilityHintSSvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "emailAddress",
- "printedName": "emailAddress",
- "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": "s:13ApptentiveKit22MessageCenterViewModelC12emailAddressSSSgvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC12emailAddressSSSgvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC12emailAddressSSSgvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC12emailAddressSSSgvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "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": "s:13ApptentiveKit22MessageCenterViewModelC12emailAddressSSSgvs",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC12emailAddressSSSgvs",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC12emailAddressSSSgvM",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC12emailAddressSSSgvM",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "name",
- "printedName": "name",
- "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": "s:13ApptentiveKit22MessageCenterViewModelC4nameSSSgvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC4nameSSSgvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC4nameSSSgvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC4nameSSSgvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "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": "s:13ApptentiveKit22MessageCenterViewModelC4nameSSSgvs",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC4nameSSSgvs",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC4nameSSSgvM",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC4nameSSSgvM",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "profileIsValid",
- "printedName": "profileIsValid",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC14profileIsValidSbvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC14profileIsValidSbvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC14profileIsValidSbvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC14profileIsValidSbvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "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": "s:13ApptentiveKit22MessageCenterViewModelC14profileIsValidSbvs",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC14profileIsValidSbvs",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC14profileIsValidSbvM",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC14profileIsValidSbvM",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "shouldRequestProfile",
- "printedName": "shouldRequestProfile",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC20shouldRequestProfileSbvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC20shouldRequestProfileSbvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC20shouldRequestProfileSbvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC20shouldRequestProfileSbvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "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": "s:13ApptentiveKit22MessageCenterViewModelC20shouldRequestProfileSbvs",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC20shouldRequestProfileSbvs",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC20shouldRequestProfileSbvM",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC20shouldRequestProfileSbvM",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "ProfileMode",
- "printedName": "ProfileMode",
- "children": [
- {
- "kind": "Var",
- "name": "optionalEmail",
- "printedName": "optionalEmail",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.MessageCenterViewModel.ProfileMode.Type) -> ApptentiveKit.MessageCenterViewModel.ProfileMode",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ProfileMode",
- "printedName": "ApptentiveKit.MessageCenterViewModel.ProfileMode",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC11ProfileModeO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.MessageCenterViewModel.ProfileMode.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ProfileMode",
- "printedName": "ApptentiveKit.MessageCenterViewModel.ProfileMode",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC11ProfileModeO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC11ProfileModeO13optionalEmailyA2EmF",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC11ProfileModeO13optionalEmailyA2EmF",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "Var",
- "name": "requiredEmail",
- "printedName": "requiredEmail",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.MessageCenterViewModel.ProfileMode.Type) -> ApptentiveKit.MessageCenterViewModel.ProfileMode",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ProfileMode",
- "printedName": "ApptentiveKit.MessageCenterViewModel.ProfileMode",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC11ProfileModeO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.MessageCenterViewModel.ProfileMode.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ProfileMode",
- "printedName": "ApptentiveKit.MessageCenterViewModel.ProfileMode",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC11ProfileModeO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC11ProfileModeO13requiredEmailyA2EmF",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC11ProfileModeO13requiredEmailyA2EmF",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "Var",
- "name": "hidden",
- "printedName": "hidden",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.MessageCenterViewModel.ProfileMode.Type) -> ApptentiveKit.MessageCenterViewModel.ProfileMode",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ProfileMode",
- "printedName": "ApptentiveKit.MessageCenterViewModel.ProfileMode",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC11ProfileModeO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.MessageCenterViewModel.ProfileMode.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ProfileMode",
- "printedName": "ApptentiveKit.MessageCenterViewModel.ProfileMode",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC11ProfileModeO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC11ProfileModeO6hiddenyA2EmF",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC11ProfileModeO6hiddenyA2EmF",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "Function",
- "name": "==",
- "printedName": "==(_:_:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- },
- {
- "kind": "TypeNominal",
- "name": "ProfileMode",
- "printedName": "ApptentiveKit.MessageCenterViewModel.ProfileMode",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC11ProfileModeO"
- },
- {
- "kind": "TypeNominal",
- "name": "ProfileMode",
- "printedName": "ApptentiveKit.MessageCenterViewModel.ProfileMode",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC11ProfileModeO"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC11ProfileModeO2eeoiySbAE_AEtFZ",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC11ProfileModeO2eeoiySbAE_AEtFZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Var",
- "name": "hashValue",
- "printedName": "hashValue",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC11ProfileModeO9hashValueSivp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC11ProfileModeO9hashValueSivp",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC11ProfileModeO9hashValueSivg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC11ProfileModeO9hashValueSivg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Function",
- "name": "hash",
- "printedName": "hash(into:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Hasher",
- "printedName": "Swift.Hasher",
- "paramValueOwnership": "InOut",
- "usr": "s:s6HasherV"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC11ProfileModeO4hash4intoys6HasherVz_tF",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC11ProfileModeO4hash4intoys6HasherVz_tF",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "funcSelfKind": "NonMutating"
- }
- ],
- "declKind": "Enum",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC11ProfileModeO",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC11ProfileModeO",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "conformances": [
- {
- "kind": "Conformance",
- "name": "Equatable",
- "printedName": "Equatable",
- "usr": "s:SQ",
- "mangledName": "$sSQ"
- },
- {
- "kind": "Conformance",
- "name": "Hashable",
- "printedName": "Hashable",
- "usr": "s:SH",
- "mangledName": "$sSH"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "oldestUnreadMessageIndexPath",
- "printedName": "oldestUnreadMessageIndexPath",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Foundation.IndexPath?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "IndexPath",
- "printedName": "Foundation.IndexPath",
- "usr": "s:10Foundation9IndexPathV"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC012oldestUnreadC9IndexPath10Foundation0iJ0VSgvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC012oldestUnreadC9IndexPath10Foundation0iJ0VSgvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Foundation.IndexPath?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "IndexPath",
- "printedName": "Foundation.IndexPath",
- "usr": "s:10Foundation9IndexPathV"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC012oldestUnreadC9IndexPath10Foundation0iJ0VSgvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC012oldestUnreadC9IndexPath10Foundation0iJ0VSgvg",
- "moduleName": "ApptentiveKit",
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "newestMessageIndexPath",
- "printedName": "newestMessageIndexPath",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Foundation.IndexPath?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "IndexPath",
- "printedName": "Foundation.IndexPath",
- "usr": "s:10Foundation9IndexPathV"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC06newestC9IndexPath10Foundation0hI0VSgvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC06newestC9IndexPath10Foundation0hI0VSgvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Foundation.IndexPath?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "IndexPath",
- "printedName": "Foundation.IndexPath",
- "usr": "s:10Foundation9IndexPathV"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC06newestC9IndexPath10Foundation0hI0VSgvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC06newestC9IndexPath10Foundation0hI0VSgvg",
- "moduleName": "ApptentiveKit",
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Function",
- "name": "commitProfileEdits",
- "printedName": "commitProfileEdits()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC18commitProfileEditsyyF",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC18commitProfileEditsyyF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "cancelProfileEdits",
- "printedName": "cancelProfileEdits()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC18cancelProfileEditsyyF",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC18cancelProfileEditsyyF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "launch",
- "printedName": "launch()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC6launchyyF",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC6launchyyF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "cancel",
- "printedName": "cancel()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC6cancelyyF",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC6cancelyyF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Var",
- "name": "numberOfMessageGroups",
- "printedName": "numberOfMessageGroups",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC08numberOfC6GroupsSivp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC08numberOfC6GroupsSivp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC08numberOfC6GroupsSivg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC08numberOfC6GroupsSivg",
- "moduleName": "ApptentiveKit",
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Function",
- "name": "markMessageAsRead",
- "printedName": "markMessageAsRead(at:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "IndexPath",
- "printedName": "Foundation.IndexPath",
- "usr": "s:10Foundation9IndexPathV"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC04markC6AsRead2aty10Foundation9IndexPathV_tF",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC04markC6AsRead2aty10Foundation9IndexPathV_tF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "numberOfMessagesInGroup",
- "printedName": "numberOfMessagesInGroup(at:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- },
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC23numberOfMessagesInGroup2atS2i_tF",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC23numberOfMessagesInGroup2atS2i_tF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "dateStringForMessagesInGroup",
- "printedName": "dateStringForMessagesInGroup(at:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC28dateStringForMessagesInGroup2atSSSgSi_tF",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC28dateStringForMessagesInGroup2atSSSgSi_tF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "message",
- "printedName": "message(at:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Message",
- "printedName": "ApptentiveKit.MessageCenterViewModel.Message",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C"
- },
- {
- "kind": "TypeNominal",
- "name": "IndexPath",
- "printedName": "Foundation.IndexPath",
- "usr": "s:10Foundation9IndexPathV"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC7message2atAC0C0C10Foundation9IndexPathV_tF",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC7message2atAC0C0C10Foundation9IndexPathV_tF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "downloadAttachment",
- "printedName": "downloadAttachment(at:inMessageAt:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- },
- {
- "kind": "TypeNominal",
- "name": "IndexPath",
- "printedName": "Foundation.IndexPath",
- "usr": "s:10Foundation9IndexPathV"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC18downloadAttachment2at02inC2AtySi_10Foundation9IndexPathVtF",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC18downloadAttachment2at02inC2AtySi_10Foundation9IndexPathVtF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Var",
- "name": "draftMessage",
- "printedName": "draftMessage",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Message",
- "printedName": "ApptentiveKit.MessageCenterViewModel.Message",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC05draftC0AC0C0Cvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC05draftC0AC0C0Cvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "HasStorage",
- "SetterAccess",
- "AccessControl",
- "RawDocComment"
- ],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Message",
- "printedName": "ApptentiveKit.MessageCenterViewModel.Message",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC05draftC0AC0C0Cvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC05draftC0AC0C0Cvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "draftMessageBody",
- "printedName": "draftMessageBody",
- "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": "s:13ApptentiveKit22MessageCenterViewModelC05draftC4BodySSSgvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC05draftC4BodySSSgvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC05draftC4BodySSSgvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC05draftC4BodySSSgvg",
- "moduleName": "ApptentiveKit",
- "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": "s:13ApptentiveKit22MessageCenterViewModelC05draftC4BodySSSgvs",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC05draftC4BodySSSgvs",
- "moduleName": "ApptentiveKit",
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC05draftC4BodySSSgvM",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC05draftC4BodySSSgvM",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "draftAttachments",
- "printedName": "draftAttachments",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Array",
- "printedName": "[ApptentiveKit.MessageCenterViewModel.Message.Attachment]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Attachment",
- "printedName": "ApptentiveKit.MessageCenterViewModel.Message.Attachment",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10AttachmentC"
- }
- ],
- "usr": "s:Sa"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC16draftAttachmentsSayAC0C0C10AttachmentCGvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC16draftAttachmentsSayAC0C0C10AttachmentCGvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Array",
- "printedName": "[ApptentiveKit.MessageCenterViewModel.Message.Attachment]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Attachment",
- "printedName": "ApptentiveKit.MessageCenterViewModel.Message.Attachment",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10AttachmentC"
- }
- ],
- "usr": "s:Sa"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC16draftAttachmentsSayAC0C0C10AttachmentCGvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC16draftAttachmentsSayAC0C0C10AttachmentCGvg",
- "moduleName": "ApptentiveKit",
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Function",
- "name": "addImageAttachment",
- "printedName": "addImageAttachment(_:name:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIImage",
- "printedName": "UIKit.UIImage",
- "usr": "c:objc(cs)UIImage"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC18addImageAttachment_4nameySo7UIImageC_SSSgtF",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC18addImageAttachment_4nameySo7UIImageC_SSSgtF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "addFileAttachment",
- "printedName": "addFileAttachment(at:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "URL",
- "printedName": "Foundation.URL",
- "usr": "s:10Foundation3URLV"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC17addFileAttachment2aty10Foundation3URLV_tF",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC17addFileAttachment2aty10Foundation3URLV_tF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "removeAttachment",
- "printedName": "removeAttachment(at:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC16removeAttachment2atySi_tF",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC16removeAttachment2atySi_tF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Var",
- "name": "remainingAttachmentSlots",
- "printedName": "remainingAttachmentSlots",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC24remainingAttachmentSlotsSivp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC24remainingAttachmentSlotsSivp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC24remainingAttachmentSlotsSivg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC24remainingAttachmentSlotsSivg",
- "moduleName": "ApptentiveKit",
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "canAddAttachment",
- "printedName": "canAddAttachment",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC16canAddAttachmentSbvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC16canAddAttachmentSbvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC16canAddAttachmentSbvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC16canAddAttachmentSbvg",
- "moduleName": "ApptentiveKit",
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "canSendMessage",
- "printedName": "canSendMessage",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC07canSendC0Sbvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC07canSendC0Sbvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC07canSendC0Sbvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC07canSendC0Sbvg",
- "moduleName": "ApptentiveKit",
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Function",
- "name": "sendMessage",
- "printedName": "sendMessage()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC04sendC0yyF",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC04sendC0yyF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "TypeDecl",
- "name": "Message",
- "printedName": "Message",
- "children": [
- {
- "kind": "Var",
- "name": "nonce",
- "printedName": "nonce",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C5nonceSSvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C5nonceSSvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C5nonceSSvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C5nonceSSvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "direction",
- "printedName": "direction",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Direction",
- "printedName": "ApptentiveKit.MessageCenterViewModel.Message.Direction",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C9DirectionO"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C9directionAE9DirectionOvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C9directionAE9DirectionOvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Direction",
- "printedName": "ApptentiveKit.MessageCenterViewModel.Message.Direction",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C9DirectionO"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C9directionAE9DirectionOvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C9directionAE9DirectionOvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "isAutomated",
- "printedName": "isAutomated",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C11isAutomatedSbvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C11isAutomatedSbvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C11isAutomatedSbvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C11isAutomatedSbvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "attachments",
- "printedName": "attachments",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Array",
- "printedName": "[ApptentiveKit.MessageCenterViewModel.Message.Attachment]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Attachment",
- "printedName": "ApptentiveKit.MessageCenterViewModel.Message.Attachment",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10AttachmentC"
- }
- ],
- "usr": "s:Sa"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C11attachmentsSayAE10AttachmentCGvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C11attachmentsSayAE10AttachmentCGvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Array",
- "printedName": "[ApptentiveKit.MessageCenterViewModel.Message.Attachment]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Attachment",
- "printedName": "ApptentiveKit.MessageCenterViewModel.Message.Attachment",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10AttachmentC"
- }
- ],
- "usr": "s:Sa"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C11attachmentsSayAE10AttachmentCGvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C11attachmentsSayAE10AttachmentCGvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "sender",
- "printedName": "sender",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "ApptentiveKit.MessageCenterViewModel.Message.Sender?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Sender",
- "printedName": "ApptentiveKit.MessageCenterViewModel.Message.Sender",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C6SenderV"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C6senderAE6SenderVSgvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C6senderAE6SenderVSgvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "ApptentiveKit.MessageCenterViewModel.Message.Sender?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Sender",
- "printedName": "ApptentiveKit.MessageCenterViewModel.Message.Sender",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C6SenderV"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C6senderAE6SenderVSgvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C6senderAE6SenderVSgvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "body",
- "printedName": "body",
- "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": "s:13ApptentiveKit22MessageCenterViewModelC0C0C4bodySSSgvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C4bodySSSgvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "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": "s:13ApptentiveKit22MessageCenterViewModelC0C0C4bodySSSgvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C4bodySSSgvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "sentDate",
- "printedName": "sentDate",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Date",
- "printedName": "Foundation.Date",
- "usr": "s:10Foundation4DateV"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C8sentDate10Foundation0H0Vvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C8sentDate10Foundation0H0Vvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Date",
- "printedName": "Foundation.Date",
- "usr": "s:10Foundation4DateV"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C8sentDate10Foundation0H0Vvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C8sentDate10Foundation0H0Vvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "accessibilityLabel",
- "printedName": "accessibilityLabel",
- "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": "s:13ApptentiveKit22MessageCenterViewModelC0C0C18accessibilityLabelSSSgvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C18accessibilityLabelSSSgvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "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": "s:13ApptentiveKit22MessageCenterViewModelC0C0C18accessibilityLabelSSSgvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C18accessibilityLabelSSSgvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "accessibilityHint",
- "printedName": "accessibilityHint",
- "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": "s:13ApptentiveKit22MessageCenterViewModelC0C0C17accessibilityHintSSSgvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C17accessibilityHintSSSgvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "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": "s:13ApptentiveKit22MessageCenterViewModelC0C0C17accessibilityHintSSSgvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C17accessibilityHintSSSgvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "statusText",
- "printedName": "statusText",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10statusTextSSvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C10statusTextSSvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10statusTextSSvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C10statusTextSSvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Function",
- "name": "==",
- "printedName": "==(_:_:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- },
- {
- "kind": "TypeNominal",
- "name": "Message",
- "printedName": "ApptentiveKit.MessageCenterViewModel.Message",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C"
- },
- {
- "kind": "TypeNominal",
- "name": "Message",
- "printedName": "ApptentiveKit.MessageCenterViewModel.Message",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C2eeoiySbAE_AEtFZ",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C2eeoiySbAE_AEtFZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "Final",
- "AccessControl",
- "RawDocComment"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "TypeDecl",
- "name": "Direction",
- "printedName": "Direction",
- "children": [
- {
- "kind": "Var",
- "name": "sentFromDashboard",
- "printedName": "sentFromDashboard",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.MessageCenterViewModel.Message.Direction.Type) -> (ApptentiveKit.MessageCenterViewModel.Message.ReadStatus) -> ApptentiveKit.MessageCenterViewModel.Message.Direction",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.MessageCenterViewModel.Message.ReadStatus) -> ApptentiveKit.MessageCenterViewModel.Message.Direction",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Direction",
- "printedName": "ApptentiveKit.MessageCenterViewModel.Message.Direction",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C9DirectionO"
- },
- {
- "kind": "TypeNominal",
- "name": "ReadStatus",
- "printedName": "ApptentiveKit.MessageCenterViewModel.Message.ReadStatus",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10ReadStatusO"
- }
- ]
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.MessageCenterViewModel.Message.Direction.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Direction",
- "printedName": "ApptentiveKit.MessageCenterViewModel.Message.Direction",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C9DirectionO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C9DirectionO17sentFromDashboardyAgE10ReadStatusOcAGmF",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C9DirectionO17sentFromDashboardyAgE10ReadStatusOcAGmF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "sentFromDevice",
- "printedName": "sentFromDevice",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.MessageCenterViewModel.Message.Direction.Type) -> (ApptentiveKit.MessageCenterViewModel.Message.SentStatus) -> ApptentiveKit.MessageCenterViewModel.Message.Direction",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.MessageCenterViewModel.Message.SentStatus) -> ApptentiveKit.MessageCenterViewModel.Message.Direction",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Direction",
- "printedName": "ApptentiveKit.MessageCenterViewModel.Message.Direction",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C9DirectionO"
- },
- {
- "kind": "TypeNominal",
- "name": "SentStatus",
- "printedName": "ApptentiveKit.MessageCenterViewModel.Message.SentStatus",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10SentStatusO"
- }
- ]
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.MessageCenterViewModel.Message.Direction.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Direction",
- "printedName": "ApptentiveKit.MessageCenterViewModel.Message.Direction",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C9DirectionO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C9DirectionO14sentFromDeviceyAgE10SentStatusOcAGmF",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C9DirectionO14sentFromDeviceyAgE10SentStatusOcAGmF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "automated",
- "printedName": "automated",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.MessageCenterViewModel.Message.Direction.Type) -> ApptentiveKit.MessageCenterViewModel.Message.Direction",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Direction",
- "printedName": "ApptentiveKit.MessageCenterViewModel.Message.Direction",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C9DirectionO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.MessageCenterViewModel.Message.Direction.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Direction",
- "printedName": "ApptentiveKit.MessageCenterViewModel.Message.Direction",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C9DirectionO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C9DirectionO9automatedyA2GmF",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C9DirectionO9automatedyA2GmF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Function",
- "name": "==",
- "printedName": "==(_:_:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- },
- {
- "kind": "TypeNominal",
- "name": "Direction",
- "printedName": "ApptentiveKit.MessageCenterViewModel.Message.Direction",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C9DirectionO"
- },
- {
- "kind": "TypeNominal",
- "name": "Direction",
- "printedName": "ApptentiveKit.MessageCenterViewModel.Message.Direction",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C9DirectionO"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C9DirectionO2eeoiySbAG_AGtFZ",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C9DirectionO2eeoiySbAG_AGtFZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "funcSelfKind": "NonMutating"
- }
- ],
- "declKind": "Enum",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C9DirectionO",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C9DirectionO",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "conformances": [
- {
- "kind": "Conformance",
- "name": "Equatable",
- "printedName": "Equatable",
- "usr": "s:SQ",
- "mangledName": "$sSQ"
- }
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "SentStatus",
- "printedName": "SentStatus",
- "children": [
- {
- "kind": "Var",
- "name": "draft",
- "printedName": "draft",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.MessageCenterViewModel.Message.SentStatus.Type) -> ApptentiveKit.MessageCenterViewModel.Message.SentStatus",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "SentStatus",
- "printedName": "ApptentiveKit.MessageCenterViewModel.Message.SentStatus",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10SentStatusO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.MessageCenterViewModel.Message.SentStatus.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "SentStatus",
- "printedName": "ApptentiveKit.MessageCenterViewModel.Message.SentStatus",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10SentStatusO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10SentStatusO5draftyA2GmF",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C10SentStatusO5draftyA2GmF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "queued",
- "printedName": "queued",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.MessageCenterViewModel.Message.SentStatus.Type) -> ApptentiveKit.MessageCenterViewModel.Message.SentStatus",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "SentStatus",
- "printedName": "ApptentiveKit.MessageCenterViewModel.Message.SentStatus",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10SentStatusO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.MessageCenterViewModel.Message.SentStatus.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "SentStatus",
- "printedName": "ApptentiveKit.MessageCenterViewModel.Message.SentStatus",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10SentStatusO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10SentStatusO6queuedyA2GmF",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C10SentStatusO6queuedyA2GmF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "sending",
- "printedName": "sending",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.MessageCenterViewModel.Message.SentStatus.Type) -> ApptentiveKit.MessageCenterViewModel.Message.SentStatus",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "SentStatus",
- "printedName": "ApptentiveKit.MessageCenterViewModel.Message.SentStatus",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10SentStatusO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.MessageCenterViewModel.Message.SentStatus.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "SentStatus",
- "printedName": "ApptentiveKit.MessageCenterViewModel.Message.SentStatus",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10SentStatusO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10SentStatusO7sendingyA2GmF",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C10SentStatusO7sendingyA2GmF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "sent",
- "printedName": "sent",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.MessageCenterViewModel.Message.SentStatus.Type) -> ApptentiveKit.MessageCenterViewModel.Message.SentStatus",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "SentStatus",
- "printedName": "ApptentiveKit.MessageCenterViewModel.Message.SentStatus",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10SentStatusO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.MessageCenterViewModel.Message.SentStatus.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "SentStatus",
- "printedName": "ApptentiveKit.MessageCenterViewModel.Message.SentStatus",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10SentStatusO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10SentStatusO4sentyA2GmF",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C10SentStatusO4sentyA2GmF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "failed",
- "printedName": "failed",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.MessageCenterViewModel.Message.SentStatus.Type) -> ApptentiveKit.MessageCenterViewModel.Message.SentStatus",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "SentStatus",
- "printedName": "ApptentiveKit.MessageCenterViewModel.Message.SentStatus",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10SentStatusO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.MessageCenterViewModel.Message.SentStatus.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "SentStatus",
- "printedName": "ApptentiveKit.MessageCenterViewModel.Message.SentStatus",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10SentStatusO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10SentStatusO6failedyA2GmF",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C10SentStatusO6failedyA2GmF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "hashValue",
- "printedName": "hashValue",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10SentStatusO9hashValueSivp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C10SentStatusO9hashValueSivp",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10SentStatusO9hashValueSivg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C10SentStatusO9hashValueSivg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Function",
- "name": "hash",
- "printedName": "hash(into:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Hasher",
- "printedName": "Swift.Hasher",
- "paramValueOwnership": "InOut",
- "usr": "s:s6HasherV"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10SentStatusO4hash4intoys6HasherVz_tF",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C10SentStatusO4hash4intoys6HasherVz_tF",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(from:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "SentStatus",
- "printedName": "ApptentiveKit.MessageCenterViewModel.Message.SentStatus",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10SentStatusO"
- },
- {
- "kind": "TypeNominal",
- "name": "Decoder",
- "printedName": "Swift.Decoder",
- "usr": "s:s7DecoderP"
- }
- ],
- "declKind": "Constructor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10SentStatusO4fromAGs7Decoder_p_tKcfc",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C10SentStatusO4fromAGs7Decoder_p_tKcfc",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "throwing": true,
- "init_kind": "Designated"
- },
- {
- "kind": "Function",
- "name": "encode",
- "printedName": "encode(to:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Encoder",
- "printedName": "Swift.Encoder",
- "usr": "s:s7EncoderP"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10SentStatusO6encode2toys7Encoder_p_tKF",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C10SentStatusO6encode2toys7Encoder_p_tKF",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "throwing": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "==",
- "printedName": "==(_:_:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- },
- {
- "kind": "TypeNominal",
- "name": "SentStatus",
- "printedName": "ApptentiveKit.MessageCenterViewModel.Message.SentStatus",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10SentStatusO"
- },
- {
- "kind": "TypeNominal",
- "name": "SentStatus",
- "printedName": "ApptentiveKit.MessageCenterViewModel.Message.SentStatus",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10SentStatusO"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10SentStatusO2eeoiySbAG_AGtFZ",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C10SentStatusO2eeoiySbAG_AGtFZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "funcSelfKind": "NonMutating"
- }
- ],
- "declKind": "Enum",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10SentStatusO",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C10SentStatusO",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "conformances": [
- {
- "kind": "Conformance",
- "name": "Hashable",
- "printedName": "Hashable",
- "usr": "s:SH",
- "mangledName": "$sSH"
- },
- {
- "kind": "Conformance",
- "name": "Decodable",
- "printedName": "Decodable",
- "usr": "s:Se",
- "mangledName": "$sSe"
- },
- {
- "kind": "Conformance",
- "name": "Encodable",
- "printedName": "Encodable",
- "usr": "s:SE",
- "mangledName": "$sSE"
- },
- {
- "kind": "Conformance",
- "name": "Equatable",
- "printedName": "Equatable",
- "usr": "s:SQ",
- "mangledName": "$sSQ"
- }
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "ReadStatus",
- "printedName": "ReadStatus",
- "children": [
- {
- "kind": "Var",
- "name": "read",
- "printedName": "read",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.MessageCenterViewModel.Message.ReadStatus.Type) -> ApptentiveKit.MessageCenterViewModel.Message.ReadStatus",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ReadStatus",
- "printedName": "ApptentiveKit.MessageCenterViewModel.Message.ReadStatus",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10ReadStatusO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.MessageCenterViewModel.Message.ReadStatus.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ReadStatus",
- "printedName": "ApptentiveKit.MessageCenterViewModel.Message.ReadStatus",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10ReadStatusO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10ReadStatusO4readyA2GmF",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C10ReadStatusO4readyA2GmF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "unread",
- "printedName": "unread",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.MessageCenterViewModel.Message.ReadStatus.Type) -> (Swift.String?) -> ApptentiveKit.MessageCenterViewModel.Message.ReadStatus",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(Swift.String?) -> ApptentiveKit.MessageCenterViewModel.Message.ReadStatus",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ReadStatus",
- "printedName": "ApptentiveKit.MessageCenterViewModel.Message.ReadStatus",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10ReadStatusO"
- },
- {
- "kind": "TypeNominal",
- "name": "Tuple",
- "printedName": "(messageID: Swift.String?)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
- }
- ]
- }
- ]
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.MessageCenterViewModel.Message.ReadStatus.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ReadStatus",
- "printedName": "ApptentiveKit.MessageCenterViewModel.Message.ReadStatus",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10ReadStatusO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10ReadStatusO6unreadyAGSSSg_tcAGmF",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C10ReadStatusO6unreadyAGSSSg_tcAGmF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(from:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ReadStatus",
- "printedName": "ApptentiveKit.MessageCenterViewModel.Message.ReadStatus",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10ReadStatusO"
- },
- {
- "kind": "TypeNominal",
- "name": "Decoder",
- "printedName": "Swift.Decoder",
- "usr": "s:s7DecoderP"
- }
- ],
- "declKind": "Constructor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10ReadStatusO4fromAGs7Decoder_p_tKcfc",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C10ReadStatusO4fromAGs7Decoder_p_tKcfc",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "throwing": true,
- "init_kind": "Designated"
- },
- {
- "kind": "Function",
- "name": "encode",
- "printedName": "encode(to:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Encoder",
- "printedName": "Swift.Encoder",
- "usr": "s:s7EncoderP"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10ReadStatusO6encode2toys7Encoder_p_tKF",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C10ReadStatusO6encode2toys7Encoder_p_tKF",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "throwing": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "==",
- "printedName": "==(_:_:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- },
- {
- "kind": "TypeNominal",
- "name": "ReadStatus",
- "printedName": "ApptentiveKit.MessageCenterViewModel.Message.ReadStatus",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10ReadStatusO"
- },
- {
- "kind": "TypeNominal",
- "name": "ReadStatus",
- "printedName": "ApptentiveKit.MessageCenterViewModel.Message.ReadStatus",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10ReadStatusO"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10ReadStatusO2eeoiySbAG_AGtFZ",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C10ReadStatusO2eeoiySbAG_AGtFZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "funcSelfKind": "NonMutating"
- }
- ],
- "declKind": "Enum",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10ReadStatusO",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C10ReadStatusO",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "conformances": [
- {
- "kind": "Conformance",
- "name": "Decodable",
- "printedName": "Decodable",
- "usr": "s:Se",
- "mangledName": "$sSe"
- },
- {
- "kind": "Conformance",
- "name": "Encodable",
- "printedName": "Encodable",
- "usr": "s:SE",
- "mangledName": "$sSE"
- },
- {
- "kind": "Conformance",
- "name": "Equatable",
- "printedName": "Equatable",
- "usr": "s:SQ",
- "mangledName": "$sSQ"
- }
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "Sender",
- "printedName": "Sender",
- "children": [
- {
- "kind": "Function",
- "name": "==",
- "printedName": "==(_:_:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- },
- {
- "kind": "TypeNominal",
- "name": "Sender",
- "printedName": "ApptentiveKit.MessageCenterViewModel.Message.Sender",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C6SenderV"
- },
- {
- "kind": "TypeNominal",
- "name": "Sender",
- "printedName": "ApptentiveKit.MessageCenterViewModel.Message.Sender",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C6SenderV"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C6SenderV2eeoiySbAG_AGtFZ",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C6SenderV2eeoiySbAG_AGtFZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "funcSelfKind": "NonMutating"
- }
- ],
- "declKind": "Struct",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C6SenderV",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C6SenderV",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "conformances": [
- {
- "kind": "Conformance",
- "name": "Equatable",
- "printedName": "Equatable",
- "usr": "s:SQ",
- "mangledName": "$sSQ"
- }
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "Attachment",
- "printedName": "Attachment",
- "children": [
- {
- "kind": "Var",
- "name": "fileExtension",
- "printedName": "fileExtension",
- "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": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10AttachmentC13fileExtensionSSSgvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C10AttachmentC13fileExtensionSSSgvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "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": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10AttachmentC13fileExtensionSSSgvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C10AttachmentC13fileExtensionSSSgvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "thumbnail",
- "printedName": "thumbnail",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "UIKit.UIImage?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIImage",
- "printedName": "UIKit.UIImage",
- "usr": "c:objc(cs)UIImage"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10AttachmentC9thumbnailSo7UIImageCSgvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C10AttachmentC9thumbnailSo7UIImageCSgvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "UIKit.UIImage?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIImage",
- "printedName": "UIKit.UIImage",
- "usr": "c:objc(cs)UIImage"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10AttachmentC9thumbnailSo7UIImageCSgvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C10AttachmentC9thumbnailSo7UIImageCSgvg",
- "moduleName": "ApptentiveKit",
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "downloadProgress",
- "printedName": "downloadProgress",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Float",
- "printedName": "Swift.Float",
- "usr": "s:Sf"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10AttachmentC16downloadProgressSfvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C10AttachmentC16downloadProgressSfvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Float",
- "printedName": "Swift.Float",
- "usr": "s:Sf"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10AttachmentC16downloadProgressSfvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C10AttachmentC16downloadProgressSfvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Float",
- "printedName": "Swift.Float",
- "usr": "s:Sf"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10AttachmentC16downloadProgressSfvs",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C10AttachmentC16downloadProgressSfvs",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10AttachmentC16downloadProgressSfvM",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C10AttachmentC16downloadProgressSfvM",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "localURL",
- "printedName": "localURL",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Foundation.URL?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "URL",
- "printedName": "Foundation.URL",
- "usr": "s:10Foundation3URLV"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10AttachmentC8localURL10Foundation0I0VSgvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C10AttachmentC8localURL10Foundation0I0VSgvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Foundation.URL?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "URL",
- "printedName": "Foundation.URL",
- "usr": "s:10Foundation3URLV"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10AttachmentC8localURL10Foundation0I0VSgvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C10AttachmentC8localURL10Foundation0I0VSgvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Foundation.URL?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "URL",
- "printedName": "Foundation.URL",
- "usr": "s:10Foundation3URLV"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10AttachmentC8localURL10Foundation0I0VSgvs",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C10AttachmentC8localURL10Foundation0I0VSgvs",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10AttachmentC8localURL10Foundation0I0VSgvM",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C10AttachmentC8localURL10Foundation0I0VSgvM",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "displayName",
- "printedName": "displayName",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10AttachmentC11displayNameSSvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C10AttachmentC11displayNameSSvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10AttachmentC11displayNameSSvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C10AttachmentC11displayNameSSvg",
- "moduleName": "ApptentiveKit",
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "previewItemURL",
- "printedName": "previewItemURL",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Foundation.URL?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "URL",
- "printedName": "Foundation.URL",
- "usr": "s:10Foundation3URLV"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10AttachmentC14previewItemURL10Foundation0J0VSgvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C10AttachmentC14previewItemURL10Foundation0J0VSgvp",
- "moduleName": "ApptentiveKit",
- "objc_name": "previewItemURL",
- "declAttributes": [
- "ObjC",
- "AccessControl",
- "RawDocComment"
- ],
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Foundation.URL?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "URL",
- "printedName": "Foundation.URL",
- "usr": "s:10Foundation3URLV"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10AttachmentC14previewItemURL10Foundation0J0VSgvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C10AttachmentC14previewItemURL10Foundation0J0VSgvg",
- "moduleName": "ApptentiveKit",
- "objc_name": "previewItemURL",
- "declAttributes": [
- "ObjC"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "previewItemTitle",
- "printedName": "previewItemTitle",
- "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": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10AttachmentC16previewItemTitleSSSgvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C10AttachmentC16previewItemTitleSSSgvp",
- "moduleName": "ApptentiveKit",
- "objc_name": "previewItemTitle",
- "declAttributes": [
- "ObjC",
- "AccessControl",
- "RawDocComment"
- ],
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10AttachmentC16previewItemTitleSSSgvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C10AttachmentC16previewItemTitleSSSgvg",
- "moduleName": "ApptentiveKit",
- "objc_name": "previewItemTitle",
- "declAttributes": [
- "ObjC"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "accessibilityLabel",
- "printedName": "accessibilityLabel",
- "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": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10AttachmentC18accessibilityLabelSSSgvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C10AttachmentC18accessibilityLabelSSSgvp",
- "moduleName": "ApptentiveKit",
- "overriding": true,
- "objc_name": "accessibilityLabel",
- "declAttributes": [
- "Dynamic",
- "ObjC",
- "Override",
- "AccessControl"
- ],
- "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": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10AttachmentC18accessibilityLabelSSSgvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C10AttachmentC18accessibilityLabelSSSgvg",
- "moduleName": "ApptentiveKit",
- "overriding": true,
- "objc_name": "accessibilityLabel",
- "declAttributes": [
- "Dynamic",
- "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": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10AttachmentC18accessibilityLabelSSSgvs",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C10AttachmentC18accessibilityLabelSSSgvs",
- "moduleName": "ApptentiveKit",
- "overriding": true,
- "objc_name": "setAccessibilityLabel:",
- "declAttributes": [
- "Dynamic",
- "ObjC"
- ],
- "accessorKind": "set"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "removeButtonAccessibilityLabel",
- "printedName": "removeButtonAccessibilityLabel",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10AttachmentC30removeButtonAccessibilityLabelSSvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C10AttachmentC30removeButtonAccessibilityLabelSSvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10AttachmentC30removeButtonAccessibilityLabelSSvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C10AttachmentC30removeButtonAccessibilityLabelSSvg",
- "moduleName": "ApptentiveKit",
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "viewButtonAccessibilityLabel",
- "printedName": "viewButtonAccessibilityLabel",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10AttachmentC28viewButtonAccessibilityLabelSSvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C10AttachmentC28viewButtonAccessibilityLabelSSvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10AttachmentC28viewButtonAccessibilityLabelSSvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C10AttachmentC28viewButtonAccessibilityLabelSSvg",
- "moduleName": "ApptentiveKit",
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Attachment",
- "printedName": "ApptentiveKit.MessageCenterViewModel.Message.Attachment",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10AttachmentC"
- }
- ],
- "declKind": "Constructor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10AttachmentCAGycfc",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C10AttachmentCAGycfc",
- "moduleName": "ApptentiveKit",
- "overriding": true,
- "implicit": true,
- "objc_name": "init",
- "declAttributes": [
- "Dynamic",
- "ObjC",
- "Override"
- ],
- "init_kind": "Designated"
- }
- ],
- "declKind": "Class",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10AttachmentC",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C10AttachmentC",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment",
- "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"
- }
- ]
- }
- ],
- "declKind": "Class",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasMissingDesignatedInitializers": true,
- "conformances": [
- {
- "kind": "Conformance",
- "name": "Equatable",
- "printedName": "Equatable",
- "usr": "s:SQ",
- "mangledName": "$sSQ"
- }
- ]
- }
- ],
- "declKind": "Class",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "hasMissingDesignatedInitializers": true
- },
- {
- "kind": "TypeDecl",
- "name": "MessageCenterViewModelError",
- "printedName": "MessageCenterViewModelError",
- "children": [
- {
- "kind": "Var",
- "name": "attachmentCountGreaterThanMax",
- "printedName": "attachmentCountGreaterThanMax",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.MessageCenterViewModelError.Type) -> ApptentiveKit.MessageCenterViewModelError",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "MessageCenterViewModelError",
- "printedName": "ApptentiveKit.MessageCenterViewModelError",
- "usr": "s:13ApptentiveKit27MessageCenterViewModelErrorO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.MessageCenterViewModelError.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "MessageCenterViewModelError",
- "printedName": "ApptentiveKit.MessageCenterViewModelError",
- "usr": "s:13ApptentiveKit27MessageCenterViewModelErrorO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:13ApptentiveKit27MessageCenterViewModelErrorO29attachmentCountGreaterThanMaxyA2CmF",
- "mangledName": "$s13ApptentiveKit27MessageCenterViewModelErrorO29attachmentCountGreaterThanMaxyA2CmF",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "Var",
- "name": "unableToGetImageData",
- "printedName": "unableToGetImageData",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.MessageCenterViewModelError.Type) -> ApptentiveKit.MessageCenterViewModelError",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "MessageCenterViewModelError",
- "printedName": "ApptentiveKit.MessageCenterViewModelError",
- "usr": "s:13ApptentiveKit27MessageCenterViewModelErrorO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.MessageCenterViewModelError.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "MessageCenterViewModelError",
- "printedName": "ApptentiveKit.MessageCenterViewModelError",
- "usr": "s:13ApptentiveKit27MessageCenterViewModelErrorO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:13ApptentiveKit27MessageCenterViewModelErrorO20unableToGetImageDatayA2CmF",
- "mangledName": "$s13ApptentiveKit27MessageCenterViewModelErrorO20unableToGetImageDatayA2CmF",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "Function",
- "name": "==",
- "printedName": "==(_:_:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- },
- {
- "kind": "TypeNominal",
- "name": "MessageCenterViewModelError",
- "printedName": "ApptentiveKit.MessageCenterViewModelError",
- "usr": "s:13ApptentiveKit27MessageCenterViewModelErrorO"
- },
- {
- "kind": "TypeNominal",
- "name": "MessageCenterViewModelError",
- "printedName": "ApptentiveKit.MessageCenterViewModelError",
- "usr": "s:13ApptentiveKit27MessageCenterViewModelErrorO"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit27MessageCenterViewModelErrorO2eeoiySbAC_ACtFZ",
- "mangledName": "$s13ApptentiveKit27MessageCenterViewModelErrorO2eeoiySbAC_ACtFZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Var",
- "name": "hashValue",
- "printedName": "hashValue",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit27MessageCenterViewModelErrorO9hashValueSivp",
- "mangledName": "$s13ApptentiveKit27MessageCenterViewModelErrorO9hashValueSivp",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit27MessageCenterViewModelErrorO9hashValueSivg",
- "mangledName": "$s13ApptentiveKit27MessageCenterViewModelErrorO9hashValueSivg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Function",
- "name": "hash",
- "printedName": "hash(into:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Hasher",
- "printedName": "Swift.Hasher",
- "paramValueOwnership": "InOut",
- "usr": "s:s6HasherV"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit27MessageCenterViewModelErrorO4hash4intoys6HasherVz_tF",
- "mangledName": "$s13ApptentiveKit27MessageCenterViewModelErrorO4hash4intoys6HasherVz_tF",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "funcSelfKind": "NonMutating"
- }
- ],
- "declKind": "Enum",
- "usr": "s:13ApptentiveKit27MessageCenterViewModelErrorO",
- "mangledName": "$s13ApptentiveKit27MessageCenterViewModelErrorO",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl"
- ],
- "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": "Error",
- "printedName": "Error",
- "usr": "s:s5ErrorP",
- "mangledName": "$ss5ErrorP"
- },
- {
- "kind": "Conformance",
- "name": "Sendable",
- "printedName": "Sendable",
- "usr": "s:s8SendableP",
- "mangledName": "$ss8SendableP"
- }
- ]
- },
- {
- "kind": "Import",
- "name": "UIKit",
- "printedName": "UIKit",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "UIKit",
- "printedName": "UIKit",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "UIKit",
- "printedName": "UIKit",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "UIKit",
- "printedName": "UIKit",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "Event",
- "printedName": "Event",
- "children": [
- {
- "kind": "Var",
- "name": "customData",
- "printedName": "customData",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "CustomData",
- "printedName": "ApptentiveKit.CustomData",
- "usr": "s:13ApptentiveKit10CustomDataV"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit5EventV10customDataAA06CustomE0Vvp",
- "mangledName": "$s13ApptentiveKit5EventV10customDataAA06CustomE0Vvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "CustomData",
- "printedName": "ApptentiveKit.CustomData",
- "usr": "s:13ApptentiveKit10CustomDataV"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit5EventV10customDataAA06CustomE0Vvg",
- "mangledName": "$s13ApptentiveKit5EventV10customDataAA06CustomE0Vvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "CustomData",
- "printedName": "ApptentiveKit.CustomData",
- "usr": "s:13ApptentiveKit10CustomDataV"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit5EventV10customDataAA06CustomE0Vvs",
- "mangledName": "$s13ApptentiveKit5EventV10customDataAA06CustomE0Vvs",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit5EventV10customDataAA06CustomE0VvM",
- "mangledName": "$s13ApptentiveKit5EventV10customDataAA06CustomE0VvM",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(name:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Event",
- "printedName": "ApptentiveKit.Event",
- "usr": "s:13ApptentiveKit5EventV"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Constructor",
- "usr": "s:13ApptentiveKit5EventV4nameACSS_tcfc",
- "mangledName": "$s13ApptentiveKit5EventV4nameACSS_tcfc",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "init_kind": "Designated"
- },
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(stringLiteral:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Event",
- "printedName": "ApptentiveKit.Event",
- "usr": "s:13ApptentiveKit5EventV"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Constructor",
- "usr": "s:13ApptentiveKit5EventV13stringLiteralACSS_tcfc",
- "mangledName": "$s13ApptentiveKit5EventV13stringLiteralACSS_tcfc",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "init_kind": "Designated"
- },
- {
- "kind": "Var",
- "name": "debugDescription",
- "printedName": "debugDescription",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit5EventV16debugDescriptionSSvp",
- "mangledName": "$s13ApptentiveKit5EventV16debugDescriptionSSvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit5EventV16debugDescriptionSSvg",
- "mangledName": "$s13ApptentiveKit5EventV16debugDescriptionSSvg",
- "moduleName": "ApptentiveKit",
- "accessorKind": "get"
- }
- ]
- }
- ],
- "declKind": "Struct",
- "usr": "s:13ApptentiveKit5EventV",
- "mangledName": "$s13ApptentiveKit5EventV",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "conformances": [
- {
- "kind": "Conformance",
- "name": "ExpressibleByStringLiteral",
- "printedName": "ExpressibleByStringLiteral",
- "children": [
- {
- "kind": "TypeWitness",
- "name": "StringLiteralType",
- "printedName": "StringLiteralType",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ]
- }
- ],
- "usr": "s:s26ExpressibleByStringLiteralP",
- "mangledName": "$ss26ExpressibleByStringLiteralP"
- },
- {
- "kind": "Conformance",
- "name": "CustomDebugStringConvertible",
- "printedName": "CustomDebugStringConvertible",
- "usr": "s:s28CustomDebugStringConvertibleP",
- "mangledName": "$ss28CustomDebugStringConvertibleP"
- },
- {
- "kind": "Conformance",
- "name": "ExpressibleByExtendedGraphemeClusterLiteral",
- "printedName": "ExpressibleByExtendedGraphemeClusterLiteral",
- "children": [
- {
- "kind": "TypeWitness",
- "name": "ExtendedGraphemeClusterLiteralType",
- "printedName": "ExtendedGraphemeClusterLiteralType",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ]
- }
- ],
- "usr": "s:s43ExpressibleByExtendedGraphemeClusterLiteralP",
- "mangledName": "$ss43ExpressibleByExtendedGraphemeClusterLiteralP"
- },
- {
- "kind": "Conformance",
- "name": "ExpressibleByUnicodeScalarLiteral",
- "printedName": "ExpressibleByUnicodeScalarLiteral",
- "children": [
- {
- "kind": "TypeWitness",
- "name": "UnicodeScalarLiteralType",
- "printedName": "UnicodeScalarLiteralType",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ]
- }
- ],
- "usr": "s:s33ExpressibleByUnicodeScalarLiteralP",
- "mangledName": "$ss33ExpressibleByUnicodeScalarLiteralP"
- }
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "UIKit",
- "printedName": "UIKit",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "InteractionPresenter",
- "printedName": "InteractionPresenter",
- "children": [
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "InteractionPresenter",
- "printedName": "ApptentiveKit.InteractionPresenter",
- "usr": "s:13ApptentiveKit20InteractionPresenterC"
- }
- ],
- "declKind": "Constructor",
- "usr": "s:13ApptentiveKit20InteractionPresenterCACycfc",
- "mangledName": "$s13ApptentiveKit20InteractionPresenterCACycfc",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "init_kind": "Designated"
- },
- {
- "kind": "Function",
- "name": "presentMessageCenter",
- "printedName": "presentMessageCenter(with:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "MessageCenterViewModel",
- "printedName": "ApptentiveKit.MessageCenterViewModel",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit20InteractionPresenterC20presentMessageCenter4withyAA0fG9ViewModelC_tKF",
- "mangledName": "$s13ApptentiveKit20InteractionPresenterC20presentMessageCenter4withyAA0fG9ViewModelC_tKF",
- "moduleName": "ApptentiveKit",
- "isOpen": true,
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "throwing": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "presentSurvey",
- "printedName": "presentSurvey(with:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "SurveyViewModel",
- "printedName": "ApptentiveKit.SurveyViewModel",
- "usr": "s:13ApptentiveKit15SurveyViewModelC"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit20InteractionPresenterC13presentSurvey4withyAA0F9ViewModelC_tKF",
- "mangledName": "$s13ApptentiveKit20InteractionPresenterC13presentSurvey4withyAA0F9ViewModelC_tKF",
- "moduleName": "ApptentiveKit",
- "isOpen": true,
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "throwing": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "presentEnjoymentDialog",
- "printedName": "presentEnjoymentDialog(with:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "DialogViewModel",
- "printedName": "ApptentiveKit.DialogViewModel",
- "usr": "s:13ApptentiveKit15DialogViewModelC"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit20InteractionPresenterC22presentEnjoymentDialog4withyAA0G9ViewModelC_tKF",
- "mangledName": "$s13ApptentiveKit20InteractionPresenterC22presentEnjoymentDialog4withyAA0G9ViewModelC_tKF",
- "moduleName": "ApptentiveKit",
- "isOpen": true,
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "throwing": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "presentTextModal",
- "printedName": "presentTextModal(with:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "DialogViewModel",
- "printedName": "ApptentiveKit.DialogViewModel",
- "usr": "s:13ApptentiveKit15DialogViewModelC"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit20InteractionPresenterC16presentTextModal4withyAA15DialogViewModelC_tKF",
- "mangledName": "$s13ApptentiveKit20InteractionPresenterC16presentTextModal4withyAA15DialogViewModelC_tKF",
- "moduleName": "ApptentiveKit",
- "isOpen": true,
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "throwing": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "presentViewController",
- "printedName": "presentViewController(_:completion:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIViewController",
- "printedName": "UIKit.UIViewController",
- "usr": "c:objc(cs)UIViewController"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "(() -> ())?",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "() -> ()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ]
- }
- ],
- "hasDefaultArg": true,
- "usr": "s:Sq"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit20InteractionPresenterC21presentViewController_10completionySo06UIViewG0C_yycSgtKF",
- "mangledName": "$s13ApptentiveKit20InteractionPresenterC21presentViewController_10completionySo06UIViewG0C_yycSgtKF",
- "moduleName": "ApptentiveKit",
- "isOpen": true,
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "throwing": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Var",
- "name": "validatedPresentingViewController",
- "printedName": "validatedPresentingViewController",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "UIKit.UIViewController?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIViewController",
- "printedName": "UIKit.UIViewController",
- "usr": "c:objc(cs)UIViewController"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit20InteractionPresenterC33validatedPresentingViewControllerSo06UIViewH0CSgvp",
- "mangledName": "$s13ApptentiveKit20InteractionPresenterC33validatedPresentingViewControllerSo06UIViewH0CSgvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "UIKit.UIViewController?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIViewController",
- "printedName": "UIKit.UIViewController",
- "usr": "c:objc(cs)UIViewController"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit20InteractionPresenterC33validatedPresentingViewControllerSo06UIViewH0CSgvg",
- "mangledName": "$s13ApptentiveKit20InteractionPresenterC33validatedPresentingViewControllerSo06UIViewH0CSgvg",
- "moduleName": "ApptentiveKit",
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Function",
- "name": "dismissPresentedViewController",
- "printedName": "dismissPresentedViewController(animated:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit20InteractionPresenterC30dismissPresentedViewController8animatedySb_tF",
- "mangledName": "$s13ApptentiveKit20InteractionPresenterC30dismissPresentedViewController8animatedySb_tF",
- "moduleName": "ApptentiveKit",
- "isOpen": true,
- "declAttributes": [
- "AccessControl"
- ],
- "funcSelfKind": "NonMutating"
- }
- ],
- "declKind": "Class",
- "usr": "s:13ApptentiveKit20InteractionPresenterC",
- "mangledName": "$s13ApptentiveKit20InteractionPresenterC",
- "moduleName": "ApptentiveKit",
- "isOpen": true,
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "InteractionPresenterError",
- "printedName": "InteractionPresenterError",
- "children": [
- {
- "kind": "Var",
- "name": "notImplemented",
- "printedName": "notImplemented",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.InteractionPresenterError.Type) -> (Swift.String, Swift.String) -> ApptentiveKit.InteractionPresenterError",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(Swift.String, Swift.String) -> ApptentiveKit.InteractionPresenterError",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "InteractionPresenterError",
- "printedName": "ApptentiveKit.InteractionPresenterError",
- "usr": "s:13ApptentiveKit25InteractionPresenterErrorO"
- },
- {
- "kind": "TypeNominal",
- "name": "Tuple",
- "printedName": "(Swift.String, Swift.String)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ]
- }
- ]
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.InteractionPresenterError.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "InteractionPresenterError",
- "printedName": "ApptentiveKit.InteractionPresenterError",
- "usr": "s:13ApptentiveKit25InteractionPresenterErrorO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:13ApptentiveKit25InteractionPresenterErrorO14notImplementedyACSS_SStcACmF",
- "mangledName": "$s13ApptentiveKit25InteractionPresenterErrorO14notImplementedyACSS_SStcACmF",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "Var",
- "name": "decodingFailed",
- "printedName": "decodingFailed",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.InteractionPresenterError.Type) -> (Swift.String, Swift.String) -> ApptentiveKit.InteractionPresenterError",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(Swift.String, Swift.String) -> ApptentiveKit.InteractionPresenterError",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "InteractionPresenterError",
- "printedName": "ApptentiveKit.InteractionPresenterError",
- "usr": "s:13ApptentiveKit25InteractionPresenterErrorO"
- },
- {
- "kind": "TypeNominal",
- "name": "Tuple",
- "printedName": "(Swift.String, Swift.String)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ]
- }
- ]
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.InteractionPresenterError.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "InteractionPresenterError",
- "printedName": "ApptentiveKit.InteractionPresenterError",
- "usr": "s:13ApptentiveKit25InteractionPresenterErrorO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:13ApptentiveKit25InteractionPresenterErrorO14decodingFailedyACSS_SStcACmF",
- "mangledName": "$s13ApptentiveKit25InteractionPresenterErrorO14decodingFailedyACSS_SStcACmF",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "Var",
- "name": "noPresentingViewController",
- "printedName": "noPresentingViewController",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.InteractionPresenterError.Type) -> ApptentiveKit.InteractionPresenterError",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "InteractionPresenterError",
- "printedName": "ApptentiveKit.InteractionPresenterError",
- "usr": "s:13ApptentiveKit25InteractionPresenterErrorO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.InteractionPresenterError.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "InteractionPresenterError",
- "printedName": "ApptentiveKit.InteractionPresenterError",
- "usr": "s:13ApptentiveKit25InteractionPresenterErrorO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:13ApptentiveKit25InteractionPresenterErrorO26noPresentingViewControlleryA2CmF",
- "mangledName": "$s13ApptentiveKit25InteractionPresenterErrorO26noPresentingViewControlleryA2CmF",
- "moduleName": "ApptentiveKit"
- }
- ],
- "declKind": "Enum",
- "usr": "s:13ApptentiveKit25InteractionPresenterErrorO",
- "mangledName": "$s13ApptentiveKit25InteractionPresenterErrorO",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "conformances": [
- {
- "kind": "Conformance",
- "name": "Error",
- "printedName": "Error",
- "usr": "s:s5ErrorP",
- "mangledName": "$ss5ErrorP"
- },
- {
- "kind": "Conformance",
- "name": "Sendable",
- "printedName": "Sendable",
- "usr": "s:s8SendableP",
- "mangledName": "$ss8SendableP"
- }
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "UIKit",
- "printedName": "UIKit",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "UIKit",
- "printedName": "UIKit",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "UIKit",
- "printedName": "UIKit",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "PhotosUI",
- "printedName": "PhotosUI",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "QuickLook",
- "printedName": "QuickLook",
- "declKind": "Import",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "Import",
- "name": "UIKit",
- "printedName": "UIKit",
- "declKind": "Import",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "UIKit",
- "printedName": "UIKit",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "DialogViewModelDelegate",
- "printedName": "DialogViewModelDelegate",
- "children": [
- {
- "kind": "Function",
- "name": "dismiss",
- "printedName": "dismiss()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit23DialogViewModelDelegateP7dismissyyF",
- "mangledName": "$s13ApptentiveKit23DialogViewModelDelegateP7dismissyyF",
- "moduleName": "ApptentiveKit",
- "genericSig": "<τ_0_0 where τ_0_0 : ApptentiveKit.DialogViewModelDelegate>",
- "sugared_genericSig": "",
- "protocolReq": true,
- "reqNewWitnessTableEntry": true,
- "funcSelfKind": "NonMutating"
- }
- ],
- "declKind": "Protocol",
- "usr": "s:13ApptentiveKit23DialogViewModelDelegateP",
- "mangledName": "$s13ApptentiveKit23DialogViewModelDelegateP",
- "moduleName": "ApptentiveKit",
- "genericSig": "<τ_0_0 : AnyObject>",
- "sugared_genericSig": "",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "DialogViewModel",
- "printedName": "DialogViewModel",
- "children": [
- {
- "kind": "Var",
- "name": "title",
- "printedName": "title",
- "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": "s:13ApptentiveKit15DialogViewModelC5titleSSSgvp",
- "mangledName": "$s13ApptentiveKit15DialogViewModelC5titleSSSgvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "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": "s:13ApptentiveKit15DialogViewModelC5titleSSSgvg",
- "mangledName": "$s13ApptentiveKit15DialogViewModelC5titleSSSgvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "message",
- "printedName": "message",
- "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": "s:13ApptentiveKit15DialogViewModelC7messageSSSgvp",
- "mangledName": "$s13ApptentiveKit15DialogViewModelC7messageSSSgvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "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": "s:13ApptentiveKit15DialogViewModelC7messageSSSgvg",
- "mangledName": "$s13ApptentiveKit15DialogViewModelC7messageSSSgvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "dialogType",
- "printedName": "dialogType",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "DialogType",
- "printedName": "ApptentiveKit.DialogViewModel.DialogType",
- "usr": "s:13ApptentiveKit15DialogViewModelC0C4TypeO"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit15DialogViewModelC10dialogTypeAC0cG0Ovp",
- "mangledName": "$s13ApptentiveKit15DialogViewModelC10dialogTypeAC0cG0Ovp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "DialogType",
- "printedName": "ApptentiveKit.DialogViewModel.DialogType",
- "usr": "s:13ApptentiveKit15DialogViewModelC0C4TypeO"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit15DialogViewModelC10dialogTypeAC0cG0Ovg",
- "mangledName": "$s13ApptentiveKit15DialogViewModelC10dialogTypeAC0cG0Ovg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "actions",
- "printedName": "actions",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Array",
- "printedName": "[ApptentiveKit.DialogViewModel.Action]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Action",
- "printedName": "ApptentiveKit.DialogViewModel.Action",
- "usr": "s:13ApptentiveKit15DialogViewModelC6ActionC"
- }
- ],
- "usr": "s:Sa"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit15DialogViewModelC7actionsSayAC6ActionCGvp",
- "mangledName": "$s13ApptentiveKit15DialogViewModelC7actionsSayAC6ActionCGvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Array",
- "printedName": "[ApptentiveKit.DialogViewModel.Action]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Action",
- "printedName": "ApptentiveKit.DialogViewModel.Action",
- "usr": "s:13ApptentiveKit15DialogViewModelC6ActionC"
- }
- ],
- "usr": "s:Sa"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit15DialogViewModelC7actionsSayAC6ActionCGvg",
- "mangledName": "$s13ApptentiveKit15DialogViewModelC7actionsSayAC6ActionCGvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "delegate",
- "printedName": "delegate",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "WeakStorage",
- "printedName": "ApptentiveKit.DialogViewModelDelegate?"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit15DialogViewModelC8delegateAA0cdE8Delegate_pSgvp",
- "mangledName": "$s13ApptentiveKit15DialogViewModelC8delegateAA0cdE8Delegate_pSgvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "ReferenceOwnership",
- "AccessControl",
- "RawDocComment"
- ],
- "ownership": 1,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "ApptentiveKit.DialogViewModelDelegate?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "DialogViewModelDelegate",
- "printedName": "ApptentiveKit.DialogViewModelDelegate",
- "usr": "s:13ApptentiveKit23DialogViewModelDelegateP"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit15DialogViewModelC8delegateAA0cdE8Delegate_pSgvg",
- "mangledName": "$s13ApptentiveKit15DialogViewModelC8delegateAA0cdE8Delegate_pSgvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "ApptentiveKit.DialogViewModelDelegate?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "DialogViewModelDelegate",
- "printedName": "ApptentiveKit.DialogViewModelDelegate",
- "usr": "s:13ApptentiveKit23DialogViewModelDelegateP"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit15DialogViewModelC8delegateAA0cdE8Delegate_pSgvs",
- "mangledName": "$s13ApptentiveKit15DialogViewModelC8delegateAA0cdE8Delegate_pSgvs",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit15DialogViewModelC8delegateAA0cdE8Delegate_pSgvM",
- "mangledName": "$s13ApptentiveKit15DialogViewModelC8delegateAA0cdE8Delegate_pSgvM",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Function",
- "name": "buttonSelected",
- "printedName": "buttonSelected(at:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit15DialogViewModelC14buttonSelected2atySi_tF",
- "mangledName": "$s13ApptentiveKit15DialogViewModelC14buttonSelected2atySi_tF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "launch",
- "printedName": "launch()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit15DialogViewModelC6launchyyF",
- "mangledName": "$s13ApptentiveKit15DialogViewModelC6launchyyF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "cancel",
- "printedName": "cancel()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit15DialogViewModelC6cancelyyF",
- "mangledName": "$s13ApptentiveKit15DialogViewModelC6cancelyyF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "TypeDecl",
- "name": "DialogType",
- "printedName": "DialogType",
- "children": [
- {
- "kind": "Var",
- "name": "enjoymentDialog",
- "printedName": "enjoymentDialog",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.DialogViewModel.DialogType.Type) -> ApptentiveKit.DialogViewModel.DialogType",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "DialogType",
- "printedName": "ApptentiveKit.DialogViewModel.DialogType",
- "usr": "s:13ApptentiveKit15DialogViewModelC0C4TypeO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.DialogViewModel.DialogType.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "DialogType",
- "printedName": "ApptentiveKit.DialogViewModel.DialogType",
- "usr": "s:13ApptentiveKit15DialogViewModelC0C4TypeO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:13ApptentiveKit15DialogViewModelC0C4TypeO09enjoymentC0yA2EmF",
- "mangledName": "$s13ApptentiveKit15DialogViewModelC0C4TypeO09enjoymentC0yA2EmF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "textModal",
- "printedName": "textModal",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.DialogViewModel.DialogType.Type) -> ApptentiveKit.DialogViewModel.DialogType",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "DialogType",
- "printedName": "ApptentiveKit.DialogViewModel.DialogType",
- "usr": "s:13ApptentiveKit15DialogViewModelC0C4TypeO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.DialogViewModel.DialogType.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "DialogType",
- "printedName": "ApptentiveKit.DialogViewModel.DialogType",
- "usr": "s:13ApptentiveKit15DialogViewModelC0C4TypeO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:13ApptentiveKit15DialogViewModelC0C4TypeO9textModalyA2EmF",
- "mangledName": "$s13ApptentiveKit15DialogViewModelC0C4TypeO9textModalyA2EmF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Function",
- "name": "==",
- "printedName": "==(_:_:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- },
- {
- "kind": "TypeNominal",
- "name": "DialogType",
- "printedName": "ApptentiveKit.DialogViewModel.DialogType",
- "usr": "s:13ApptentiveKit15DialogViewModelC0C4TypeO"
- },
- {
- "kind": "TypeNominal",
- "name": "DialogType",
- "printedName": "ApptentiveKit.DialogViewModel.DialogType",
- "usr": "s:13ApptentiveKit15DialogViewModelC0C4TypeO"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit15DialogViewModelC0C4TypeO2eeoiySbAE_AEtFZ",
- "mangledName": "$s13ApptentiveKit15DialogViewModelC0C4TypeO2eeoiySbAE_AEtFZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Var",
- "name": "hashValue",
- "printedName": "hashValue",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit15DialogViewModelC0C4TypeO9hashValueSivp",
- "mangledName": "$s13ApptentiveKit15DialogViewModelC0C4TypeO9hashValueSivp",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit15DialogViewModelC0C4TypeO9hashValueSivg",
- "mangledName": "$s13ApptentiveKit15DialogViewModelC0C4TypeO9hashValueSivg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Function",
- "name": "hash",
- "printedName": "hash(into:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Hasher",
- "printedName": "Swift.Hasher",
- "paramValueOwnership": "InOut",
- "usr": "s:s6HasherV"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit15DialogViewModelC0C4TypeO4hash4intoys6HasherVz_tF",
- "mangledName": "$s13ApptentiveKit15DialogViewModelC0C4TypeO4hash4intoys6HasherVz_tF",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "funcSelfKind": "NonMutating"
- }
- ],
- "declKind": "Enum",
- "usr": "s:13ApptentiveKit15DialogViewModelC0C4TypeO",
- "mangledName": "$s13ApptentiveKit15DialogViewModelC0C4TypeO",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "conformances": [
- {
- "kind": "Conformance",
- "name": "Equatable",
- "printedName": "Equatable",
- "usr": "s:SQ",
- "mangledName": "$sSQ"
- },
- {
- "kind": "Conformance",
- "name": "Hashable",
- "printedName": "Hashable",
- "usr": "s:SH",
- "mangledName": "$sSH"
- }
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "Action",
- "printedName": "Action",
- "children": [
- {
- "kind": "Var",
- "name": "label",
- "printedName": "label",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit15DialogViewModelC6ActionC5labelSSvp",
- "mangledName": "$s13ApptentiveKit15DialogViewModelC6ActionC5labelSSvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit15DialogViewModelC6ActionC5labelSSvg",
- "mangledName": "$s13ApptentiveKit15DialogViewModelC6ActionC5labelSSvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "actionType",
- "printedName": "actionType",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ActionType",
- "printedName": "ApptentiveKit.DialogViewModel.Action.ActionType",
- "usr": "s:13ApptentiveKit15DialogViewModelC6ActionC0F4TypeO"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit15DialogViewModelC6ActionC10actionTypeAE0fH0Ovp",
- "mangledName": "$s13ApptentiveKit15DialogViewModelC6ActionC10actionTypeAE0fH0Ovp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ActionType",
- "printedName": "ApptentiveKit.DialogViewModel.Action.ActionType",
- "usr": "s:13ApptentiveKit15DialogViewModelC6ActionC0F4TypeO"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit15DialogViewModelC6ActionC10actionTypeAE0fH0Ovg",
- "mangledName": "$s13ApptentiveKit15DialogViewModelC6ActionC10actionTypeAE0fH0Ovg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "buttonTapped",
- "printedName": "buttonTapped",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "() -> ()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ]
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit15DialogViewModelC6ActionC12buttonTappedyycvp",
- "mangledName": "$s13ApptentiveKit15DialogViewModelC6ActionC12buttonTappedyycvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "() -> ()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ]
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit15DialogViewModelC6ActionC12buttonTappedyycvg",
- "mangledName": "$s13ApptentiveKit15DialogViewModelC6ActionC12buttonTappedyycvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "ActionType",
- "printedName": "ActionType",
- "children": [
- {
- "kind": "Var",
- "name": "dismiss",
- "printedName": "dismiss",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.DialogViewModel.Action.ActionType.Type) -> ApptentiveKit.DialogViewModel.Action.ActionType",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ActionType",
- "printedName": "ApptentiveKit.DialogViewModel.Action.ActionType",
- "usr": "s:13ApptentiveKit15DialogViewModelC6ActionC0F4TypeO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.DialogViewModel.Action.ActionType.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ActionType",
- "printedName": "ApptentiveKit.DialogViewModel.Action.ActionType",
- "usr": "s:13ApptentiveKit15DialogViewModelC6ActionC0F4TypeO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:13ApptentiveKit15DialogViewModelC6ActionC0F4TypeO7dismissyA2GmF",
- "mangledName": "$s13ApptentiveKit15DialogViewModelC6ActionC0F4TypeO7dismissyA2GmF",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "Var",
- "name": "interaction",
- "printedName": "interaction",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.DialogViewModel.Action.ActionType.Type) -> ApptentiveKit.DialogViewModel.Action.ActionType",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ActionType",
- "printedName": "ApptentiveKit.DialogViewModel.Action.ActionType",
- "usr": "s:13ApptentiveKit15DialogViewModelC6ActionC0F4TypeO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.DialogViewModel.Action.ActionType.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ActionType",
- "printedName": "ApptentiveKit.DialogViewModel.Action.ActionType",
- "usr": "s:13ApptentiveKit15DialogViewModelC6ActionC0F4TypeO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:13ApptentiveKit15DialogViewModelC6ActionC0F4TypeO11interactionyA2GmF",
- "mangledName": "$s13ApptentiveKit15DialogViewModelC6ActionC0F4TypeO11interactionyA2GmF",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "Var",
- "name": "yes",
- "printedName": "yes",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.DialogViewModel.Action.ActionType.Type) -> ApptentiveKit.DialogViewModel.Action.ActionType",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ActionType",
- "printedName": "ApptentiveKit.DialogViewModel.Action.ActionType",
- "usr": "s:13ApptentiveKit15DialogViewModelC6ActionC0F4TypeO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.DialogViewModel.Action.ActionType.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ActionType",
- "printedName": "ApptentiveKit.DialogViewModel.Action.ActionType",
- "usr": "s:13ApptentiveKit15DialogViewModelC6ActionC0F4TypeO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:13ApptentiveKit15DialogViewModelC6ActionC0F4TypeO3yesyA2GmF",
- "mangledName": "$s13ApptentiveKit15DialogViewModelC6ActionC0F4TypeO3yesyA2GmF",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "Var",
- "name": "no",
- "printedName": "no",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.DialogViewModel.Action.ActionType.Type) -> ApptentiveKit.DialogViewModel.Action.ActionType",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ActionType",
- "printedName": "ApptentiveKit.DialogViewModel.Action.ActionType",
- "usr": "s:13ApptentiveKit15DialogViewModelC6ActionC0F4TypeO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.DialogViewModel.Action.ActionType.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ActionType",
- "printedName": "ApptentiveKit.DialogViewModel.Action.ActionType",
- "usr": "s:13ApptentiveKit15DialogViewModelC6ActionC0F4TypeO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:13ApptentiveKit15DialogViewModelC6ActionC0F4TypeO2noyA2GmF",
- "mangledName": "$s13ApptentiveKit15DialogViewModelC6ActionC0F4TypeO2noyA2GmF",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(rawValue:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "ApptentiveKit.DialogViewModel.Action.ActionType?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ActionType",
- "printedName": "ApptentiveKit.DialogViewModel.Action.ActionType",
- "usr": "s:13ApptentiveKit15DialogViewModelC6ActionC0F4TypeO"
- }
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Constructor",
- "usr": "s:13ApptentiveKit15DialogViewModelC6ActionC0F4TypeO8rawValueAGSgSS_tcfc",
- "mangledName": "$s13ApptentiveKit15DialogViewModelC6ActionC0F4TypeO8rawValueAGSgSS_tcfc",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "init_kind": "Designated"
- },
- {
- "kind": "Var",
- "name": "rawValue",
- "printedName": "rawValue",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit15DialogViewModelC6ActionC0F4TypeO8rawValueSSvp",
- "mangledName": "$s13ApptentiveKit15DialogViewModelC6ActionC0F4TypeO8rawValueSSvp",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit15DialogViewModelC6ActionC0F4TypeO8rawValueSSvg",
- "mangledName": "$s13ApptentiveKit15DialogViewModelC6ActionC0F4TypeO8rawValueSSvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "get"
- }
- ]
- }
- ],
- "declKind": "Enum",
- "usr": "s:13ApptentiveKit15DialogViewModelC6ActionC0F4TypeO",
- "mangledName": "$s13ApptentiveKit15DialogViewModelC6ActionC0F4TypeO",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl"
- ],
- "enumRawTypeName": "String",
- "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": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ]
- }
- ],
- "usr": "s:SY",
- "mangledName": "$sSY"
- }
- ]
- }
- ],
- "declKind": "Class",
- "usr": "s:13ApptentiveKit15DialogViewModelC6ActionC",
- "mangledName": "$s13ApptentiveKit15DialogViewModelC6ActionC",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasMissingDesignatedInitializers": true
- }
- ],
- "declKind": "Class",
- "usr": "s:13ApptentiveKit15DialogViewModelC",
- "mangledName": "$s13ApptentiveKit15DialogViewModelC",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "hasMissingDesignatedInitializers": true
- },
- {
- "kind": "Import",
- "name": "UIKit",
- "printedName": "UIKit",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "UIKit",
- "printedName": "UIKit",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "DialogView",
- "printedName": "DialogView",
- "children": [
- {
- "kind": "Var",
- "name": "titleTextColor",
- "printedName": "titleTextColor",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Var",
- "usr": "c:@M@ApptentiveKit@objc(cs)DialogView(py)titleTextColor",
- "mangledName": "$s13ApptentiveKit10DialogViewC14titleTextColorSo7UIColorCvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "HasInitialValue",
- "Custom",
- "HasStorage",
- "Dynamic",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@M@ApptentiveKit@objc(cs)DialogView(im)titleTextColor",
- "mangledName": "$s13ApptentiveKit10DialogViewC14titleTextColorSo7UIColorCvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Dynamic",
- "ObjC"
- ],
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@M@ApptentiveKit@objc(cs)DialogView(im)setTitleTextColor:",
- "mangledName": "$s13ApptentiveKit10DialogViewC14titleTextColorSo7UIColorCvs",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Dynamic",
- "ObjC"
- ],
- "accessorKind": "set"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "messageTextColor",
- "printedName": "messageTextColor",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Var",
- "usr": "c:@M@ApptentiveKit@objc(cs)DialogView(py)messageTextColor",
- "mangledName": "$s13ApptentiveKit10DialogViewC16messageTextColorSo7UIColorCvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "HasInitialValue",
- "Custom",
- "HasStorage",
- "Dynamic",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@M@ApptentiveKit@objc(cs)DialogView(im)messageTextColor",
- "mangledName": "$s13ApptentiveKit10DialogViewC16messageTextColorSo7UIColorCvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Dynamic",
- "ObjC"
- ],
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@M@ApptentiveKit@objc(cs)DialogView(im)setMessageTextColor:",
- "mangledName": "$s13ApptentiveKit10DialogViewC16messageTextColorSo7UIColorCvs",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Dynamic",
- "ObjC"
- ],
- "accessorKind": "set"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "titleFont",
- "printedName": "titleFont",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Var",
- "usr": "c:@M@ApptentiveKit@objc(cs)DialogView(py)titleFont",
- "mangledName": "$s13ApptentiveKit10DialogViewC9titleFontSo6UIFontCvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "HasInitialValue",
- "Custom",
- "HasStorage",
- "Dynamic",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@M@ApptentiveKit@objc(cs)DialogView(im)titleFont",
- "mangledName": "$s13ApptentiveKit10DialogViewC9titleFontSo6UIFontCvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Dynamic",
- "ObjC"
- ],
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@M@ApptentiveKit@objc(cs)DialogView(im)setTitleFont:",
- "mangledName": "$s13ApptentiveKit10DialogViewC9titleFontSo6UIFontCvs",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Dynamic",
- "ObjC"
- ],
- "accessorKind": "set"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "messageFont",
- "printedName": "messageFont",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Var",
- "usr": "c:@M@ApptentiveKit@objc(cs)DialogView(py)messageFont",
- "mangledName": "$s13ApptentiveKit10DialogViewC11messageFontSo6UIFontCvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "HasInitialValue",
- "Custom",
- "HasStorage",
- "Dynamic",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@M@ApptentiveKit@objc(cs)DialogView(im)messageFont",
- "mangledName": "$s13ApptentiveKit10DialogViewC11messageFontSo6UIFontCvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Dynamic",
- "ObjC"
- ],
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@M@ApptentiveKit@objc(cs)DialogView(im)setMessageFont:",
- "mangledName": "$s13ApptentiveKit10DialogViewC11messageFontSo6UIFontCvs",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Dynamic",
- "ObjC"
- ],
- "accessorKind": "set"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "headerImage",
- "printedName": "headerImage",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "UIKit.UIImage?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIImage",
- "printedName": "UIKit.UIImage",
- "usr": "c:objc(cs)UIImage"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Var",
- "usr": "c:@M@ApptentiveKit@objc(cs)DialogView(py)headerImage",
- "mangledName": "$s13ApptentiveKit10DialogViewC11headerImageSo7UIImageCSgvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "HasInitialValue",
- "Custom",
- "HasStorage",
- "Dynamic",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "UIKit.UIImage?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIImage",
- "printedName": "UIKit.UIImage",
- "usr": "c:objc(cs)UIImage"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@M@ApptentiveKit@objc(cs)DialogView(im)headerImage",
- "mangledName": "$s13ApptentiveKit10DialogViewC11headerImageSo7UIImageCSgvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Dynamic",
- "ObjC"
- ],
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "UIKit.UIImage?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIImage",
- "printedName": "UIKit.UIImage",
- "usr": "c:objc(cs)UIImage"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@M@ApptentiveKit@objc(cs)DialogView(im)setHeaderImage:",
- "mangledName": "$s13ApptentiveKit10DialogViewC11headerImageSo7UIImageCSgvs",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Dynamic",
- "ObjC"
- ],
- "accessorKind": "set"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "cornerRadius",
- "printedName": "cornerRadius",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "CGFloat",
- "printedName": "CoreGraphics.CGFloat",
- "usr": "s:14CoreFoundation7CGFloatV"
- }
- ],
- "declKind": "Var",
- "usr": "c:@M@ApptentiveKit@objc(cs)DialogView(py)cornerRadius",
- "mangledName": "$s13ApptentiveKit10DialogViewC12cornerRadius12CoreGraphics7CGFloatVvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "HasInitialValue",
- "Custom",
- "HasStorage",
- "Dynamic",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "CGFloat",
- "printedName": "CoreGraphics.CGFloat",
- "usr": "s:14CoreFoundation7CGFloatV"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@M@ApptentiveKit@objc(cs)DialogView(im)cornerRadius",
- "mangledName": "$s13ApptentiveKit10DialogViewC12cornerRadius12CoreGraphics7CGFloatVvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Dynamic",
- "ObjC"
- ],
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "CGFloat",
- "printedName": "CoreGraphics.CGFloat",
- "usr": "s:14CoreFoundation7CGFloatV"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@M@ApptentiveKit@objc(cs)DialogView(im)setCornerRadius:",
- "mangledName": "$s13ApptentiveKit10DialogViewC12cornerRadius12CoreGraphics7CGFloatVvs",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Dynamic",
- "ObjC"
- ],
- "accessorKind": "set"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "buttonSpacing",
- "printedName": "buttonSpacing",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "CGFloat",
- "printedName": "CoreGraphics.CGFloat",
- "usr": "s:14CoreFoundation7CGFloatV"
- }
- ],
- "declKind": "Var",
- "usr": "c:@M@ApptentiveKit@objc(cs)DialogView(py)buttonSpacing",
- "mangledName": "$s13ApptentiveKit10DialogViewC13buttonSpacing12CoreGraphics7CGFloatVvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "HasInitialValue",
- "Custom",
- "HasStorage",
- "Dynamic",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "CGFloat",
- "printedName": "CoreGraphics.CGFloat",
- "usr": "s:14CoreFoundation7CGFloatV"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@M@ApptentiveKit@objc(cs)DialogView(im)buttonSpacing",
- "mangledName": "$s13ApptentiveKit10DialogViewC13buttonSpacing12CoreGraphics7CGFloatVvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Dynamic",
- "ObjC"
- ],
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "CGFloat",
- "printedName": "CoreGraphics.CGFloat",
- "usr": "s:14CoreFoundation7CGFloatV"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@M@ApptentiveKit@objc(cs)DialogView(im)setButtonSpacing:",
- "mangledName": "$s13ApptentiveKit10DialogViewC13buttonSpacing12CoreGraphics7CGFloatVvs",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Dynamic",
- "ObjC"
- ],
- "accessorKind": "set"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "buttonInset",
- "printedName": "buttonInset",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIEdgeInsets",
- "printedName": "UIKit.UIEdgeInsets",
- "usr": "c:@S@UIEdgeInsets"
- }
- ],
- "declKind": "Var",
- "usr": "c:@M@ApptentiveKit@objc(cs)DialogView(py)buttonInset",
- "mangledName": "$s13ApptentiveKit10DialogViewC11buttonInsetSo12UIEdgeInsetsVvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "HasInitialValue",
- "Custom",
- "HasStorage",
- "Dynamic",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIEdgeInsets",
- "printedName": "UIKit.UIEdgeInsets",
- "usr": "c:@S@UIEdgeInsets"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@M@ApptentiveKit@objc(cs)DialogView(im)buttonInset",
- "mangledName": "$s13ApptentiveKit10DialogViewC11buttonInsetSo12UIEdgeInsetsVvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Dynamic",
- "ObjC"
- ],
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIEdgeInsets",
- "printedName": "UIKit.UIEdgeInsets",
- "usr": "c:@S@UIEdgeInsets"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@M@ApptentiveKit@objc(cs)DialogView(im)setButtonInset:",
- "mangledName": "$s13ApptentiveKit10DialogViewC11buttonInsetSo12UIEdgeInsetsVvs",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Dynamic",
- "ObjC"
- ],
- "accessorKind": "set"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "separatorsAreHidden",
- "printedName": "separatorsAreHidden",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ],
- "declKind": "Var",
- "usr": "c:@M@ApptentiveKit@objc(cs)DialogView(py)separatorsAreHidden",
- "mangledName": "$s13ApptentiveKit10DialogViewC19separatorsAreHiddenSbvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "HasInitialValue",
- "Custom",
- "HasStorage",
- "Dynamic",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@M@ApptentiveKit@objc(cs)DialogView(im)separatorsAreHidden",
- "mangledName": "$s13ApptentiveKit10DialogViewC19separatorsAreHiddenSbvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Dynamic",
- "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@ApptentiveKit@objc(cs)DialogView(im)setSeparatorsAreHidden:",
- "mangledName": "$s13ApptentiveKit10DialogViewC19separatorsAreHiddenSbvs",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Dynamic",
- "ObjC"
- ],
- "accessorKind": "set"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "separatorColor",
- "printedName": "separatorColor",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Var",
- "usr": "c:@M@ApptentiveKit@objc(cs)DialogView(py)separatorColor",
- "mangledName": "$s13ApptentiveKit10DialogViewC14separatorColorSo7UIColorCvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "HasInitialValue",
- "Custom",
- "HasStorage",
- "Dynamic",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@M@ApptentiveKit@objc(cs)DialogView(im)separatorColor",
- "mangledName": "$s13ApptentiveKit10DialogViewC14separatorColorSo7UIColorCvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Dynamic",
- "ObjC"
- ],
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@M@ApptentiveKit@objc(cs)DialogView(im)setSeparatorColor:",
- "mangledName": "$s13ApptentiveKit10DialogViewC14separatorColorSo7UIColorCvs",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Dynamic",
- "ObjC"
- ],
- "accessorKind": "set"
- }
- ]
- },
- {
- "kind": "Function",
- "name": "didMoveToWindow",
- "printedName": "didMoveToWindow()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Func",
- "usr": "c:@M@ApptentiveKit@objc(cs)DialogView(im)didMoveToWindow",
- "mangledName": "$s13ApptentiveKit10DialogViewC15didMoveToWindowyyF",
- "moduleName": "ApptentiveKit",
- "overriding": true,
- "objc_name": "didMoveToWindow",
- "declAttributes": [
- "Dynamic",
- "ObjC",
- "Custom",
- "Override",
- "AccessControl",
- "RawDocComment"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "layoutSubviews",
- "printedName": "layoutSubviews()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Func",
- "usr": "c:@M@ApptentiveKit@objc(cs)DialogView(im)layoutSubviews",
- "mangledName": "$s13ApptentiveKit10DialogViewC14layoutSubviewsyyF",
- "moduleName": "ApptentiveKit",
- "overriding": true,
- "objc_name": "layoutSubviews",
- "declAttributes": [
- "Dynamic",
- "ObjC",
- "Custom",
- "Override",
- "AccessControl",
- "RawDocComment"
- ],
- "funcSelfKind": "NonMutating"
- }
- ],
- "declKind": "Class",
- "usr": "c:@M@ApptentiveKit@objc(cs)DialogView",
- "mangledName": "$s13ApptentiveKit10DialogViewC",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Custom",
- "AccessControl",
- "RawDocComment",
- "ObjC"
- ],
- "superclassUsr": "c:objc(cs)UIView",
- "hasMissingDesignatedInitializers": true,
- "inheritsConvenienceInitializers": true,
- "superclassNames": [
- "UIKit.UIView",
- "UIKit.UIResponder",
- "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": "Conformance",
- "name": "__DefaultCustomPlaygroundQuickLookable",
- "printedName": "__DefaultCustomPlaygroundQuickLookable",
- "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP",
- "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP"
- },
- {
- "kind": "Conformance",
- "name": "Sendable",
- "printedName": "Sendable",
- "usr": "s:s8SendableP",
- "mangledName": "$ss8SendableP"
- }
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "UIKit",
- "printedName": "UIKit",
- "declKind": "Import",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "UIKit",
- "printedName": "UIKit",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "UIKit",
- "printedName": "UIKit",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "UIKit",
- "printedName": "UIKit",
- "declKind": "Import",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "UIKit",
- "printedName": "UIKit",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "ApptentiveAuthenticationFailureReason",
- "printedName": "ApptentiveAuthenticationFailureReason",
- "children": [
- {
- "kind": "Var",
- "name": "unknown",
- "printedName": "unknown",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.ApptentiveAuthenticationFailureReason.Type) -> ApptentiveKit.ApptentiveAuthenticationFailureReason",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveAuthenticationFailureReason",
- "printedName": "ApptentiveKit.ApptentiveAuthenticationFailureReason",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveAuthenticationFailureReason"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.ApptentiveAuthenticationFailureReason.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveAuthenticationFailureReason",
- "printedName": "ApptentiveKit.ApptentiveAuthenticationFailureReason",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveAuthenticationFailureReason"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveAuthenticationFailureReason@ApptentiveAuthenticationFailureReasonUnknown",
- "mangledName": "$s13ApptentiveKit0A27AuthenticationFailureReasonO7unknownyA2CmF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment",
- "ObjC"
- ],
- "fixedbinaryorder": 0
- },
- {
- "kind": "Var",
- "name": "invalidAlgorithm",
- "printedName": "invalidAlgorithm",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.ApptentiveAuthenticationFailureReason.Type) -> ApptentiveKit.ApptentiveAuthenticationFailureReason",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveAuthenticationFailureReason",
- "printedName": "ApptentiveKit.ApptentiveAuthenticationFailureReason",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveAuthenticationFailureReason"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.ApptentiveAuthenticationFailureReason.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveAuthenticationFailureReason",
- "printedName": "ApptentiveKit.ApptentiveAuthenticationFailureReason",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveAuthenticationFailureReason"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveAuthenticationFailureReason@ApptentiveAuthenticationFailureReasonInvalidAlgorithm",
- "mangledName": "$s13ApptentiveKit0A27AuthenticationFailureReasonO16invalidAlgorithmyA2CmF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment",
- "ObjC"
- ],
- "fixedbinaryorder": 1
- },
- {
- "kind": "Var",
- "name": "malformedToken",
- "printedName": "malformedToken",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.ApptentiveAuthenticationFailureReason.Type) -> ApptentiveKit.ApptentiveAuthenticationFailureReason",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveAuthenticationFailureReason",
- "printedName": "ApptentiveKit.ApptentiveAuthenticationFailureReason",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveAuthenticationFailureReason"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.ApptentiveAuthenticationFailureReason.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveAuthenticationFailureReason",
- "printedName": "ApptentiveKit.ApptentiveAuthenticationFailureReason",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveAuthenticationFailureReason"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveAuthenticationFailureReason@ApptentiveAuthenticationFailureReasonMalformedToken",
- "mangledName": "$s13ApptentiveKit0A27AuthenticationFailureReasonO14malformedTokenyA2CmF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment",
- "ObjC"
- ],
- "fixedbinaryorder": 2
- },
- {
- "kind": "Var",
- "name": "invalidToken",
- "printedName": "invalidToken",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.ApptentiveAuthenticationFailureReason.Type) -> ApptentiveKit.ApptentiveAuthenticationFailureReason",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveAuthenticationFailureReason",
- "printedName": "ApptentiveKit.ApptentiveAuthenticationFailureReason",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveAuthenticationFailureReason"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.ApptentiveAuthenticationFailureReason.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveAuthenticationFailureReason",
- "printedName": "ApptentiveKit.ApptentiveAuthenticationFailureReason",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveAuthenticationFailureReason"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveAuthenticationFailureReason@ApptentiveAuthenticationFailureReasonInvalidToken",
- "mangledName": "$s13ApptentiveKit0A27AuthenticationFailureReasonO12invalidTokenyA2CmF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment",
- "ObjC"
- ],
- "fixedbinaryorder": 3
- },
- {
- "kind": "Var",
- "name": "missingSubClaim",
- "printedName": "missingSubClaim",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.ApptentiveAuthenticationFailureReason.Type) -> ApptentiveKit.ApptentiveAuthenticationFailureReason",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveAuthenticationFailureReason",
- "printedName": "ApptentiveKit.ApptentiveAuthenticationFailureReason",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveAuthenticationFailureReason"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.ApptentiveAuthenticationFailureReason.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveAuthenticationFailureReason",
- "printedName": "ApptentiveKit.ApptentiveAuthenticationFailureReason",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveAuthenticationFailureReason"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveAuthenticationFailureReason@ApptentiveAuthenticationFailureReasonMissingSubClaim",
- "mangledName": "$s13ApptentiveKit0A27AuthenticationFailureReasonO15missingSubClaimyA2CmF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment",
- "ObjC"
- ],
- "fixedbinaryorder": 4
- },
- {
- "kind": "Var",
- "name": "mismatchedSubClaim",
- "printedName": "mismatchedSubClaim",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.ApptentiveAuthenticationFailureReason.Type) -> ApptentiveKit.ApptentiveAuthenticationFailureReason",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveAuthenticationFailureReason",
- "printedName": "ApptentiveKit.ApptentiveAuthenticationFailureReason",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveAuthenticationFailureReason"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.ApptentiveAuthenticationFailureReason.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveAuthenticationFailureReason",
- "printedName": "ApptentiveKit.ApptentiveAuthenticationFailureReason",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveAuthenticationFailureReason"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveAuthenticationFailureReason@ApptentiveAuthenticationFailureReasonMismatchedSubClaim",
- "mangledName": "$s13ApptentiveKit0A27AuthenticationFailureReasonO18mismatchedSubClaimyA2CmF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment",
- "ObjC"
- ],
- "fixedbinaryorder": 5
- },
- {
- "kind": "Var",
- "name": "invalidSubClaim",
- "printedName": "invalidSubClaim",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.ApptentiveAuthenticationFailureReason.Type) -> ApptentiveKit.ApptentiveAuthenticationFailureReason",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveAuthenticationFailureReason",
- "printedName": "ApptentiveKit.ApptentiveAuthenticationFailureReason",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveAuthenticationFailureReason"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.ApptentiveAuthenticationFailureReason.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveAuthenticationFailureReason",
- "printedName": "ApptentiveKit.ApptentiveAuthenticationFailureReason",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveAuthenticationFailureReason"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveAuthenticationFailureReason@ApptentiveAuthenticationFailureReasonInvalidSubClaim",
- "mangledName": "$s13ApptentiveKit0A27AuthenticationFailureReasonO15invalidSubClaimyA2CmF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment",
- "ObjC"
- ],
- "fixedbinaryorder": 6
- },
- {
- "kind": "Var",
- "name": "expiredToken",
- "printedName": "expiredToken",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.ApptentiveAuthenticationFailureReason.Type) -> ApptentiveKit.ApptentiveAuthenticationFailureReason",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveAuthenticationFailureReason",
- "printedName": "ApptentiveKit.ApptentiveAuthenticationFailureReason",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveAuthenticationFailureReason"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.ApptentiveAuthenticationFailureReason.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveAuthenticationFailureReason",
- "printedName": "ApptentiveKit.ApptentiveAuthenticationFailureReason",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveAuthenticationFailureReason"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveAuthenticationFailureReason@ApptentiveAuthenticationFailureReasonExpiredToken",
- "mangledName": "$s13ApptentiveKit0A27AuthenticationFailureReasonO12expiredTokenyA2CmF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment",
- "ObjC"
- ],
- "fixedbinaryorder": 7
- },
- {
- "kind": "Var",
- "name": "revokedToken",
- "printedName": "revokedToken",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.ApptentiveAuthenticationFailureReason.Type) -> ApptentiveKit.ApptentiveAuthenticationFailureReason",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveAuthenticationFailureReason",
- "printedName": "ApptentiveKit.ApptentiveAuthenticationFailureReason",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveAuthenticationFailureReason"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.ApptentiveAuthenticationFailureReason.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveAuthenticationFailureReason",
- "printedName": "ApptentiveKit.ApptentiveAuthenticationFailureReason",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveAuthenticationFailureReason"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveAuthenticationFailureReason@ApptentiveAuthenticationFailureReasonRevokedToken",
- "mangledName": "$s13ApptentiveKit0A27AuthenticationFailureReasonO12revokedTokenyA2CmF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment",
- "ObjC"
- ],
- "fixedbinaryorder": 8
- },
- {
- "kind": "Var",
- "name": "missingAppKey",
- "printedName": "missingAppKey",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.ApptentiveAuthenticationFailureReason.Type) -> ApptentiveKit.ApptentiveAuthenticationFailureReason",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveAuthenticationFailureReason",
- "printedName": "ApptentiveKit.ApptentiveAuthenticationFailureReason",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveAuthenticationFailureReason"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.ApptentiveAuthenticationFailureReason.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveAuthenticationFailureReason",
- "printedName": "ApptentiveKit.ApptentiveAuthenticationFailureReason",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveAuthenticationFailureReason"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveAuthenticationFailureReason@ApptentiveAuthenticationFailureReasonMissingAppKey",
- "mangledName": "$s13ApptentiveKit0A27AuthenticationFailureReasonO13missingAppKeyyA2CmF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment",
- "ObjC"
- ],
- "fixedbinaryorder": 9
- },
- {
- "kind": "Var",
- "name": "missingAppSignature",
- "printedName": "missingAppSignature",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.ApptentiveAuthenticationFailureReason.Type) -> ApptentiveKit.ApptentiveAuthenticationFailureReason",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveAuthenticationFailureReason",
- "printedName": "ApptentiveKit.ApptentiveAuthenticationFailureReason",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveAuthenticationFailureReason"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.ApptentiveAuthenticationFailureReason.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveAuthenticationFailureReason",
- "printedName": "ApptentiveKit.ApptentiveAuthenticationFailureReason",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveAuthenticationFailureReason"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveAuthenticationFailureReason@ApptentiveAuthenticationFailureReasonMissingAppSignature",
- "mangledName": "$s13ApptentiveKit0A27AuthenticationFailureReasonO19missingAppSignatureyA2CmF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment",
- "ObjC"
- ],
- "fixedbinaryorder": 10
- },
- {
- "kind": "Var",
- "name": "invalidKeySignaturePair",
- "printedName": "invalidKeySignaturePair",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.ApptentiveAuthenticationFailureReason.Type) -> ApptentiveKit.ApptentiveAuthenticationFailureReason",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveAuthenticationFailureReason",
- "printedName": "ApptentiveKit.ApptentiveAuthenticationFailureReason",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveAuthenticationFailureReason"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.ApptentiveAuthenticationFailureReason.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveAuthenticationFailureReason",
- "printedName": "ApptentiveKit.ApptentiveAuthenticationFailureReason",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveAuthenticationFailureReason"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveAuthenticationFailureReason@ApptentiveAuthenticationFailureReasonInvalidKeySignaturePair",
- "mangledName": "$s13ApptentiveKit0A27AuthenticationFailureReasonO23invalidKeySignaturePairyA2CmF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment",
- "ObjC"
- ],
- "fixedbinaryorder": 11
- },
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(rawValue:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "ApptentiveKit.ApptentiveAuthenticationFailureReason?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveAuthenticationFailureReason",
- "printedName": "ApptentiveKit.ApptentiveAuthenticationFailureReason",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveAuthenticationFailureReason"
- }
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ],
- "declKind": "Constructor",
- "usr": "s:13ApptentiveKit0A27AuthenticationFailureReasonO8rawValueACSgSi_tcfc",
- "mangledName": "$s13ApptentiveKit0A27AuthenticationFailureReasonO8rawValueACSgSi_tcfc",
- "moduleName": "ApptentiveKit",
- "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:13ApptentiveKit0A27AuthenticationFailureReasonO8rawValueSivp",
- "mangledName": "$s13ApptentiveKit0A27AuthenticationFailureReasonO8rawValueSivp",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A27AuthenticationFailureReasonO8rawValueSivg",
- "mangledName": "$s13ApptentiveKit0A27AuthenticationFailureReasonO8rawValueSivg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "get"
- }
- ]
- }
- ],
- "declKind": "Enum",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveAuthenticationFailureReason",
- "mangledName": "$s13ApptentiveKit0A27AuthenticationFailureReasonO",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "declAttributes": [
- "AccessControl",
- "ObjC",
- "Available"
- ],
- "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": "TypeDecl",
- "name": "ApptentiveConfiguration",
- "printedName": "ApptentiveConfiguration",
- "children": [
- {
- "kind": "Var",
- "name": "apptentiveKey",
- "printedName": "apptentiveKey",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveConfiguration(py)apptentiveKey",
- "mangledName": "$s13ApptentiveKit0A13ConfigurationC13apptentiveKeySSvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveConfiguration(im)apptentiveKey",
- "mangledName": "$s13ApptentiveKit0A13ConfigurationC13apptentiveKeySSvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final",
- "ObjC"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveSignature",
- "printedName": "apptentiveSignature",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveConfiguration(py)apptentiveSignature",
- "mangledName": "$s13ApptentiveKit0A13ConfigurationC19apptentiveSignatureSSvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveConfiguration(im)apptentiveSignature",
- "mangledName": "$s13ApptentiveKit0A13ConfigurationC19apptentiveSignatureSSvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final",
- "ObjC"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "logLevel",
- "printedName": "logLevel",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveLogLevel",
- "printedName": "ApptentiveKit.ApptentiveLogLevel",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveLogLevel"
- }
- ],
- "declKind": "Var",
- "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveConfiguration(py)logLevel",
- "mangledName": "$s13ApptentiveKit0A13ConfigurationC8logLevelAA0a3LogE0Ovp",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "Available",
- "RawDocComment"
- ],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveLogLevel",
- "printedName": "ApptentiveKit.ApptentiveLogLevel",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveLogLevel"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveConfiguration(im)logLevel",
- "mangledName": "$s13ApptentiveKit0A13ConfigurationC8logLevelAA0a3LogE0Ovg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "ObjC"
- ],
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "ApptentiveLogLevel",
- "printedName": "ApptentiveKit.ApptentiveLogLevel",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveLogLevel"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveConfiguration(im)setLogLevel:",
- "mangledName": "$s13ApptentiveKit0A13ConfigurationC8logLevelAA0a3LogE0Ovs",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "ObjC"
- ],
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A13ConfigurationC8logLevelAA0a3LogE0OvM",
- "mangledName": "$s13ApptentiveKit0A13ConfigurationC8logLevelAA0a3LogE0OvM",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "implicit": true,
- "declAttributes": [
- "Available"
- ],
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "shouldSanitizeLogMessages",
- "printedName": "shouldSanitizeLogMessages",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ],
- "declKind": "Var",
- "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveConfiguration(py)shouldSanitizeLogMessages",
- "mangledName": "$s13ApptentiveKit0A13ConfigurationC25shouldSanitizeLogMessagesSbvp",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "Available",
- "RawDocComment"
- ],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveConfiguration(im)shouldSanitizeLogMessages",
- "mangledName": "$s13ApptentiveKit0A13ConfigurationC25shouldSanitizeLogMessagesSbvg",
- "moduleName": "ApptentiveKit",
- "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@ApptentiveKit@objc(cs)ApptentiveConfiguration(im)setShouldSanitizeLogMessages:",
- "mangledName": "$s13ApptentiveKit0A13ConfigurationC25shouldSanitizeLogMessagesSbvs",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "ObjC"
- ],
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A13ConfigurationC25shouldSanitizeLogMessagesSbvM",
- "mangledName": "$s13ApptentiveKit0A13ConfigurationC25shouldSanitizeLogMessagesSbvM",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "implicit": true,
- "declAttributes": [
- "Available"
- ],
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "baseURL",
- "printedName": "baseURL",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Foundation.URL?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "URL",
- "printedName": "Foundation.URL",
- "usr": "s:10Foundation3URLV"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Var",
- "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveConfiguration(py)baseURL",
- "mangledName": "$s13ApptentiveKit0A13ConfigurationC7baseURL10Foundation0E0VSgvp",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "Available",
- "RawDocComment"
- ],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Foundation.URL?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "URL",
- "printedName": "Foundation.URL",
- "usr": "s:10Foundation3URLV"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveConfiguration(im)baseURL",
- "mangledName": "$s13ApptentiveKit0A13ConfigurationC7baseURL10Foundation0E0VSgvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "ObjC"
- ],
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Foundation.URL?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "URL",
- "printedName": "Foundation.URL",
- "usr": "s:10Foundation3URLV"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveConfiguration(im)setBaseURL:",
- "mangledName": "$s13ApptentiveKit0A13ConfigurationC7baseURL10Foundation0E0VSgvs",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "ObjC"
- ],
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A13ConfigurationC7baseURL10Foundation0E0VSgvM",
- "mangledName": "$s13ApptentiveKit0A13ConfigurationC7baseURL10Foundation0E0VSgvM",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "implicit": true,
- "declAttributes": [
- "Available"
- ],
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "distributionName",
- "printedName": "distributionName",
- "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@ApptentiveKit@objc(cs)ApptentiveConfiguration(py)distributionName",
- "mangledName": "$s13ApptentiveKit0A13ConfigurationC16distributionNameSSSgvp",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "Available",
- "RawDocComment"
- ],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveConfiguration(im)distributionName",
- "mangledName": "$s13ApptentiveKit0A13ConfigurationC16distributionNameSSSgvg",
- "moduleName": "ApptentiveKit",
- "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@ApptentiveKit@objc(cs)ApptentiveConfiguration(im)setDistributionName:",
- "mangledName": "$s13ApptentiveKit0A13ConfigurationC16distributionNameSSSgvs",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "ObjC"
- ],
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A13ConfigurationC16distributionNameSSSgvM",
- "mangledName": "$s13ApptentiveKit0A13ConfigurationC16distributionNameSSSgvM",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "implicit": true,
- "declAttributes": [
- "Available"
- ],
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "distributionVersion",
- "printedName": "distributionVersion",
- "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@ApptentiveKit@objc(cs)ApptentiveConfiguration(py)distributionVersion",
- "mangledName": "$s13ApptentiveKit0A13ConfigurationC19distributionVersionSSSgvp",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "Available",
- "RawDocComment"
- ],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveConfiguration(im)distributionVersion",
- "mangledName": "$s13ApptentiveKit0A13ConfigurationC19distributionVersionSSSgvg",
- "moduleName": "ApptentiveKit",
- "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@ApptentiveKit@objc(cs)ApptentiveConfiguration(im)setDistributionVersion:",
- "mangledName": "$s13ApptentiveKit0A13ConfigurationC19distributionVersionSSSgvs",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "ObjC"
- ],
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A13ConfigurationC19distributionVersionSSSgvM",
- "mangledName": "$s13ApptentiveKit0A13ConfigurationC19distributionVersionSSSgvM",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "implicit": true,
- "declAttributes": [
- "Available"
- ],
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "appID",
- "printedName": "appID",
- "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@ApptentiveKit@objc(cs)ApptentiveConfiguration(py)appID",
- "mangledName": "$s13ApptentiveKit0A13ConfigurationC5appIDSSSgvp",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "Available",
- "RawDocComment"
- ],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveConfiguration(im)appID",
- "mangledName": "$s13ApptentiveKit0A13ConfigurationC5appIDSSSgvg",
- "moduleName": "ApptentiveKit",
- "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@ApptentiveKit@objc(cs)ApptentiveConfiguration(im)setAppID:",
- "mangledName": "$s13ApptentiveKit0A13ConfigurationC5appIDSSSgvs",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "ObjC"
- ],
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A13ConfigurationC5appIDSSSgvM",
- "mangledName": "$s13ApptentiveKit0A13ConfigurationC5appIDSSSgvM",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "implicit": true,
- "declAttributes": [
- "Available"
- ],
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "showInfoButton",
- "printedName": "showInfoButton",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ],
- "declKind": "Var",
- "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveConfiguration(py)showInfoButton",
- "mangledName": "$s13ApptentiveKit0A13ConfigurationC14showInfoButtonSbvp",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "Available",
- "RawDocComment"
- ],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveConfiguration(im)showInfoButton",
- "mangledName": "$s13ApptentiveKit0A13ConfigurationC14showInfoButtonSbvg",
- "moduleName": "ApptentiveKit",
- "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@ApptentiveKit@objc(cs)ApptentiveConfiguration(im)setShowInfoButton:",
- "mangledName": "$s13ApptentiveKit0A13ConfigurationC14showInfoButtonSbvs",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "ObjC"
- ],
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A13ConfigurationC14showInfoButtonSbvM",
- "mangledName": "$s13ApptentiveKit0A13ConfigurationC14showInfoButtonSbvM",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "implicit": true,
- "declAttributes": [
- "Available"
- ],
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "surveyTermsAndConditions",
- "printedName": "surveyTermsAndConditions",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "ApptentiveKit.TermsAndConditions?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "TermsAndConditions",
- "printedName": "ApptentiveKit.TermsAndConditions",
- "usr": "c:@M@ApptentiveKit@objc(cs)TermsAndConditions"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Var",
- "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveConfiguration(py)surveyTermsAndConditions",
- "mangledName": "$s13ApptentiveKit0A13ConfigurationC24surveyTermsAndConditionsAA0efG0CSgvp",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "Available",
- "RawDocComment"
- ],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "ApptentiveKit.TermsAndConditions?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "TermsAndConditions",
- "printedName": "ApptentiveKit.TermsAndConditions",
- "usr": "c:@M@ApptentiveKit@objc(cs)TermsAndConditions"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveConfiguration(im)surveyTermsAndConditions",
- "mangledName": "$s13ApptentiveKit0A13ConfigurationC24surveyTermsAndConditionsAA0efG0CSgvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "ObjC"
- ],
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "ApptentiveKit.TermsAndConditions?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "TermsAndConditions",
- "printedName": "ApptentiveKit.TermsAndConditions",
- "usr": "c:@M@ApptentiveKit@objc(cs)TermsAndConditions"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveConfiguration(im)setSurveyTermsAndConditions:",
- "mangledName": "$s13ApptentiveKit0A13ConfigurationC24surveyTermsAndConditionsAA0efG0CSgvs",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "ObjC"
- ],
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A13ConfigurationC24surveyTermsAndConditionsAA0efG0CSgvM",
- "mangledName": "$s13ApptentiveKit0A13ConfigurationC24surveyTermsAndConditionsAA0efG0CSgvM",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "implicit": true,
- "declAttributes": [
- "Available"
- ],
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(apptentiveKey:apptentiveSignature:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "ApptentiveKit.ApptentiveConfiguration?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveConfiguration",
- "printedName": "ApptentiveKit.ApptentiveConfiguration",
- "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveConfiguration"
- }
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Constructor",
- "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveConfiguration(im)initWithApptentiveKey:apptentiveSignature:",
- "mangledName": "$s13ApptentiveKit0A13ConfigurationC13apptentiveKey0D9SignatureACSgSS_SStcfc",
- "moduleName": "ApptentiveKit",
- "objc_name": "initWithApptentiveKey:apptentiveSignature:",
- "declAttributes": [
- "Required",
- "AccessControl",
- "ObjC"
- ],
- "init_kind": "Designated"
- },
- {
- "kind": "Function",
- "name": "configuration",
- "printedName": "configuration(apptentiveKey:apptentiveSignature:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveConfiguration",
- "printedName": "ApptentiveKit.ApptentiveConfiguration",
- "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveConfiguration"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Func",
- "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveConfiguration(cm)configurationWithApptentiveKey:apptentiveSignature:",
- "mangledName": "$s13ApptentiveKit0A13ConfigurationC13configuration13apptentiveKey0E9SignatureACSS_SStFZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "objc_name": "configurationWithApptentiveKey:apptentiveSignature:",
- "declAttributes": [
- "Final",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveConfiguration",
- "printedName": "ApptentiveKit.ApptentiveConfiguration",
- "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveConfiguration"
- }
- ],
- "declKind": "Constructor",
- "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveConfiguration(im)init",
- "mangledName": "$s13ApptentiveKit0A13ConfigurationCACycfc",
- "moduleName": "ApptentiveKit",
- "overriding": true,
- "implicit": true,
- "objc_name": "init",
- "declAttributes": [
- "Dynamic",
- "ObjC",
- "Override"
- ],
- "init_kind": "Designated"
- }
- ],
- "declKind": "Class",
- "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveConfiguration",
- "mangledName": "$s13ApptentiveKit0A13ConfigurationC",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "declAttributes": [
- "AccessControl",
- "Available",
- "ObjC"
- ],
- "superclassUsr": "c:objc(cs)NSObject",
- "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": "ApptentivePushProvider",
- "printedName": "ApptentivePushProvider",
- "children": [
- {
- "kind": "Var",
- "name": "apptentive",
- "printedName": "apptentive",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.ApptentivePushProvider.Type) -> ApptentiveKit.ApptentivePushProvider",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentivePushProvider",
- "printedName": "ApptentiveKit.ApptentivePushProvider",
- "usr": "c:@M@ApptentiveKit@E@ApptentivePushProvider"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.ApptentivePushProvider.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentivePushProvider",
- "printedName": "ApptentiveKit.ApptentivePushProvider",
- "usr": "c:@M@ApptentiveKit@E@ApptentivePushProvider"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "c:@M@ApptentiveKit@E@ApptentivePushProvider@ApptentivePushProviderApptentive",
- "mangledName": "$s13ApptentiveKit0A12PushProviderO10apptentiveyA2CmF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment",
- "ObjC"
- ],
- "fixedbinaryorder": 0
- },
- {
- "kind": "Var",
- "name": "urbanAirship",
- "printedName": "urbanAirship",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.ApptentivePushProvider.Type) -> ApptentiveKit.ApptentivePushProvider",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentivePushProvider",
- "printedName": "ApptentiveKit.ApptentivePushProvider",
- "usr": "c:@M@ApptentiveKit@E@ApptentivePushProvider"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.ApptentivePushProvider.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentivePushProvider",
- "printedName": "ApptentiveKit.ApptentivePushProvider",
- "usr": "c:@M@ApptentiveKit@E@ApptentivePushProvider"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "c:@M@ApptentiveKit@E@ApptentivePushProvider@ApptentivePushProviderUrbanAirship",
- "mangledName": "$s13ApptentiveKit0A12PushProviderO12urbanAirshipyA2CmF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment",
- "ObjC"
- ],
- "fixedbinaryorder": 1
- },
- {
- "kind": "Var",
- "name": "amazonSNS",
- "printedName": "amazonSNS",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.ApptentivePushProvider.Type) -> ApptentiveKit.ApptentivePushProvider",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentivePushProvider",
- "printedName": "ApptentiveKit.ApptentivePushProvider",
- "usr": "c:@M@ApptentiveKit@E@ApptentivePushProvider"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.ApptentivePushProvider.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentivePushProvider",
- "printedName": "ApptentiveKit.ApptentivePushProvider",
- "usr": "c:@M@ApptentiveKit@E@ApptentivePushProvider"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "c:@M@ApptentiveKit@E@ApptentivePushProvider@ApptentivePushProviderAmazonSNS",
- "mangledName": "$s13ApptentiveKit0A12PushProviderO9amazonSNSyA2CmF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment",
- "ObjC"
- ],
- "fixedbinaryorder": 2
- },
- {
- "kind": "Var",
- "name": "parse",
- "printedName": "parse",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.ApptentivePushProvider.Type) -> ApptentiveKit.ApptentivePushProvider",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentivePushProvider",
- "printedName": "ApptentiveKit.ApptentivePushProvider",
- "usr": "c:@M@ApptentiveKit@E@ApptentivePushProvider"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.ApptentivePushProvider.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentivePushProvider",
- "printedName": "ApptentiveKit.ApptentivePushProvider",
- "usr": "c:@M@ApptentiveKit@E@ApptentivePushProvider"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "c:@M@ApptentiveKit@E@ApptentivePushProvider@ApptentivePushProviderParse",
- "mangledName": "$s13ApptentiveKit0A12PushProviderO5parseyA2CmF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment",
- "ObjC"
- ],
- "fixedbinaryorder": 3
- },
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(rawValue:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "ApptentiveKit.ApptentivePushProvider?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentivePushProvider",
- "printedName": "ApptentiveKit.ApptentivePushProvider",
- "usr": "c:@M@ApptentiveKit@E@ApptentivePushProvider"
- }
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ],
- "declKind": "Constructor",
- "usr": "s:13ApptentiveKit0A12PushProviderO8rawValueACSgSi_tcfc",
- "mangledName": "$s13ApptentiveKit0A12PushProviderO8rawValueACSgSi_tcfc",
- "moduleName": "ApptentiveKit",
- "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:13ApptentiveKit0A12PushProviderO8rawValueSivp",
- "mangledName": "$s13ApptentiveKit0A12PushProviderO8rawValueSivp",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A12PushProviderO8rawValueSivg",
- "mangledName": "$s13ApptentiveKit0A12PushProviderO8rawValueSivg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "get"
- }
- ]
- }
- ],
- "declKind": "Enum",
- "usr": "c:@M@ApptentiveKit@E@ApptentivePushProvider",
- "mangledName": "$s13ApptentiveKit0A12PushProviderO",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "declAttributes": [
- "AccessControl",
- "ObjC",
- "Available"
- ],
- "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": "TypeDecl",
- "name": "ApptentiveLogLevel",
- "printedName": "ApptentiveLogLevel",
- "children": [
- {
- "kind": "Var",
- "name": "undefined",
- "printedName": "undefined",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.ApptentiveLogLevel.Type) -> ApptentiveKit.ApptentiveLogLevel",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveLogLevel",
- "printedName": "ApptentiveKit.ApptentiveLogLevel",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveLogLevel"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.ApptentiveLogLevel.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveLogLevel",
- "printedName": "ApptentiveKit.ApptentiveLogLevel",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveLogLevel"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveLogLevel@ApptentiveLogLevelUndefined",
- "mangledName": "$s13ApptentiveKit0A8LogLevelO9undefinedyA2CmF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment",
- "ObjC"
- ],
- "fixedbinaryorder": 0
- },
- {
- "kind": "Var",
- "name": "crit",
- "printedName": "crit",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.ApptentiveLogLevel.Type) -> ApptentiveKit.ApptentiveLogLevel",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveLogLevel",
- "printedName": "ApptentiveKit.ApptentiveLogLevel",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveLogLevel"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.ApptentiveLogLevel.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveLogLevel",
- "printedName": "ApptentiveKit.ApptentiveLogLevel",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveLogLevel"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveLogLevel@ApptentiveLogLevelCrit",
- "mangledName": "$s13ApptentiveKit0A8LogLevelO4crityA2CmF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment",
- "ObjC"
- ],
- "fixedbinaryorder": 1
- },
- {
- "kind": "Var",
- "name": "error",
- "printedName": "error",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.ApptentiveLogLevel.Type) -> ApptentiveKit.ApptentiveLogLevel",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveLogLevel",
- "printedName": "ApptentiveKit.ApptentiveLogLevel",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveLogLevel"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.ApptentiveLogLevel.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveLogLevel",
- "printedName": "ApptentiveKit.ApptentiveLogLevel",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveLogLevel"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveLogLevel@ApptentiveLogLevelError",
- "mangledName": "$s13ApptentiveKit0A8LogLevelO5erroryA2CmF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment",
- "ObjC"
- ],
- "fixedbinaryorder": 2
- },
- {
- "kind": "Var",
- "name": "warn",
- "printedName": "warn",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.ApptentiveLogLevel.Type) -> ApptentiveKit.ApptentiveLogLevel",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveLogLevel",
- "printedName": "ApptentiveKit.ApptentiveLogLevel",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveLogLevel"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.ApptentiveLogLevel.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveLogLevel",
- "printedName": "ApptentiveKit.ApptentiveLogLevel",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveLogLevel"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveLogLevel@ApptentiveLogLevelWarn",
- "mangledName": "$s13ApptentiveKit0A8LogLevelO4warnyA2CmF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment",
- "ObjC"
- ],
- "fixedbinaryorder": 3
- },
- {
- "kind": "Var",
- "name": "info",
- "printedName": "info",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.ApptentiveLogLevel.Type) -> ApptentiveKit.ApptentiveLogLevel",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveLogLevel",
- "printedName": "ApptentiveKit.ApptentiveLogLevel",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveLogLevel"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.ApptentiveLogLevel.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveLogLevel",
- "printedName": "ApptentiveKit.ApptentiveLogLevel",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveLogLevel"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveLogLevel@ApptentiveLogLevelInfo",
- "mangledName": "$s13ApptentiveKit0A8LogLevelO4infoyA2CmF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment",
- "ObjC"
- ],
- "fixedbinaryorder": 4
- },
- {
- "kind": "Var",
- "name": "debug",
- "printedName": "debug",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.ApptentiveLogLevel.Type) -> ApptentiveKit.ApptentiveLogLevel",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveLogLevel",
- "printedName": "ApptentiveKit.ApptentiveLogLevel",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveLogLevel"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.ApptentiveLogLevel.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveLogLevel",
- "printedName": "ApptentiveKit.ApptentiveLogLevel",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveLogLevel"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveLogLevel@ApptentiveLogLevelDebug",
- "mangledName": "$s13ApptentiveKit0A8LogLevelO5debugyA2CmF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment",
- "ObjC"
- ],
- "fixedbinaryorder": 5
- },
- {
- "kind": "Var",
- "name": "verbose",
- "printedName": "verbose",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.ApptentiveLogLevel.Type) -> ApptentiveKit.ApptentiveLogLevel",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveLogLevel",
- "printedName": "ApptentiveKit.ApptentiveLogLevel",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveLogLevel"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.ApptentiveLogLevel.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveLogLevel",
- "printedName": "ApptentiveKit.ApptentiveLogLevel",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveLogLevel"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveLogLevel@ApptentiveLogLevelVerbose",
- "mangledName": "$s13ApptentiveKit0A8LogLevelO7verboseyA2CmF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment",
- "ObjC"
- ],
- "fixedbinaryorder": 6
- },
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(rawValue:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "ApptentiveKit.ApptentiveLogLevel?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveLogLevel",
- "printedName": "ApptentiveKit.ApptentiveLogLevel",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveLogLevel"
- }
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "UInt",
- "printedName": "Swift.UInt",
- "usr": "s:Su"
- }
- ],
- "declKind": "Constructor",
- "usr": "s:13ApptentiveKit0A8LogLevelO8rawValueACSgSu_tcfc",
- "mangledName": "$s13ApptentiveKit0A8LogLevelO8rawValueACSgSu_tcfc",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "init_kind": "Designated"
- },
- {
- "kind": "Var",
- "name": "rawValue",
- "printedName": "rawValue",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UInt",
- "printedName": "Swift.UInt",
- "usr": "s:Su"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit0A8LogLevelO8rawValueSuvp",
- "mangledName": "$s13ApptentiveKit0A8LogLevelO8rawValueSuvp",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UInt",
- "printedName": "Swift.UInt",
- "usr": "s:Su"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A8LogLevelO8rawValueSuvg",
- "mangledName": "$s13ApptentiveKit0A8LogLevelO8rawValueSuvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "get"
- }
- ]
- }
- ],
- "declKind": "Enum",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveLogLevel",
- "mangledName": "$s13ApptentiveKit0A8LogLevelO",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "declAttributes": [
- "AccessControl",
- "ObjC",
- "Available"
- ],
- "enumRawTypeName": "UInt",
- "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": "UInt",
- "printedName": "Swift.UInt",
- "usr": "s:Su"
- }
- ]
- }
- ],
- "usr": "s:SY",
- "mangledName": "$sSY"
- }
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "TermsAndConditions",
- "printedName": "TermsAndConditions",
- "children": [
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(bodyText:linkText:linkURL:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "TermsAndConditions",
- "printedName": "ApptentiveKit.TermsAndConditions",
- "usr": "c:@M@ApptentiveKit@objc(cs)TermsAndConditions"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Foundation.URL?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "URL",
- "printedName": "Foundation.URL",
- "usr": "s:10Foundation3URLV"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Constructor",
- "usr": "s:13ApptentiveKit18TermsAndConditionsC8bodyText04linkG00H3URLACSSSg_AG10Foundation0I0VSgtcfc",
- "mangledName": "$s13ApptentiveKit18TermsAndConditionsC8bodyText04linkG00H3URLACSSSg_AG10Foundation0I0VSgtcfc",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "declAttributes": [
- "AccessControl",
- "Available"
- ],
- "init_kind": "Designated"
- },
- {
- "kind": "Var",
- "name": "bodyText",
- "printedName": "bodyText",
- "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": "s:13ApptentiveKit18TermsAndConditionsC8bodyTextSSSgvp",
- "mangledName": "$s13ApptentiveKit18TermsAndConditionsC8bodyTextSSSgvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl"
- ],
- "isLet": true,
- "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": "s:13ApptentiveKit18TermsAndConditionsC8bodyTextSSSgvg",
- "mangledName": "$s13ApptentiveKit18TermsAndConditionsC8bodyTextSSSgvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "linkText",
- "printedName": "linkText",
- "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": "s:13ApptentiveKit18TermsAndConditionsC8linkTextSSSgvp",
- "mangledName": "$s13ApptentiveKit18TermsAndConditionsC8linkTextSSSgvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl"
- ],
- "isLet": true,
- "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": "s:13ApptentiveKit18TermsAndConditionsC8linkTextSSSgvg",
- "mangledName": "$s13ApptentiveKit18TermsAndConditionsC8linkTextSSSgvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "linkURL",
- "printedName": "linkURL",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Foundation.URL?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "URL",
- "printedName": "Foundation.URL",
- "usr": "s:10Foundation3URLV"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit18TermsAndConditionsC7linkURL10Foundation0G0VSgvp",
- "mangledName": "$s13ApptentiveKit18TermsAndConditionsC7linkURL10Foundation0G0VSgvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Foundation.URL?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "URL",
- "printedName": "Foundation.URL",
- "usr": "s:10Foundation3URLV"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit18TermsAndConditionsC7linkURL10Foundation0G0VSgvg",
- "mangledName": "$s13ApptentiveKit18TermsAndConditionsC7linkURL10Foundation0G0VSgvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "TermsAndConditions",
- "printedName": "ApptentiveKit.TermsAndConditions",
- "usr": "c:@M@ApptentiveKit@objc(cs)TermsAndConditions"
- }
- ],
- "declKind": "Constructor",
- "usr": "c:@M@ApptentiveKit@objc(cs)TermsAndConditions(im)init",
- "mangledName": "$s13ApptentiveKit18TermsAndConditionsCACycfc",
- "moduleName": "ApptentiveKit",
- "overriding": true,
- "implicit": true,
- "objc_name": "init",
- "declAttributes": [
- "Dynamic",
- "ObjC",
- "Override"
- ],
- "init_kind": "Designated"
- }
- ],
- "declKind": "Class",
- "usr": "c:@M@ApptentiveKit@objc(cs)TermsAndConditions",
- "mangledName": "$s13ApptentiveKit18TermsAndConditionsC",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "declAttributes": [
- "AccessControl",
- "Available",
- "ObjC"
- ],
- "superclassUsr": "c:objc(cs)NSObject",
- "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": "ApptentiveStyle",
- "printedName": "ApptentiveStyle",
- "children": [
- {
- "kind": "Function",
- "name": "font",
- "printedName": "font(for:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- },
- {
- "kind": "TypeNominal",
- "name": "ApptentiveStyleIdentifier",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit0A5StyleP4font3forSo6UIFontCAA0aC10IdentifierO_tF",
- "mangledName": "$s13ApptentiveKit0A5StyleP4font3forSo6UIFontCAA0aC10IdentifierO_tF",
- "moduleName": "ApptentiveKit",
- "genericSig": "<τ_0_0 where τ_0_0 : ApptentiveKit.ApptentiveStyle>",
- "sugared_genericSig": "",
- "deprecated": true,
- "protocolReq": true,
- "declAttributes": [
- "Available"
- ],
- "reqNewWitnessTableEntry": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "color",
- "printedName": "color(for:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- },
- {
- "kind": "TypeNominal",
- "name": "ApptentiveStyleIdentifier",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit0A5StyleP5color3forSo7UIColorCAA0aC10IdentifierO_tF",
- "mangledName": "$s13ApptentiveKit0A5StyleP5color3forSo7UIColorCAA0aC10IdentifierO_tF",
- "moduleName": "ApptentiveKit",
- "genericSig": "<τ_0_0 where τ_0_0 : ApptentiveKit.ApptentiveStyle>",
- "sugared_genericSig": "",
- "deprecated": true,
- "protocolReq": true,
- "declAttributes": [
- "Available"
- ],
- "reqNewWitnessTableEntry": true,
- "funcSelfKind": "NonMutating"
- }
- ],
- "declKind": "Protocol",
- "usr": "s:13ApptentiveKit0A5StyleP",
- "mangledName": "$s13ApptentiveKit0A5StyleP",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "declAttributes": [
- "AccessControl",
- "Available"
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "ApptentiveStyleIdentifier",
- "printedName": "ApptentiveStyleIdentifier",
- "children": [
- {
- "kind": "Var",
- "name": "body",
- "printedName": "body",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.ApptentiveStyleIdentifier.Type) -> ApptentiveKit.ApptentiveStyleIdentifier",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveStyleIdentifier",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveStyleIdentifier",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO4bodyyA2CmF",
- "mangledName": "$s13ApptentiveKit0A15StyleIdentifierO4bodyyA2CmF",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "Var",
- "name": "headerTitle",
- "printedName": "headerTitle",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.ApptentiveStyleIdentifier.Type) -> ApptentiveKit.ApptentiveStyleIdentifier",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveStyleIdentifier",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveStyleIdentifier",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO11headerTitleyA2CmF",
- "mangledName": "$s13ApptentiveKit0A15StyleIdentifierO11headerTitleyA2CmF",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "Var",
- "name": "headerMessage",
- "printedName": "headerMessage",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.ApptentiveStyleIdentifier.Type) -> ApptentiveKit.ApptentiveStyleIdentifier",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveStyleIdentifier",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveStyleIdentifier",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO13headerMessageyA2CmF",
- "mangledName": "$s13ApptentiveKit0A15StyleIdentifierO13headerMessageyA2CmF",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "Var",
- "name": "messageDate",
- "printedName": "messageDate",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.ApptentiveStyleIdentifier.Type) -> ApptentiveKit.ApptentiveStyleIdentifier",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveStyleIdentifier",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveStyleIdentifier",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO11messageDateyA2CmF",
- "mangledName": "$s13ApptentiveKit0A15StyleIdentifierO11messageDateyA2CmF",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "Var",
- "name": "messageSender",
- "printedName": "messageSender",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.ApptentiveStyleIdentifier.Type) -> ApptentiveKit.ApptentiveStyleIdentifier",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveStyleIdentifier",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveStyleIdentifier",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO13messageSenderyA2CmF",
- "mangledName": "$s13ApptentiveKit0A15StyleIdentifierO13messageSenderyA2CmF",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "Var",
- "name": "messageStatus",
- "printedName": "messageStatus",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.ApptentiveStyleIdentifier.Type) -> ApptentiveKit.ApptentiveStyleIdentifier",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveStyleIdentifier",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveStyleIdentifier",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO13messageStatusyA2CmF",
- "mangledName": "$s13ApptentiveKit0A15StyleIdentifierO13messageStatusyA2CmF",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "Var",
- "name": "messageCenterStatus",
- "printedName": "messageCenterStatus",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.ApptentiveStyleIdentifier.Type) -> ApptentiveKit.ApptentiveStyleIdentifier",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveStyleIdentifier",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveStyleIdentifier",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO19messageCenterStatusyA2CmF",
- "mangledName": "$s13ApptentiveKit0A15StyleIdentifierO19messageCenterStatusyA2CmF",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "Var",
- "name": "surveyInstructions",
- "printedName": "surveyInstructions",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.ApptentiveStyleIdentifier.Type) -> ApptentiveKit.ApptentiveStyleIdentifier",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveStyleIdentifier",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveStyleIdentifier",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO18surveyInstructionsyA2CmF",
- "mangledName": "$s13ApptentiveKit0A15StyleIdentifierO18surveyInstructionsyA2CmF",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "Var",
- "name": "doneButton",
- "printedName": "doneButton",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.ApptentiveStyleIdentifier.Type) -> ApptentiveKit.ApptentiveStyleIdentifier",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveStyleIdentifier",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveStyleIdentifier",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO10doneButtonyA2CmF",
- "mangledName": "$s13ApptentiveKit0A15StyleIdentifierO10doneButtonyA2CmF",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "Var",
- "name": "button",
- "printedName": "button",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.ApptentiveStyleIdentifier.Type) -> ApptentiveKit.ApptentiveStyleIdentifier",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveStyleIdentifier",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveStyleIdentifier",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO6buttonyA2CmF",
- "mangledName": "$s13ApptentiveKit0A15StyleIdentifierO6buttonyA2CmF",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "Var",
- "name": "submitButton",
- "printedName": "submitButton",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.ApptentiveStyleIdentifier.Type) -> ApptentiveKit.ApptentiveStyleIdentifier",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveStyleIdentifier",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveStyleIdentifier",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO12submitButtonyA2CmF",
- "mangledName": "$s13ApptentiveKit0A15StyleIdentifierO12submitButtonyA2CmF",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "Var",
- "name": "textInput",
- "printedName": "textInput",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.ApptentiveStyleIdentifier.Type) -> ApptentiveKit.ApptentiveStyleIdentifier",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveStyleIdentifier",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveStyleIdentifier",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO9textInputyA2CmF",
- "mangledName": "$s13ApptentiveKit0A15StyleIdentifierO9textInputyA2CmF",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "Var",
- "name": "headerBackground",
- "printedName": "headerBackground",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.ApptentiveStyleIdentifier.Type) -> ApptentiveKit.ApptentiveStyleIdentifier",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveStyleIdentifier",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveStyleIdentifier",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO16headerBackgroundyA2CmF",
- "mangledName": "$s13ApptentiveKit0A15StyleIdentifierO16headerBackgroundyA2CmF",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "Var",
- "name": "footerBackground",
- "printedName": "footerBackground",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.ApptentiveStyleIdentifier.Type) -> ApptentiveKit.ApptentiveStyleIdentifier",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveStyleIdentifier",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveStyleIdentifier",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO16footerBackgroundyA2CmF",
- "mangledName": "$s13ApptentiveKit0A15StyleIdentifierO16footerBackgroundyA2CmF",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "Var",
- "name": "failure",
- "printedName": "failure",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.ApptentiveStyleIdentifier.Type) -> ApptentiveKit.ApptentiveStyleIdentifier",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveStyleIdentifier",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveStyleIdentifier",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO7failureyA2CmF",
- "mangledName": "$s13ApptentiveKit0A15StyleIdentifierO7failureyA2CmF",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "Var",
- "name": "separator",
- "printedName": "separator",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.ApptentiveStyleIdentifier.Type) -> ApptentiveKit.ApptentiveStyleIdentifier",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveStyleIdentifier",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveStyleIdentifier",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO9separatoryA2CmF",
- "mangledName": "$s13ApptentiveKit0A15StyleIdentifierO9separatoryA2CmF",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "Var",
- "name": "background",
- "printedName": "background",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.ApptentiveStyleIdentifier.Type) -> ApptentiveKit.ApptentiveStyleIdentifier",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveStyleIdentifier",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveStyleIdentifier",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO10backgroundyA2CmF",
- "mangledName": "$s13ApptentiveKit0A15StyleIdentifierO10backgroundyA2CmF",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "Var",
- "name": "collectionBackground",
- "printedName": "collectionBackground",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.ApptentiveStyleIdentifier.Type) -> ApptentiveKit.ApptentiveStyleIdentifier",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveStyleIdentifier",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveStyleIdentifier",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO20collectionBackgroundyA2CmF",
- "mangledName": "$s13ApptentiveKit0A15StyleIdentifierO20collectionBackgroundyA2CmF",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "Var",
- "name": "textInputBackground",
- "printedName": "textInputBackground",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.ApptentiveStyleIdentifier.Type) -> ApptentiveKit.ApptentiveStyleIdentifier",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveStyleIdentifier",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveStyleIdentifier",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO19textInputBackgroundyA2CmF",
- "mangledName": "$s13ApptentiveKit0A15StyleIdentifierO19textInputBackgroundyA2CmF",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "Var",
- "name": "textInputPlaceholder",
- "printedName": "textInputPlaceholder",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.ApptentiveStyleIdentifier.Type) -> ApptentiveKit.ApptentiveStyleIdentifier",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveStyleIdentifier",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveStyleIdentifier",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO20textInputPlaceholderyA2CmF",
- "mangledName": "$s13ApptentiveKit0A15StyleIdentifierO20textInputPlaceholderyA2CmF",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "Var",
- "name": "messageBackground",
- "printedName": "messageBackground",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.ApptentiveStyleIdentifier.Type) -> ApptentiveKit.ApptentiveStyleIdentifier",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveStyleIdentifier",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveStyleIdentifier",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO17messageBackgroundyA2CmF",
- "mangledName": "$s13ApptentiveKit0A15StyleIdentifierO17messageBackgroundyA2CmF",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "Var",
- "name": "replyBackground",
- "printedName": "replyBackground",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.ApptentiveStyleIdentifier.Type) -> ApptentiveKit.ApptentiveStyleIdentifier",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveStyleIdentifier",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveStyleIdentifier",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO15replyBackgroundyA2CmF",
- "mangledName": "$s13ApptentiveKit0A15StyleIdentifierO15replyBackgroundyA2CmF",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "Var",
- "name": "contextBackground",
- "printedName": "contextBackground",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.ApptentiveStyleIdentifier.Type) -> ApptentiveKit.ApptentiveStyleIdentifier",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveStyleIdentifier",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveStyleIdentifier",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO17contextBackgroundyA2CmF",
- "mangledName": "$s13ApptentiveKit0A15StyleIdentifierO17contextBackgroundyA2CmF",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "Function",
- "name": "==",
- "printedName": "==(_:_:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- },
- {
- "kind": "TypeNominal",
- "name": "ApptentiveStyleIdentifier",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO"
- },
- {
- "kind": "TypeNominal",
- "name": "ApptentiveStyleIdentifier",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO2eeoiySbAC_ACtFZ",
- "mangledName": "$s13ApptentiveKit0A15StyleIdentifierO2eeoiySbAC_ACtFZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Var",
- "name": "hashValue",
- "printedName": "hashValue",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO9hashValueSivp",
- "mangledName": "$s13ApptentiveKit0A15StyleIdentifierO9hashValueSivp",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO9hashValueSivg",
- "mangledName": "$s13ApptentiveKit0A15StyleIdentifierO9hashValueSivg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Function",
- "name": "hash",
- "printedName": "hash(into:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Hasher",
- "printedName": "Swift.Hasher",
- "paramValueOwnership": "InOut",
- "usr": "s:s6HasherV"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO4hash4intoys6HasherVz_tF",
- "mangledName": "$s13ApptentiveKit0A15StyleIdentifierO4hash4intoys6HasherVz_tF",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "funcSelfKind": "NonMutating"
- }
- ],
- "declKind": "Enum",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO",
- "mangledName": "$s13ApptentiveKit0A15StyleIdentifierO",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "declAttributes": [
- "AccessControl",
- "Available"
- ],
- "conformances": [
- {
- "kind": "Conformance",
- "name": "Equatable",
- "printedName": "Equatable",
- "usr": "s:SQ",
- "mangledName": "$sSQ"
- },
- {
- "kind": "Conformance",
- "name": "Hashable",
- "printedName": "Hashable",
- "usr": "s:SH",
- "mangledName": "$sSH"
- }
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "ApptentiveStyleSheet",
- "printedName": "ApptentiveStyleSheet",
- "children": [
- {
- "kind": "Function",
- "name": "font",
- "printedName": "font(for:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- },
- {
- "kind": "TypeNominal",
- "name": "ApptentiveStyleIdentifier",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit0A10StyleSheetC4font3forSo6UIFontCAA0aC10IdentifierO_tF",
- "mangledName": "$s13ApptentiveKit0A10StyleSheetC4font3forSo6UIFontCAA0aC10IdentifierO_tF",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "declAttributes": [
- "AccessControl",
- "Available"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "color",
- "printedName": "color(for:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- },
- {
- "kind": "TypeNominal",
- "name": "ApptentiveStyleIdentifier",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit0A10StyleSheetC5color3forSo7UIColorCAA0aC10IdentifierO_tF",
- "mangledName": "$s13ApptentiveKit0A10StyleSheetC5color3forSo7UIColorCAA0aC10IdentifierO_tF",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "declAttributes": [
- "AccessControl",
- "Available"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(contentsOf:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "ApptentiveKit.ApptentiveStyleSheet?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveStyleSheet",
- "printedName": "ApptentiveKit.ApptentiveStyleSheet",
- "usr": "s:13ApptentiveKit0A10StyleSheetC"
- }
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "URL",
- "printedName": "Foundation.URL",
- "usr": "s:10Foundation3URLV"
- }
- ],
- "declKind": "Constructor",
- "usr": "s:13ApptentiveKit0A10StyleSheetC10contentsOfACSg10Foundation3URLV_tcfc",
- "mangledName": "$s13ApptentiveKit0A10StyleSheetC10contentsOfACSg10Foundation3URLV_tcfc",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "declAttributes": [
- "Convenience",
- "AccessControl",
- "Available"
- ],
- "init_kind": "Convenience"
- },
- {
- "kind": "Var",
- "name": "fontFamily",
- "printedName": "fontFamily",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit0A10StyleSheetC10fontFamilySSvp",
- "mangledName": "$s13ApptentiveKit0A10StyleSheetC10fontFamilySSvp",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "declAttributes": [
- "HasStorage",
- "AccessControl",
- "Available"
- ],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A10StyleSheetC10fontFamilySSvg",
- "mangledName": "$s13ApptentiveKit0A10StyleSheetC10fontFamilySSvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "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": "s:13ApptentiveKit0A10StyleSheetC10fontFamilySSvs",
- "mangledName": "$s13ApptentiveKit0A10StyleSheetC10fontFamilySSvs",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A10StyleSheetC10fontFamilySSvM",
- "mangledName": "$s13ApptentiveKit0A10StyleSheetC10fontFamilySSvM",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "implicit": true,
- "declAttributes": [
- "Available"
- ],
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "lightFaceAttribute",
- "printedName": "lightFaceAttribute",
- "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": "s:13ApptentiveKit0A10StyleSheetC18lightFaceAttributeSSSgvp",
- "mangledName": "$s13ApptentiveKit0A10StyleSheetC18lightFaceAttributeSSSgvp",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl",
- "Available"
- ],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A10StyleSheetC18lightFaceAttributeSSSgvg",
- "mangledName": "$s13ApptentiveKit0A10StyleSheetC18lightFaceAttributeSSSgvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "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": "s:13ApptentiveKit0A10StyleSheetC18lightFaceAttributeSSSgvs",
- "mangledName": "$s13ApptentiveKit0A10StyleSheetC18lightFaceAttributeSSSgvs",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A10StyleSheetC18lightFaceAttributeSSSgvM",
- "mangledName": "$s13ApptentiveKit0A10StyleSheetC18lightFaceAttributeSSSgvM",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "implicit": true,
- "declAttributes": [
- "Available"
- ],
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "regularFaceAttribute",
- "printedName": "regularFaceAttribute",
- "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": "s:13ApptentiveKit0A10StyleSheetC20regularFaceAttributeSSSgvp",
- "mangledName": "$s13ApptentiveKit0A10StyleSheetC20regularFaceAttributeSSSgvp",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl",
- "Available"
- ],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A10StyleSheetC20regularFaceAttributeSSSgvg",
- "mangledName": "$s13ApptentiveKit0A10StyleSheetC20regularFaceAttributeSSSgvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "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": "s:13ApptentiveKit0A10StyleSheetC20regularFaceAttributeSSSgvs",
- "mangledName": "$s13ApptentiveKit0A10StyleSheetC20regularFaceAttributeSSSgvs",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A10StyleSheetC20regularFaceAttributeSSSgvM",
- "mangledName": "$s13ApptentiveKit0A10StyleSheetC20regularFaceAttributeSSSgvM",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "implicit": true,
- "declAttributes": [
- "Available"
- ],
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "mediumFaceAttribute",
- "printedName": "mediumFaceAttribute",
- "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": "s:13ApptentiveKit0A10StyleSheetC19mediumFaceAttributeSSSgvp",
- "mangledName": "$s13ApptentiveKit0A10StyleSheetC19mediumFaceAttributeSSSgvp",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl",
- "Available"
- ],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A10StyleSheetC19mediumFaceAttributeSSSgvg",
- "mangledName": "$s13ApptentiveKit0A10StyleSheetC19mediumFaceAttributeSSSgvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "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": "s:13ApptentiveKit0A10StyleSheetC19mediumFaceAttributeSSSgvs",
- "mangledName": "$s13ApptentiveKit0A10StyleSheetC19mediumFaceAttributeSSSgvs",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A10StyleSheetC19mediumFaceAttributeSSSgvM",
- "mangledName": "$s13ApptentiveKit0A10StyleSheetC19mediumFaceAttributeSSSgvM",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "implicit": true,
- "declAttributes": [
- "Available"
- ],
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "boldFaceAttribute",
- "printedName": "boldFaceAttribute",
- "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": "s:13ApptentiveKit0A10StyleSheetC17boldFaceAttributeSSSgvp",
- "mangledName": "$s13ApptentiveKit0A10StyleSheetC17boldFaceAttributeSSSgvp",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl",
- "Available"
- ],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A10StyleSheetC17boldFaceAttributeSSSgvg",
- "mangledName": "$s13ApptentiveKit0A10StyleSheetC17boldFaceAttributeSSSgvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "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": "s:13ApptentiveKit0A10StyleSheetC17boldFaceAttributeSSSgvs",
- "mangledName": "$s13ApptentiveKit0A10StyleSheetC17boldFaceAttributeSSSgvs",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A10StyleSheetC17boldFaceAttributeSSSgvM",
- "mangledName": "$s13ApptentiveKit0A10StyleSheetC17boldFaceAttributeSSSgvM",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "implicit": true,
- "declAttributes": [
- "Available"
- ],
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "primaryColor",
- "printedName": "primaryColor",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit0A10StyleSheetC12primaryColorSo7UIColorCvp",
- "mangledName": "$s13ApptentiveKit0A10StyleSheetC12primaryColorSo7UIColorCvp",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "declAttributes": [
- "HasStorage",
- "AccessControl",
- "Available"
- ],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A10StyleSheetC12primaryColorSo7UIColorCvg",
- "mangledName": "$s13ApptentiveKit0A10StyleSheetC12primaryColorSo7UIColorCvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A10StyleSheetC12primaryColorSo7UIColorCvs",
- "mangledName": "$s13ApptentiveKit0A10StyleSheetC12primaryColorSo7UIColorCvs",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A10StyleSheetC12primaryColorSo7UIColorCvM",
- "mangledName": "$s13ApptentiveKit0A10StyleSheetC12primaryColorSo7UIColorCvM",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "implicit": true,
- "declAttributes": [
- "Available"
- ],
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "secondaryColor",
- "printedName": "secondaryColor",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit0A10StyleSheetC14secondaryColorSo7UIColorCvp",
- "mangledName": "$s13ApptentiveKit0A10StyleSheetC14secondaryColorSo7UIColorCvp",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "declAttributes": [
- "HasStorage",
- "AccessControl",
- "Available"
- ],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A10StyleSheetC14secondaryColorSo7UIColorCvg",
- "mangledName": "$s13ApptentiveKit0A10StyleSheetC14secondaryColorSo7UIColorCvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A10StyleSheetC14secondaryColorSo7UIColorCvs",
- "mangledName": "$s13ApptentiveKit0A10StyleSheetC14secondaryColorSo7UIColorCvs",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A10StyleSheetC14secondaryColorSo7UIColorCvM",
- "mangledName": "$s13ApptentiveKit0A10StyleSheetC14secondaryColorSo7UIColorCvM",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "implicit": true,
- "declAttributes": [
- "Available"
- ],
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "failureColor",
- "printedName": "failureColor",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit0A10StyleSheetC12failureColorSo7UIColorCvp",
- "mangledName": "$s13ApptentiveKit0A10StyleSheetC12failureColorSo7UIColorCvp",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "declAttributes": [
- "HasStorage",
- "AccessControl",
- "Available"
- ],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A10StyleSheetC12failureColorSo7UIColorCvg",
- "mangledName": "$s13ApptentiveKit0A10StyleSheetC12failureColorSo7UIColorCvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A10StyleSheetC12failureColorSo7UIColorCvs",
- "mangledName": "$s13ApptentiveKit0A10StyleSheetC12failureColorSo7UIColorCvs",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A10StyleSheetC12failureColorSo7UIColorCvM",
- "mangledName": "$s13ApptentiveKit0A10StyleSheetC12failureColorSo7UIColorCvM",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "implicit": true,
- "declAttributes": [
- "Available"
- ],
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "backgroundColor",
- "printedName": "backgroundColor",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit0A10StyleSheetC15backgroundColorSo7UIColorCvp",
- "mangledName": "$s13ApptentiveKit0A10StyleSheetC15backgroundColorSo7UIColorCvp",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "declAttributes": [
- "HasStorage",
- "AccessControl",
- "Available"
- ],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A10StyleSheetC15backgroundColorSo7UIColorCvg",
- "mangledName": "$s13ApptentiveKit0A10StyleSheetC15backgroundColorSo7UIColorCvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A10StyleSheetC15backgroundColorSo7UIColorCvs",
- "mangledName": "$s13ApptentiveKit0A10StyleSheetC15backgroundColorSo7UIColorCvs",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A10StyleSheetC15backgroundColorSo7UIColorCvM",
- "mangledName": "$s13ApptentiveKit0A10StyleSheetC15backgroundColorSo7UIColorCvM",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "implicit": true,
- "declAttributes": [
- "Available"
- ],
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "separatorColor",
- "printedName": "separatorColor",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit0A10StyleSheetC14separatorColorSo7UIColorCvp",
- "mangledName": "$s13ApptentiveKit0A10StyleSheetC14separatorColorSo7UIColorCvp",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "declAttributes": [
- "HasStorage",
- "AccessControl",
- "Available"
- ],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A10StyleSheetC14separatorColorSo7UIColorCvg",
- "mangledName": "$s13ApptentiveKit0A10StyleSheetC14separatorColorSo7UIColorCvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A10StyleSheetC14separatorColorSo7UIColorCvs",
- "mangledName": "$s13ApptentiveKit0A10StyleSheetC14separatorColorSo7UIColorCvs",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A10StyleSheetC14separatorColorSo7UIColorCvM",
- "mangledName": "$s13ApptentiveKit0A10StyleSheetC14separatorColorSo7UIColorCvM",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "implicit": true,
- "declAttributes": [
- "Available"
- ],
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "collectionBackgroundColor",
- "printedName": "collectionBackgroundColor",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit0A10StyleSheetC25collectionBackgroundColorSo7UIColorCvp",
- "mangledName": "$s13ApptentiveKit0A10StyleSheetC25collectionBackgroundColorSo7UIColorCvp",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "declAttributes": [
- "HasStorage",
- "AccessControl",
- "Available"
- ],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A10StyleSheetC25collectionBackgroundColorSo7UIColorCvg",
- "mangledName": "$s13ApptentiveKit0A10StyleSheetC25collectionBackgroundColorSo7UIColorCvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A10StyleSheetC25collectionBackgroundColorSo7UIColorCvs",
- "mangledName": "$s13ApptentiveKit0A10StyleSheetC25collectionBackgroundColorSo7UIColorCvs",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A10StyleSheetC25collectionBackgroundColorSo7UIColorCvM",
- "mangledName": "$s13ApptentiveKit0A10StyleSheetC25collectionBackgroundColorSo7UIColorCvM",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "implicit": true,
- "declAttributes": [
- "Available"
- ],
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "placeholderColor",
- "printedName": "placeholderColor",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit0A10StyleSheetC16placeholderColorSo7UIColorCvp",
- "mangledName": "$s13ApptentiveKit0A10StyleSheetC16placeholderColorSo7UIColorCvp",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "declAttributes": [
- "HasStorage",
- "AccessControl",
- "Available"
- ],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A10StyleSheetC16placeholderColorSo7UIColorCvg",
- "mangledName": "$s13ApptentiveKit0A10StyleSheetC16placeholderColorSo7UIColorCvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A10StyleSheetC16placeholderColorSo7UIColorCvs",
- "mangledName": "$s13ApptentiveKit0A10StyleSheetC16placeholderColorSo7UIColorCvs",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A10StyleSheetC16placeholderColorSo7UIColorCvM",
- "mangledName": "$s13ApptentiveKit0A10StyleSheetC16placeholderColorSo7UIColorCvM",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "implicit": true,
- "declAttributes": [
- "Available"
- ],
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "sizeAdjustment",
- "printedName": "sizeAdjustment",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "CGFloat",
- "printedName": "CoreGraphics.CGFloat",
- "usr": "s:14CoreFoundation7CGFloatV"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit0A10StyleSheetC14sizeAdjustment14CoreFoundation7CGFloatVvp",
- "mangledName": "$s13ApptentiveKit0A10StyleSheetC14sizeAdjustment12CoreGraphics7CGFloatVvp",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "declAttributes": [
- "HasStorage",
- "AccessControl",
- "Available"
- ],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "CGFloat",
- "printedName": "CoreGraphics.CGFloat",
- "usr": "s:14CoreFoundation7CGFloatV"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A10StyleSheetC14sizeAdjustment14CoreFoundation7CGFloatVvg",
- "mangledName": "$s13ApptentiveKit0A10StyleSheetC14sizeAdjustment12CoreGraphics7CGFloatVvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "CGFloat",
- "printedName": "CoreGraphics.CGFloat",
- "usr": "s:14CoreFoundation7CGFloatV"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A10StyleSheetC14sizeAdjustment14CoreFoundation7CGFloatVvs",
- "mangledName": "$s13ApptentiveKit0A10StyleSheetC14sizeAdjustment12CoreGraphics7CGFloatVvs",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A10StyleSheetC14sizeAdjustment14CoreFoundation7CGFloatVvM",
- "mangledName": "$s13ApptentiveKit0A10StyleSheetC14sizeAdjustment12CoreGraphics7CGFloatVvM",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "implicit": true,
- "declAttributes": [
- "Available"
- ],
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Function",
- "name": "setFontDescriptor",
- "printedName": "setFontDescriptor(_:forStyle:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIFontDescriptor",
- "printedName": "UIKit.UIFontDescriptor",
- "usr": "c:objc(cs)UIFontDescriptor"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit0A10StyleSheetC17setFontDescriptor_03forC0ySo06UIFontG0C_SStF",
- "mangledName": "$s13ApptentiveKit0A10StyleSheetC17setFontDescriptor_03forC0ySo06UIFontG0C_SStF",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "declAttributes": [
- "AccessControl",
- "Available"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "setColor",
- "printedName": "setColor(_:forStyle:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit0A10StyleSheetC8setColor_03forC0ySo7UIColorC_SStF",
- "mangledName": "$s13ApptentiveKit0A10StyleSheetC8setColor_03forC0ySo7UIColorC_SStF",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "declAttributes": [
- "AccessControl",
- "Available"
- ],
- "funcSelfKind": "NonMutating"
- }
- ],
- "declKind": "Class",
- "usr": "s:13ApptentiveKit0A10StyleSheetC",
- "mangledName": "$s13ApptentiveKit0A10StyleSheetC",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "declAttributes": [
- "AccessControl",
- "Available"
- ],
- "hasMissingDesignatedInitializers": true,
- "conformances": [
- {
- "kind": "Conformance",
- "name": "ApptentiveStyle",
- "printedName": "ApptentiveStyle",
- "usr": "s:13ApptentiveKit0A5StyleP",
- "mangledName": "$s13ApptentiveKit0A5StyleP"
- }
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "UIKit",
- "printedName": "UIKit",
- "declKind": "Import",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "Import",
- "name": "CoreTelephony",
- "printedName": "CoreTelephony",
- "declKind": "Import",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "Import",
- "name": "StoreKit",
- "printedName": "StoreKit",
- "declKind": "Import",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "UIKit",
- "printedName": "UIKit",
- "declKind": "Import",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "UIKit",
- "printedName": "UIKit",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "UIKit",
- "printedName": "UIKit",
- "declKind": "Import",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "Import",
- "name": "UIKit",
- "printedName": "UIKit",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "UIKit",
- "printedName": "UIKit",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "DialogButton",
- "printedName": "DialogButton",
- "children": [
- {
- "kind": "Var",
- "name": "titleFont",
- "printedName": "titleFont",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Var",
- "usr": "c:@M@ApptentiveKit@objc(cs)DialogButton(py)titleFont",
- "mangledName": "$s13ApptentiveKit12DialogButtonC9titleFontSo6UIFontCvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "HasInitialValue",
- "Custom",
- "HasStorage",
- "Dynamic",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@M@ApptentiveKit@objc(cs)DialogButton(im)titleFont",
- "mangledName": "$s13ApptentiveKit12DialogButtonC9titleFontSo6UIFontCvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Dynamic",
- "ObjC"
- ],
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@M@ApptentiveKit@objc(cs)DialogButton(im)setTitleFont:",
- "mangledName": "$s13ApptentiveKit12DialogButtonC9titleFontSo6UIFontCvs",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Dynamic",
- "ObjC"
- ],
- "accessorKind": "set"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "cornerRadius",
- "printedName": "cornerRadius",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "CGFloat",
- "printedName": "CoreGraphics.CGFloat",
- "usr": "s:14CoreFoundation7CGFloatV"
- }
- ],
- "declKind": "Var",
- "usr": "c:@M@ApptentiveKit@objc(cs)DialogButton(py)cornerRadius",
- "mangledName": "$s13ApptentiveKit12DialogButtonC12cornerRadius12CoreGraphics7CGFloatVvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "HasInitialValue",
- "Custom",
- "HasStorage",
- "Dynamic",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "CGFloat",
- "printedName": "CoreGraphics.CGFloat",
- "usr": "s:14CoreFoundation7CGFloatV"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@M@ApptentiveKit@objc(cs)DialogButton(im)cornerRadius",
- "mangledName": "$s13ApptentiveKit12DialogButtonC12cornerRadius12CoreGraphics7CGFloatVvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Dynamic",
- "ObjC"
- ],
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "CGFloat",
- "printedName": "CoreGraphics.CGFloat",
- "usr": "s:14CoreFoundation7CGFloatV"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@M@ApptentiveKit@objc(cs)DialogButton(im)setCornerRadius:",
- "mangledName": "$s13ApptentiveKit12DialogButtonC12cornerRadius12CoreGraphics7CGFloatVvs",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Dynamic",
- "ObjC"
- ],
- "accessorKind": "set"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "borderWidth",
- "printedName": "borderWidth",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "CGFloat",
- "printedName": "CoreGraphics.CGFloat",
- "usr": "s:14CoreFoundation7CGFloatV"
- }
- ],
- "declKind": "Var",
- "usr": "c:@M@ApptentiveKit@objc(cs)DialogButton(py)borderWidth",
- "mangledName": "$s13ApptentiveKit12DialogButtonC11borderWidth12CoreGraphics7CGFloatVvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "HasInitialValue",
- "Custom",
- "HasStorage",
- "Dynamic",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "CGFloat",
- "printedName": "CoreGraphics.CGFloat",
- "usr": "s:14CoreFoundation7CGFloatV"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@M@ApptentiveKit@objc(cs)DialogButton(im)borderWidth",
- "mangledName": "$s13ApptentiveKit12DialogButtonC11borderWidth12CoreGraphics7CGFloatVvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Dynamic",
- "ObjC"
- ],
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "CGFloat",
- "printedName": "CoreGraphics.CGFloat",
- "usr": "s:14CoreFoundation7CGFloatV"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@M@ApptentiveKit@objc(cs)DialogButton(im)setBorderWidth:",
- "mangledName": "$s13ApptentiveKit12DialogButtonC11borderWidth12CoreGraphics7CGFloatVvs",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Dynamic",
- "ObjC"
- ],
- "accessorKind": "set"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "borderColor",
- "printedName": "borderColor",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Var",
- "usr": "c:@M@ApptentiveKit@objc(cs)DialogButton(py)borderColor",
- "mangledName": "$s13ApptentiveKit12DialogButtonC11borderColorSo7UIColorCvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "HasInitialValue",
- "Custom",
- "HasStorage",
- "Dynamic",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@M@ApptentiveKit@objc(cs)DialogButton(im)borderColor",
- "mangledName": "$s13ApptentiveKit12DialogButtonC11borderColorSo7UIColorCvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Dynamic",
- "ObjC"
- ],
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@M@ApptentiveKit@objc(cs)DialogButton(im)setBorderColor:",
- "mangledName": "$s13ApptentiveKit12DialogButtonC11borderColorSo7UIColorCvs",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Dynamic",
- "ObjC"
- ],
- "accessorKind": "set"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "intrinsicContentSize",
- "printedName": "intrinsicContentSize",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "CGSize",
- "printedName": "CoreFoundation.CGSize",
- "usr": "c:@S@CGSize"
- }
- ],
- "declKind": "Var",
- "usr": "c:@M@ApptentiveKit@objc(cs)DialogButton(py)intrinsicContentSize",
- "mangledName": "$s13ApptentiveKit12DialogButtonC20intrinsicContentSizeSo6CGSizeVvp",
- "moduleName": "ApptentiveKit",
- "overriding": true,
- "objc_name": "intrinsicContentSize",
- "declAttributes": [
- "Dynamic",
- "ObjC",
- "Custom",
- "Override",
- "AccessControl",
- "RawDocComment"
- ],
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "CGSize",
- "printedName": "CoreFoundation.CGSize",
- "usr": "c:@S@CGSize"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@M@ApptentiveKit@objc(cs)DialogButton(im)intrinsicContentSize",
- "mangledName": "$s13ApptentiveKit12DialogButtonC20intrinsicContentSizeSo6CGSizeVvg",
- "moduleName": "ApptentiveKit",
- "overriding": true,
- "objc_name": "intrinsicContentSize",
- "declAttributes": [
- "Dynamic",
- "ObjC"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Function",
- "name": "layoutSubviews",
- "printedName": "layoutSubviews()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Func",
- "usr": "c:@M@ApptentiveKit@objc(cs)DialogButton(im)layoutSubviews",
- "mangledName": "$s13ApptentiveKit12DialogButtonC14layoutSubviewsyyF",
- "moduleName": "ApptentiveKit",
- "overriding": true,
- "objc_name": "layoutSubviews",
- "declAttributes": [
- "Dynamic",
- "ObjC",
- "Custom",
- "Override",
- "AccessControl",
- "RawDocComment"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "tintColorDidChange",
- "printedName": "tintColorDidChange()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Func",
- "usr": "c:@M@ApptentiveKit@objc(cs)DialogButton(im)tintColorDidChange",
- "mangledName": "$s13ApptentiveKit12DialogButtonC18tintColorDidChangeyyF",
- "moduleName": "ApptentiveKit",
- "overriding": true,
- "objc_name": "tintColorDidChange",
- "declAttributes": [
- "Dynamic",
- "ObjC",
- "Custom",
- "Override",
- "AccessControl",
- "RawDocComment"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "didMoveToWindow",
- "printedName": "didMoveToWindow()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Func",
- "usr": "c:@M@ApptentiveKit@objc(cs)DialogButton(im)didMoveToWindow",
- "mangledName": "$s13ApptentiveKit12DialogButtonC15didMoveToWindowyyF",
- "moduleName": "ApptentiveKit",
- "overriding": true,
- "objc_name": "didMoveToWindow",
- "declAttributes": [
- "Dynamic",
- "ObjC",
- "Custom",
- "Override",
- "AccessControl",
- "RawDocComment"
- ],
- "funcSelfKind": "NonMutating"
- }
- ],
- "declKind": "Class",
- "usr": "c:@M@ApptentiveKit@objc(cs)DialogButton",
- "mangledName": "$s13ApptentiveKit12DialogButtonC",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Custom",
- "AccessControl",
- "RawDocComment",
- "ObjC"
- ],
- "superclassUsr": "c:objc(cs)UIButton",
- "hasMissingDesignatedInitializers": true,
- "inheritsConvenienceInitializers": true,
- "superclassNames": [
- "UIKit.UIButton",
- "UIKit.UIControl",
- "UIKit.UIView",
- "UIKit.UIResponder",
- "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": "Conformance",
- "name": "__DefaultCustomPlaygroundQuickLookable",
- "printedName": "__DefaultCustomPlaygroundQuickLookable",
- "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP",
- "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP"
- },
- {
- "kind": "Conformance",
- "name": "Sendable",
- "printedName": "Sendable",
- "usr": "s:s8SendableP",
- "mangledName": "$ss8SendableP"
- }
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "DismissButton",
- "printedName": "DismissButton",
- "declKind": "Class",
- "usr": "c:@M@ApptentiveKit@objc(cs)DismissButton",
- "mangledName": "$s13ApptentiveKit13DismissButtonC",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Custom",
- "AccessControl",
- "RawDocComment",
- "ObjC"
- ],
- "superclassUsr": "c:@M@ApptentiveKit@objc(cs)DialogButton",
- "hasMissingDesignatedInitializers": true,
- "inheritsConvenienceInitializers": true,
- "superclassNames": [
- "ApptentiveKit.DialogButton",
- "UIKit.UIButton",
- "UIKit.UIControl",
- "UIKit.UIView",
- "UIKit.UIResponder",
- "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": "Conformance",
- "name": "__DefaultCustomPlaygroundQuickLookable",
- "printedName": "__DefaultCustomPlaygroundQuickLookable",
- "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP",
- "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP"
- },
- {
- "kind": "Conformance",
- "name": "Sendable",
- "printedName": "Sendable",
- "usr": "s:s8SendableP",
- "mangledName": "$ss8SendableP"
- }
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "InteractionButton",
- "printedName": "InteractionButton",
- "declKind": "Class",
- "usr": "c:@M@ApptentiveKit@objc(cs)InteractionButton",
- "mangledName": "$s13ApptentiveKit17InteractionButtonC",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Custom",
- "AccessControl",
- "RawDocComment",
- "ObjC"
- ],
- "superclassUsr": "c:@M@ApptentiveKit@objc(cs)DialogButton",
- "hasMissingDesignatedInitializers": true,
- "inheritsConvenienceInitializers": true,
- "superclassNames": [
- "ApptentiveKit.DialogButton",
- "UIKit.UIButton",
- "UIKit.UIControl",
- "UIKit.UIView",
- "UIKit.UIResponder",
- "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": "Conformance",
- "name": "__DefaultCustomPlaygroundQuickLookable",
- "printedName": "__DefaultCustomPlaygroundQuickLookable",
- "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP",
- "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP"
- },
- {
- "kind": "Conformance",
- "name": "Sendable",
- "printedName": "Sendable",
- "usr": "s:s8SendableP",
- "mangledName": "$ss8SendableP"
- }
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "YesButton",
- "printedName": "YesButton",
- "declKind": "Class",
- "usr": "c:@M@ApptentiveKit@objc(cs)YesButton",
- "mangledName": "$s13ApptentiveKit9YesButtonC",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Custom",
- "AccessControl",
- "RawDocComment",
- "ObjC"
- ],
- "superclassUsr": "c:@M@ApptentiveKit@objc(cs)DialogButton",
- "hasMissingDesignatedInitializers": true,
- "inheritsConvenienceInitializers": true,
- "superclassNames": [
- "ApptentiveKit.DialogButton",
- "UIKit.UIButton",
- "UIKit.UIControl",
- "UIKit.UIView",
- "UIKit.UIResponder",
- "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": "Conformance",
- "name": "__DefaultCustomPlaygroundQuickLookable",
- "printedName": "__DefaultCustomPlaygroundQuickLookable",
- "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP",
- "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP"
- },
- {
- "kind": "Conformance",
- "name": "Sendable",
- "printedName": "Sendable",
- "usr": "s:s8SendableP",
- "mangledName": "$ss8SendableP"
- }
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "NoButton",
- "printedName": "NoButton",
- "declKind": "Class",
- "usr": "c:@M@ApptentiveKit@objc(cs)NoButton",
- "mangledName": "$s13ApptentiveKit8NoButtonC",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Custom",
- "AccessControl",
- "RawDocComment",
- "ObjC"
- ],
- "superclassUsr": "c:@M@ApptentiveKit@objc(cs)DialogButton",
- "hasMissingDesignatedInitializers": true,
- "inheritsConvenienceInitializers": true,
- "superclassNames": [
- "ApptentiveKit.DialogButton",
- "UIKit.UIButton",
- "UIKit.UIControl",
- "UIKit.UIView",
- "UIKit.UIResponder",
- "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": "Conformance",
- "name": "__DefaultCustomPlaygroundQuickLookable",
- "printedName": "__DefaultCustomPlaygroundQuickLookable",
- "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP",
- "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP"
- },
- {
- "kind": "Conformance",
- "name": "Sendable",
- "printedName": "Sendable",
- "usr": "s:s8SendableP",
- "mangledName": "$ss8SendableP"
- }
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "UIKit",
- "printedName": "UIKit",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "MobileCoreServices",
- "printedName": "MobileCoreServices",
- "declKind": "Import",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "Import",
- "name": "QuickLookThumbnailing",
- "printedName": "QuickLookThumbnailing",
- "declKind": "Import",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "Import",
- "name": "UIKit",
- "printedName": "UIKit",
- "declKind": "Import",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "Sysctl",
- "printedName": "Sysctl",
- "children": [
- {
- "kind": "TypeDecl",
- "name": "Error",
- "printedName": "Error",
- "children": [
- {
- "kind": "Var",
- "name": "unknown",
- "printedName": "unknown",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.Sysctl.Error.Type) -> ApptentiveKit.Sysctl.Error",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Error",
- "printedName": "ApptentiveKit.Sysctl.Error",
- "usr": "s:13ApptentiveKit6SysctlV5ErrorO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.Sysctl.Error.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Error",
- "printedName": "ApptentiveKit.Sysctl.Error",
- "usr": "s:13ApptentiveKit6SysctlV5ErrorO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:13ApptentiveKit6SysctlV5ErrorO7unknownyA2EmF",
- "mangledName": "$s13ApptentiveKit6SysctlV5ErrorO7unknownyA2EmF",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "Var",
- "name": "malformedUTF8",
- "printedName": "malformedUTF8",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.Sysctl.Error.Type) -> ApptentiveKit.Sysctl.Error",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Error",
- "printedName": "ApptentiveKit.Sysctl.Error",
- "usr": "s:13ApptentiveKit6SysctlV5ErrorO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.Sysctl.Error.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Error",
- "printedName": "ApptentiveKit.Sysctl.Error",
- "usr": "s:13ApptentiveKit6SysctlV5ErrorO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:13ApptentiveKit6SysctlV5ErrorO13malformedUTF8yA2EmF",
- "mangledName": "$s13ApptentiveKit6SysctlV5ErrorO13malformedUTF8yA2EmF",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "Var",
- "name": "invalidSize",
- "printedName": "invalidSize",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.Sysctl.Error.Type) -> ApptentiveKit.Sysctl.Error",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Error",
- "printedName": "ApptentiveKit.Sysctl.Error",
- "usr": "s:13ApptentiveKit6SysctlV5ErrorO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.Sysctl.Error.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Error",
- "printedName": "ApptentiveKit.Sysctl.Error",
- "usr": "s:13ApptentiveKit6SysctlV5ErrorO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:13ApptentiveKit6SysctlV5ErrorO11invalidSizeyA2EmF",
- "mangledName": "$s13ApptentiveKit6SysctlV5ErrorO11invalidSizeyA2EmF",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "Var",
- "name": "posixError",
- "printedName": "posixError",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.Sysctl.Error.Type) -> (Darwin.POSIXErrorCode) -> ApptentiveKit.Sysctl.Error",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(Darwin.POSIXErrorCode) -> ApptentiveKit.Sysctl.Error",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Error",
- "printedName": "ApptentiveKit.Sysctl.Error",
- "usr": "s:13ApptentiveKit6SysctlV5ErrorO"
- },
- {
- "kind": "TypeNominal",
- "name": "POSIXErrorCode",
- "printedName": "Darwin.POSIXErrorCode",
- "usr": "c:@M@Darwin@E@POSIXErrorCode"
- }
- ]
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.Sysctl.Error.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Error",
- "printedName": "ApptentiveKit.Sysctl.Error",
- "usr": "s:13ApptentiveKit6SysctlV5ErrorO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:13ApptentiveKit6SysctlV5ErrorO05posixD0yAE6Darwin14POSIXErrorCodeOcAEmF",
- "mangledName": "$s13ApptentiveKit6SysctlV5ErrorO05posixD0yAE6Darwin14POSIXErrorCodeOcAEmF",
- "moduleName": "ApptentiveKit"
- }
- ],
- "declKind": "Enum",
- "usr": "s:13ApptentiveKit6SysctlV5ErrorO",
- "mangledName": "$s13ApptentiveKit6SysctlV5ErrorO",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "conformances": [
- {
- "kind": "Conformance",
- "name": "Error",
- "printedName": "Error",
- "usr": "s:s5ErrorP",
- "mangledName": "$ss5ErrorP"
- },
- {
- "kind": "Conformance",
- "name": "Sendable",
- "printedName": "Sendable",
- "usr": "s:s8SendableP",
- "mangledName": "$ss8SendableP"
- }
- ]
- },
- {
- "kind": "Function",
- "name": "data",
- "printedName": "data(for:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Array",
- "printedName": "[Swift.Int8]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int8",
- "printedName": "Swift.Int8",
- "usr": "s:s4Int8V"
- }
- ],
- "usr": "s:Sa"
- },
- {
- "kind": "TypeNominal",
- "name": "Array",
- "printedName": "[Swift.Int32]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int32",
- "printedName": "Swift.Int32",
- "usr": "s:s5Int32V"
- }
- ],
- "usr": "s:Sa"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit6SysctlV4data3forSays4Int8VGSays5Int32VG_tKFZ",
- "mangledName": "$s13ApptentiveKit6SysctlV4data3forSays4Int8VGSays5Int32VG_tKFZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "throwing": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "keys",
- "printedName": "keys(for:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Array",
- "printedName": "[Swift.Int32]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int32",
- "printedName": "Swift.Int32",
- "usr": "s:s5Int32V"
- }
- ],
- "usr": "s:Sa"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit6SysctlV4keys3forSays5Int32VGSS_tKFZ",
- "mangledName": "$s13ApptentiveKit6SysctlV4keys3forSays5Int32VGSS_tKFZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "throwing": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "value",
- "printedName": "value(ofType:forKeys:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "GenericTypeParam",
- "printedName": "τ_0_0"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "τ_0_0.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "GenericTypeParam",
- "printedName": "τ_0_0"
- }
- ]
- },
- {
- "kind": "TypeNominal",
- "name": "Array",
- "printedName": "[Swift.Int32]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int32",
- "printedName": "Swift.Int32",
- "usr": "s:s5Int32V"
- }
- ],
- "usr": "s:Sa"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit6SysctlV5value6ofType7forKeysxxm_Says5Int32VGtKlFZ",
- "mangledName": "$s13ApptentiveKit6SysctlV5value6ofType7forKeysxxm_Says5Int32VGtKlFZ",
- "moduleName": "ApptentiveKit",
- "genericSig": "<τ_0_0>",
- "sugared_genericSig": "",
- "static": true,
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "throwing": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "value",
- "printedName": "value(ofType:forKeys:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "GenericTypeParam",
- "printedName": "τ_0_0"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "τ_0_0.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "GenericTypeParam",
- "printedName": "τ_0_0"
- }
- ]
- },
- {
- "kind": "TypeNominal",
- "name": "Array",
- "printedName": "[Swift.Int32]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int32",
- "printedName": "Swift.Int32",
- "usr": "s:s5Int32V"
- }
- ],
- "usr": "s:Sa"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit6SysctlV5value6ofType7forKeysxxm_s5Int32VdtKlFZ",
- "mangledName": "$s13ApptentiveKit6SysctlV5value6ofType7forKeysxxm_s5Int32VdtKlFZ",
- "moduleName": "ApptentiveKit",
- "genericSig": "<τ_0_0>",
- "sugared_genericSig": "",
- "static": true,
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "throwing": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "value",
- "printedName": "value(ofType:forName:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "GenericTypeParam",
- "printedName": "τ_0_0"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "τ_0_0.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "GenericTypeParam",
- "printedName": "τ_0_0"
- }
- ]
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit6SysctlV5value6ofType7forNamexxm_SStKlFZ",
- "mangledName": "$s13ApptentiveKit6SysctlV5value6ofType7forNamexxm_SStKlFZ",
- "moduleName": "ApptentiveKit",
- "genericSig": "<τ_0_0>",
- "sugared_genericSig": "",
- "static": true,
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "throwing": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "string",
- "printedName": "string(for:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- },
- {
- "kind": "TypeNominal",
- "name": "Array",
- "printedName": "[Swift.Int32]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int32",
- "printedName": "Swift.Int32",
- "usr": "s:s5Int32V"
- }
- ],
- "usr": "s:Sa"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit6SysctlV6string3forSSSays5Int32VG_tKFZ",
- "mangledName": "$s13ApptentiveKit6SysctlV6string3forSSSays5Int32VG_tKFZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "throwing": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "string",
- "printedName": "string(for:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- },
- {
- "kind": "TypeNominal",
- "name": "Array",
- "printedName": "[Swift.Int32]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int32",
- "printedName": "Swift.Int32",
- "usr": "s:s5Int32V"
- }
- ],
- "usr": "s:Sa"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit6SysctlV6string3forSSs5Int32Vd_tKFZ",
- "mangledName": "$s13ApptentiveKit6SysctlV6string3forSSs5Int32Vd_tKFZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "throwing": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "string",
- "printedName": "string(for:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit6SysctlV6string3forS2S_tKFZ",
- "mangledName": "$s13ApptentiveKit6SysctlV6string3forS2S_tKFZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "throwing": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Var",
- "name": "hostName",
- "printedName": "hostName",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit6SysctlV8hostNameSSvpZ",
- "mangledName": "$s13ApptentiveKit6SysctlV8hostNameSSvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit6SysctlV8hostNameSSvgZ",
- "mangledName": "$s13ApptentiveKit6SysctlV8hostNameSSvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "machine",
- "printedName": "machine",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit6SysctlV7machineSSvpZ",
- "mangledName": "$s13ApptentiveKit6SysctlV7machineSSvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit6SysctlV7machineSSvgZ",
- "mangledName": "$s13ApptentiveKit6SysctlV7machineSSvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "model",
- "printedName": "model",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit6SysctlV5modelSSvpZ",
- "mangledName": "$s13ApptentiveKit6SysctlV5modelSSvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit6SysctlV5modelSSvgZ",
- "mangledName": "$s13ApptentiveKit6SysctlV5modelSSvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "activeCPUs",
- "printedName": "activeCPUs",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int32",
- "printedName": "Swift.Int32",
- "usr": "s:s5Int32V"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit6SysctlV10activeCPUss5Int32VvpZ",
- "mangledName": "$s13ApptentiveKit6SysctlV10activeCPUss5Int32VvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int32",
- "printedName": "Swift.Int32",
- "usr": "s:s5Int32V"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit6SysctlV10activeCPUss5Int32VvgZ",
- "mangledName": "$s13ApptentiveKit6SysctlV10activeCPUss5Int32VvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "osRelease",
- "printedName": "osRelease",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit6SysctlV9osReleaseSSvpZ",
- "mangledName": "$s13ApptentiveKit6SysctlV9osReleaseSSvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit6SysctlV9osReleaseSSvgZ",
- "mangledName": "$s13ApptentiveKit6SysctlV9osReleaseSSvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "osType",
- "printedName": "osType",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit6SysctlV6osTypeSSvpZ",
- "mangledName": "$s13ApptentiveKit6SysctlV6osTypeSSvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit6SysctlV6osTypeSSvgZ",
- "mangledName": "$s13ApptentiveKit6SysctlV6osTypeSSvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "osVersion",
- "printedName": "osVersion",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit6SysctlV9osVersionSSvpZ",
- "mangledName": "$s13ApptentiveKit6SysctlV9osVersionSSvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit6SysctlV9osVersionSSvgZ",
- "mangledName": "$s13ApptentiveKit6SysctlV9osVersionSSvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "version",
- "printedName": "version",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit6SysctlV7versionSSvpZ",
- "mangledName": "$s13ApptentiveKit6SysctlV7versionSSvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit6SysctlV7versionSSvgZ",
- "mangledName": "$s13ApptentiveKit6SysctlV7versionSSvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "accessorKind": "get"
- }
- ]
- }
- ],
- "declKind": "Struct",
- "usr": "s:13ApptentiveKit6SysctlV",
- "mangledName": "$s13ApptentiveKit6SysctlV",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "UIKit",
- "printedName": "UIKit",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "ApptentiveNavigationController",
- "printedName": "ApptentiveNavigationController",
- "children": [
- {
- "kind": "Var",
- "name": "preferredStatusBarStyle",
- "printedName": "preferredStatusBarStyle",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIStatusBarStyle",
- "printedName": "UIKit.UIStatusBarStyle",
- "usr": "c:@E@UIStatusBarStyle"
- }
- ],
- "declKind": "Var",
- "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveNavigationController(py)preferredStatusBarStyle",
- "mangledName": "$s13ApptentiveKit0A20NavigationControllerC23preferredStatusBarStyleSo08UIStatusgH0Vvp",
- "moduleName": "ApptentiveKit",
- "overriding": true,
- "objc_name": "preferredStatusBarStyle",
- "declAttributes": [
- "Dynamic",
- "ObjC",
- "Custom",
- "Override",
- "AccessControl",
- "RawDocComment"
- ],
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIStatusBarStyle",
- "printedName": "UIKit.UIStatusBarStyle",
- "usr": "c:@E@UIStatusBarStyle"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveNavigationController(im)preferredStatusBarStyle",
- "mangledName": "$s13ApptentiveKit0A20NavigationControllerC23preferredStatusBarStyleSo08UIStatusgH0Vvg",
- "moduleName": "ApptentiveKit",
- "overriding": true,
- "objc_name": "preferredStatusBarStyle",
- "declAttributes": [
- "Dynamic",
- "ObjC"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "prefersLargeHeader",
- "printedName": "prefersLargeHeader",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ],
- "declKind": "Var",
- "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveNavigationController(cpy)prefersLargeHeader",
- "mangledName": "$s13ApptentiveKit0A20NavigationControllerC18prefersLargeHeaderSbvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "Custom",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveNavigationController(cm)prefersLargeHeader",
- "mangledName": "$s13ApptentiveKit0A20NavigationControllerC18prefersLargeHeaderSbvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final",
- "ObjC"
- ],
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveNavigationController(cm)setPrefersLargeHeader:",
- "mangledName": "$s13ApptentiveKit0A20NavigationControllerC18prefersLargeHeaderSbvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final",
- "ObjC"
- ],
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A20NavigationControllerC18prefersLargeHeaderSbvMZ",
- "mangledName": "$s13ApptentiveKit0A20NavigationControllerC18prefersLargeHeaderSbvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(navigationBarClass:toolbarClass:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveNavigationController",
- "printedName": "ApptentiveKit.ApptentiveNavigationController",
- "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveNavigationController"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "AnyObject.Type?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ExistentialMetatype",
- "printedName": "AnyObject.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ProtocolComposition",
- "printedName": "AnyObject"
- }
- ]
- }
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "AnyObject.Type?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ExistentialMetatype",
- "printedName": "AnyObject.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ProtocolComposition",
- "printedName": "AnyObject"
- }
- ]
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Constructor",
- "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveNavigationController(im)initWithNavigationBarClass:toolbarClass:",
- "mangledName": "$s13ApptentiveKit0A20NavigationControllerC18navigationBarClass07toolbarG0ACyXlXpSg_AFtcfc",
- "moduleName": "ApptentiveKit",
- "overriding": true,
- "implicit": true,
- "intro_iOS": "5.0",
- "objc_name": "initWithNavigationBarClass:toolbarClass:",
- "declAttributes": [
- "Dynamic",
- "ObjC",
- "Custom",
- "Override",
- "Available"
- ],
- "init_kind": "Designated"
- },
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(rootViewController:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveNavigationController",
- "printedName": "ApptentiveKit.ApptentiveNavigationController",
- "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveNavigationController"
- },
- {
- "kind": "TypeNominal",
- "name": "UIViewController",
- "printedName": "UIKit.UIViewController",
- "usr": "c:objc(cs)UIViewController"
- }
- ],
- "declKind": "Constructor",
- "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveNavigationController(im)initWithRootViewController:",
- "mangledName": "$s13ApptentiveKit0A20NavigationControllerC08rootViewD0ACSo06UIViewD0C_tcfc",
- "moduleName": "ApptentiveKit",
- "overriding": true,
- "implicit": true,
- "objc_name": "initWithRootViewController:",
- "declAttributes": [
- "Dynamic",
- "ObjC",
- "Custom",
- "Override"
- ],
- "init_kind": "Designated"
- },
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(nibName:bundle:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveNavigationController",
- "printedName": "ApptentiveKit.ApptentiveNavigationController",
- "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveNavigationController"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Foundation.Bundle?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bundle",
- "printedName": "Foundation.Bundle",
- "usr": "c:objc(cs)NSBundle"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Constructor",
- "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveNavigationController(im)initWithNibName:bundle:",
- "mangledName": "$s13ApptentiveKit0A20NavigationControllerC7nibName6bundleACSSSg_So8NSBundleCSgtcfc",
- "moduleName": "ApptentiveKit",
- "overriding": true,
- "implicit": true,
- "objc_name": "initWithNibName:bundle:",
- "declAttributes": [
- "Dynamic",
- "ObjC",
- "Custom",
- "Override"
- ],
- "init_kind": "Designated"
- },
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(coder:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "ApptentiveKit.ApptentiveNavigationController?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveNavigationController",
- "printedName": "ApptentiveKit.ApptentiveNavigationController",
- "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveNavigationController"
- }
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "NSCoder",
- "printedName": "Foundation.NSCoder",
- "usr": "c:objc(cs)NSCoder"
- }
- ],
- "declKind": "Constructor",
- "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveNavigationController(im)initWithCoder:",
- "mangledName": "$s13ApptentiveKit0A20NavigationControllerC5coderACSgSo7NSCoderC_tcfc",
- "moduleName": "ApptentiveKit",
- "overriding": true,
- "implicit": true,
- "objc_name": "initWithCoder:",
- "declAttributes": [
- "Dynamic",
- "ObjC",
- "Custom",
- "Required"
- ],
- "init_kind": "Designated"
- }
- ],
- "declKind": "Class",
- "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveNavigationController",
- "mangledName": "$s13ApptentiveKit0A20NavigationControllerC",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Custom",
- "AccessControl",
- "RawDocComment",
- "ObjC"
- ],
- "superclassUsr": "c:objc(cs)UINavigationController",
- "inheritsConvenienceInitializers": true,
- "superclassNames": [
- "UIKit.UINavigationController",
- "UIKit.UIViewController",
- "UIKit.UIResponder",
- "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": "Conformance",
- "name": "Sendable",
- "printedName": "Sendable",
- "usr": "s:s8SendableP",
- "mangledName": "$ss8SendableP"
- }
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "URLSession",
- "printedName": "URLSession",
- "declKind": "Class",
- "usr": "c:objc(cs)NSURLSession",
- "moduleName": "Foundation",
- "isOpen": true,
- "intro_iOS": "7.0",
- "objc_name": "NSURLSession",
- "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": "TypeDecl",
- "name": "String",
- "printedName": "String",
- "declKind": "Struct",
- "usr": "s:SS",
- "mangledName": "$sSS",
- "moduleName": "Swift",
- "declAttributes": [
- "Frozen"
- ],
- "isExternal": true,
- "conformances": [
- {
- "kind": "Conformance",
- "name": "CustomDataCompatible",
- "printedName": "CustomDataCompatible",
- "usr": "s:13ApptentiveKit20CustomDataCompatibleP",
- "mangledName": "$s13ApptentiveKit20CustomDataCompatibleP"
- },
- {
- "kind": "Conformance",
- "name": "Decodable",
- "printedName": "Decodable",
- "usr": "s:Se",
- "mangledName": "$sSe"
- },
- {
- "kind": "Conformance",
- "name": "Encodable",
- "printedName": "Encodable",
- "usr": "s:SE",
- "mangledName": "$sSE"
- },
- {
- "kind": "Conformance",
- "name": "CodingKeyRepresentable",
- "printedName": "CodingKeyRepresentable",
- "usr": "s:s22CodingKeyRepresentableP",
- "mangledName": "$ss22CodingKeyRepresentableP"
- },
- {
- "kind": "Conformance",
- "name": "_HasContiguousBytes",
- "printedName": "_HasContiguousBytes",
- "usr": "s:s19_HasContiguousBytesP",
- "mangledName": "$ss19_HasContiguousBytesP"
- },
- {
- "kind": "Conformance",
- "name": "CustomReflectable",
- "printedName": "CustomReflectable",
- "usr": "s:s17CustomReflectableP",
- "mangledName": "$ss17CustomReflectableP"
- },
- {
- "kind": "Conformance",
- "name": "_CustomPlaygroundQuickLookable",
- "printedName": "_CustomPlaygroundQuickLookable",
- "usr": "s:s30_CustomPlaygroundQuickLookableP",
- "mangledName": "$ss30_CustomPlaygroundQuickLookableP"
- },
- {
- "kind": "Conformance",
- "name": "TextOutputStream",
- "printedName": "TextOutputStream",
- "usr": "s:s16TextOutputStreamP",
- "mangledName": "$ss16TextOutputStreamP"
- },
- {
- "kind": "Conformance",
- "name": "TextOutputStreamable",
- "printedName": "TextOutputStreamable",
- "usr": "s:s20TextOutputStreamableP",
- "mangledName": "$ss20TextOutputStreamableP"
- },
- {
- "kind": "Conformance",
- "name": "Hashable",
- "printedName": "Hashable",
- "usr": "s:SH",
- "mangledName": "$sSH"
- },
- {
- "kind": "Conformance",
- "name": "Sendable",
- "printedName": "Sendable",
- "usr": "s:s8SendableP",
- "mangledName": "$ss8SendableP"
- },
- {
- "kind": "Conformance",
- "name": "_ExpressibleByBuiltinUnicodeScalarLiteral",
- "printedName": "_ExpressibleByBuiltinUnicodeScalarLiteral",
- "usr": "s:s41_ExpressibleByBuiltinUnicodeScalarLiteralP",
- "mangledName": "$ss41_ExpressibleByBuiltinUnicodeScalarLiteralP"
- },
- {
- "kind": "Conformance",
- "name": "_ExpressibleByBuiltinExtendedGraphemeClusterLiteral",
- "printedName": "_ExpressibleByBuiltinExtendedGraphemeClusterLiteral",
- "usr": "s:s51_ExpressibleByBuiltinExtendedGraphemeClusterLiteralP",
- "mangledName": "$ss51_ExpressibleByBuiltinExtendedGraphemeClusterLiteralP"
- },
- {
- "kind": "Conformance",
- "name": "_ExpressibleByBuiltinStringLiteral",
- "printedName": "_ExpressibleByBuiltinStringLiteral",
- "usr": "s:s34_ExpressibleByBuiltinStringLiteralP",
- "mangledName": "$ss34_ExpressibleByBuiltinStringLiteralP"
- },
- {
- "kind": "Conformance",
- "name": "ExpressibleByStringLiteral",
- "printedName": "ExpressibleByStringLiteral",
- "children": [
- {
- "kind": "TypeWitness",
- "name": "StringLiteralType",
- "printedName": "StringLiteralType",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ]
- }
- ],
- "usr": "s:s26ExpressibleByStringLiteralP",
- "mangledName": "$ss26ExpressibleByStringLiteralP"
- },
- {
- "kind": "Conformance",
- "name": "ExpressibleByExtendedGraphemeClusterLiteral",
- "printedName": "ExpressibleByExtendedGraphemeClusterLiteral",
- "children": [
- {
- "kind": "TypeWitness",
- "name": "ExtendedGraphemeClusterLiteralType",
- "printedName": "ExtendedGraphemeClusterLiteralType",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ]
- }
- ],
- "usr": "s:s43ExpressibleByExtendedGraphemeClusterLiteralP",
- "mangledName": "$ss43ExpressibleByExtendedGraphemeClusterLiteralP"
- },
- {
- "kind": "Conformance",
- "name": "ExpressibleByUnicodeScalarLiteral",
- "printedName": "ExpressibleByUnicodeScalarLiteral",
- "children": [
- {
- "kind": "TypeWitness",
- "name": "UnicodeScalarLiteralType",
- "printedName": "UnicodeScalarLiteralType",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ]
- }
- ],
- "usr": "s:s33ExpressibleByUnicodeScalarLiteralP",
- "mangledName": "$ss33ExpressibleByUnicodeScalarLiteralP"
- },
- {
- "kind": "Conformance",
- "name": "CustomDebugStringConvertible",
- "printedName": "CustomDebugStringConvertible",
- "usr": "s:s28CustomDebugStringConvertibleP",
- "mangledName": "$ss28CustomDebugStringConvertibleP"
- },
- {
- "kind": "Conformance",
- "name": "CustomStringConvertible",
- "printedName": "CustomStringConvertible",
- "usr": "s:s23CustomStringConvertibleP",
- "mangledName": "$ss23CustomStringConvertibleP"
- },
- {
- "kind": "Conformance",
- "name": "BidirectionalCollection",
- "printedName": "BidirectionalCollection",
- "children": [
- {
- "kind": "TypeWitness",
- "name": "Element",
- "printedName": "Element",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Character",
- "printedName": "Swift.Character",
- "usr": "s:SJ"
- }
- ]
- },
- {
- "kind": "TypeWitness",
- "name": "Index",
- "printedName": "Index",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Index",
- "printedName": "Swift.String.Index",
- "usr": "s:SS5IndexV"
- }
- ]
- },
- {
- "kind": "TypeWitness",
- "name": "SubSequence",
- "printedName": "SubSequence",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Substring",
- "printedName": "Swift.Substring",
- "usr": "s:Ss"
- }
- ]
- },
- {
- "kind": "TypeWitness",
- "name": "Indices",
- "printedName": "Indices",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "DefaultIndices",
- "printedName": "Swift.DefaultIndices",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:SI"
- }
- ]
- }
- ],
- "usr": "s:SK",
- "mangledName": "$sSK"
- },
- {
- "kind": "Conformance",
- "name": "Collection",
- "printedName": "Collection",
- "children": [
- {
- "kind": "TypeWitness",
- "name": "Element",
- "printedName": "Element",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Character",
- "printedName": "Swift.Character",
- "usr": "s:SJ"
- }
- ]
- },
- {
- "kind": "TypeWitness",
- "name": "Index",
- "printedName": "Index",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Index",
- "printedName": "Swift.String.Index",
- "usr": "s:SS5IndexV"
- }
- ]
- },
- {
- "kind": "TypeWitness",
- "name": "Iterator",
- "printedName": "Iterator",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Iterator",
- "printedName": "Swift.String.Iterator",
- "usr": "s:SS8IteratorV"
- }
- ]
- },
- {
- "kind": "TypeWitness",
- "name": "SubSequence",
- "printedName": "SubSequence",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Substring",
- "printedName": "Swift.Substring",
- "usr": "s:Ss"
- }
- ]
- },
- {
- "kind": "TypeWitness",
- "name": "Indices",
- "printedName": "Indices",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "DefaultIndices",
- "printedName": "Swift.DefaultIndices",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:SI"
- }
- ]
- }
- ],
- "usr": "s:Sl",
- "mangledName": "$sSl"
- },
- {
- "kind": "Conformance",
- "name": "Sequence",
- "printedName": "Sequence",
- "children": [
- {
- "kind": "TypeWitness",
- "name": "Element",
- "printedName": "Element",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Character",
- "printedName": "Swift.Character",
- "usr": "s:SJ"
- }
- ]
- },
- {
- "kind": "TypeWitness",
- "name": "Iterator",
- "printedName": "Iterator",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Iterator",
- "printedName": "Swift.String.Iterator",
- "usr": "s:SS8IteratorV"
- }
- ]
- }
- ],
- "usr": "s:ST",
- "mangledName": "$sST"
- },
- {
- "kind": "Conformance",
- "name": "Equatable",
- "printedName": "Equatable",
- "usr": "s:SQ",
- "mangledName": "$sSQ"
- },
- {
- "kind": "Conformance",
- "name": "Comparable",
- "printedName": "Comparable",
- "usr": "s:SL",
- "mangledName": "$sSL"
- },
- {
- "kind": "Conformance",
- "name": "StringProtocol",
- "printedName": "StringProtocol",
- "children": [
- {
- "kind": "TypeWitness",
- "name": "UTF8View",
- "printedName": "UTF8View",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UTF8View",
- "printedName": "Swift.String.UTF8View",
- "usr": "s:SS8UTF8ViewV"
- }
- ]
- },
- {
- "kind": "TypeWitness",
- "name": "UTF16View",
- "printedName": "UTF16View",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UTF16View",
- "printedName": "Swift.String.UTF16View",
- "usr": "s:SS9UTF16ViewV"
- }
- ]
- },
- {
- "kind": "TypeWitness",
- "name": "UnicodeScalarView",
- "printedName": "UnicodeScalarView",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UnicodeScalarView",
- "printedName": "Swift.String.UnicodeScalarView",
- "usr": "s:SS17UnicodeScalarViewV"
- }
- ]
- },
- {
- "kind": "TypeWitness",
- "name": "SubSequence",
- "printedName": "SubSequence",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Substring",
- "printedName": "Swift.Substring",
- "usr": "s:Ss"
- }
- ]
- }
- ],
- "usr": "s:Sy",
- "mangledName": "$sSy"
- },
- {
- "kind": "Conformance",
- "name": "ExpressibleByStringInterpolation",
- "printedName": "ExpressibleByStringInterpolation",
- "children": [
- {
- "kind": "TypeWitness",
- "name": "StringInterpolation",
- "printedName": "StringInterpolation",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "DefaultStringInterpolation",
- "printedName": "Swift.DefaultStringInterpolation",
- "usr": "s:s26DefaultStringInterpolationV"
- }
- ]
- }
- ],
- "usr": "s:s32ExpressibleByStringInterpolationP",
- "mangledName": "$ss32ExpressibleByStringInterpolationP"
- },
- {
- "kind": "Conformance",
- "name": "LosslessStringConvertible",
- "printedName": "LosslessStringConvertible",
- "usr": "s:s25LosslessStringConvertibleP",
- "mangledName": "$ss25LosslessStringConvertibleP"
- },
- {
- "kind": "Conformance",
- "name": "RangeReplaceableCollection",
- "printedName": "RangeReplaceableCollection",
- "children": [
- {
- "kind": "TypeWitness",
- "name": "SubSequence",
- "printedName": "SubSequence",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Substring",
- "printedName": "Swift.Substring",
- "usr": "s:Ss"
- }
- ]
- }
- ],
- "usr": "s:Sm",
- "mangledName": "$sSm"
- },
- {
- "kind": "Conformance",
- "name": "MirrorPath",
- "printedName": "MirrorPath",
- "usr": "s:s10MirrorPathP",
- "mangledName": "$ss10MirrorPathP"
- },
- {
- "kind": "Conformance",
- "name": "_ObjectiveCBridgeable",
- "printedName": "_ObjectiveCBridgeable",
- "children": [
- {
- "kind": "TypeWitness",
- "name": "_ObjectiveCType",
- "printedName": "_ObjectiveCType",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "NSString",
- "printedName": "Foundation.NSString",
- "usr": "c:objc(cs)NSString"
- }
- ]
- }
- ],
- "usr": "s:s21_ObjectiveCBridgeableP",
- "mangledName": "$ss21_ObjectiveCBridgeableP"
- },
- {
- "kind": "Conformance",
- "name": "CVarArg",
- "printedName": "CVarArg",
- "usr": "s:s7CVarArgP",
- "mangledName": "$ss7CVarArgP"
- }
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "Double",
- "printedName": "Double",
- "declKind": "Struct",
- "usr": "s:Sd",
- "mangledName": "$sSd",
- "moduleName": "Swift",
- "declAttributes": [
- "Frozen"
- ],
- "isExternal": true,
- "conformances": [
- {
- "kind": "Conformance",
- "name": "CustomDataCompatible",
- "printedName": "CustomDataCompatible",
- "usr": "s:13ApptentiveKit20CustomDataCompatibleP",
- "mangledName": "$s13ApptentiveKit20CustomDataCompatibleP"
- },
- {
- "kind": "Conformance",
- "name": "Decodable",
- "printedName": "Decodable",
- "usr": "s:Se",
- "mangledName": "$sSe"
- },
- {
- "kind": "Conformance",
- "name": "Encodable",
- "printedName": "Encodable",
- "usr": "s:SE",
- "mangledName": "$sSE"
- },
- {
- "kind": "Conformance",
- "name": "CustomReflectable",
- "printedName": "CustomReflectable",
- "usr": "s:s17CustomReflectableP",
- "mangledName": "$ss17CustomReflectableP"
- },
- {
- "kind": "Conformance",
- "name": "_CustomPlaygroundQuickLookable",
- "printedName": "_CustomPlaygroundQuickLookable",
- "usr": "s:s30_CustomPlaygroundQuickLookableP",
- "mangledName": "$ss30_CustomPlaygroundQuickLookableP"
- },
- {
- "kind": "Conformance",
- "name": "_CVarArgPassedAsDouble",
- "printedName": "_CVarArgPassedAsDouble",
- "usr": "s:s22_CVarArgPassedAsDoubleP",
- "mangledName": "$ss22_CVarArgPassedAsDoubleP"
- },
- {
- "kind": "Conformance",
- "name": "_CVarArgAligned",
- "printedName": "_CVarArgAligned",
- "usr": "s:s15_CVarArgAlignedP",
- "mangledName": "$ss15_CVarArgAlignedP"
- },
- {
- "kind": "Conformance",
- "name": "CVarArg",
- "printedName": "CVarArg",
- "usr": "s:s7CVarArgP",
- "mangledName": "$ss7CVarArgP"
- },
- {
- "kind": "Conformance",
- "name": "LosslessStringConvertible",
- "printedName": "LosslessStringConvertible",
- "usr": "s:s25LosslessStringConvertibleP",
- "mangledName": "$ss25LosslessStringConvertibleP"
- },
- {
- "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": "TextOutputStreamable",
- "printedName": "TextOutputStreamable",
- "usr": "s:s20TextOutputStreamableP",
- "mangledName": "$ss20TextOutputStreamableP"
- },
- {
- "kind": "Conformance",
- "name": "BinaryFloatingPoint",
- "printedName": "BinaryFloatingPoint",
- "children": [
- {
- "kind": "TypeWitness",
- "name": "RawSignificand",
- "printedName": "RawSignificand",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UInt64",
- "printedName": "Swift.UInt64",
- "usr": "s:s6UInt64V"
- }
- ]
- },
- {
- "kind": "TypeWitness",
- "name": "RawExponent",
- "printedName": "RawExponent",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UInt",
- "printedName": "Swift.UInt",
- "usr": "s:Su"
- }
- ]
- }
- ],
- "usr": "s:SB",
- "mangledName": "$sSB"
- },
- {
- "kind": "Conformance",
- "name": "ExpressibleByFloatLiteral",
- "printedName": "ExpressibleByFloatLiteral",
- "children": [
- {
- "kind": "TypeWitness",
- "name": "FloatLiteralType",
- "printedName": "FloatLiteralType",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Double",
- "printedName": "Swift.Double",
- "usr": "s:Sd"
- }
- ]
- }
- ],
- "usr": "s:s25ExpressibleByFloatLiteralP",
- "mangledName": "$ss25ExpressibleByFloatLiteralP"
- },
- {
- "kind": "Conformance",
- "name": "FloatingPoint",
- "printedName": "FloatingPoint",
- "children": [
- {
- "kind": "TypeWitness",
- "name": "Exponent",
- "printedName": "Exponent",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ]
- }
- ],
- "usr": "s:SF",
- "mangledName": "$sSF"
- },
- {
- "kind": "Conformance",
- "name": "SignedNumeric",
- "printedName": "SignedNumeric",
- "usr": "s:s13SignedNumericP",
- "mangledName": "$ss13SignedNumericP"
- },
- {
- "kind": "Conformance",
- "name": "Numeric",
- "printedName": "Numeric",
- "children": [
- {
- "kind": "TypeWitness",
- "name": "Magnitude",
- "printedName": "Magnitude",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Double",
- "printedName": "Swift.Double",
- "usr": "s:Sd"
- }
- ]
- }
- ],
- "usr": "s:Sj",
- "mangledName": "$sSj"
- },
- {
- "kind": "Conformance",
- "name": "AdditiveArithmetic",
- "printedName": "AdditiveArithmetic",
- "usr": "s:s18AdditiveArithmeticP",
- "mangledName": "$ss18AdditiveArithmeticP"
- },
- {
- "kind": "Conformance",
- "name": "_ExpressibleByBuiltinIntegerLiteral",
- "printedName": "_ExpressibleByBuiltinIntegerLiteral",
- "usr": "s:s35_ExpressibleByBuiltinIntegerLiteralP",
- "mangledName": "$ss35_ExpressibleByBuiltinIntegerLiteralP"
- },
- {
- "kind": "Conformance",
- "name": "ExpressibleByIntegerLiteral",
- "printedName": "ExpressibleByIntegerLiteral",
- "children": [
- {
- "kind": "TypeWitness",
- "name": "IntegerLiteralType",
- "printedName": "IntegerLiteralType",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int64",
- "printedName": "Swift.Int64",
- "usr": "s:s5Int64V"
- }
- ]
- }
- ],
- "usr": "s:s27ExpressibleByIntegerLiteralP",
- "mangledName": "$ss27ExpressibleByIntegerLiteralP"
- },
- {
- "kind": "Conformance",
- "name": "_ExpressibleByBuiltinFloatLiteral",
- "printedName": "_ExpressibleByBuiltinFloatLiteral",
- "usr": "s:s33_ExpressibleByBuiltinFloatLiteralP",
- "mangledName": "$ss33_ExpressibleByBuiltinFloatLiteralP"
- },
- {
- "kind": "Conformance",
- "name": "Hashable",
- "printedName": "Hashable",
- "usr": "s:SH",
- "mangledName": "$sSH"
- },
- {
- "kind": "Conformance",
- "name": "Equatable",
- "printedName": "Equatable",
- "usr": "s:SQ",
- "mangledName": "$sSQ"
- },
- {
- "kind": "Conformance",
- "name": "_HasCustomAnyHashableRepresentation",
- "printedName": "_HasCustomAnyHashableRepresentation",
- "usr": "s:s35_HasCustomAnyHashableRepresentationP",
- "mangledName": "$ss35_HasCustomAnyHashableRepresentationP"
- },
- {
- "kind": "Conformance",
- "name": "Sendable",
- "printedName": "Sendable",
- "usr": "s:s8SendableP",
- "mangledName": "$ss8SendableP"
- },
- {
- "kind": "Conformance",
- "name": "Strideable",
- "printedName": "Strideable",
- "children": [
- {
- "kind": "TypeWitness",
- "name": "Stride",
- "printedName": "Stride",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Double",
- "printedName": "Swift.Double",
- "usr": "s:Sd"
- }
- ]
- }
- ],
- "usr": "s:Sx",
- "mangledName": "$sSx"
- },
- {
- "kind": "Conformance",
- "name": "Comparable",
- "printedName": "Comparable",
- "usr": "s:SL",
- "mangledName": "$sSL"
- },
- {
- "kind": "Conformance",
- "name": "SIMDScalar",
- "printedName": "SIMDScalar",
- "children": [
- {
- "kind": "TypeWitness",
- "name": "SIMDMaskScalar",
- "printedName": "SIMDMaskScalar",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int64",
- "printedName": "Swift.Int64",
- "usr": "s:s5Int64V"
- }
- ]
- },
- {
- "kind": "TypeWitness",
- "name": "SIMD2Storage",
- "printedName": "SIMD2Storage",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "SIMD2Storage",
- "printedName": "Swift.Double.SIMD2Storage",
- "usr": "s:Sd12SIMD2StorageV"
- }
- ]
- },
- {
- "kind": "TypeWitness",
- "name": "SIMD4Storage",
- "printedName": "SIMD4Storage",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "SIMD4Storage",
- "printedName": "Swift.Double.SIMD4Storage",
- "usr": "s:Sd12SIMD4StorageV"
- }
- ]
- },
- {
- "kind": "TypeWitness",
- "name": "SIMD8Storage",
- "printedName": "SIMD8Storage",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "SIMD8Storage",
- "printedName": "Swift.Double.SIMD8Storage",
- "usr": "s:Sd12SIMD8StorageV"
- }
- ]
- },
- {
- "kind": "TypeWitness",
- "name": "SIMD16Storage",
- "printedName": "SIMD16Storage",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "SIMD16Storage",
- "printedName": "Swift.Double.SIMD16Storage",
- "usr": "s:Sd13SIMD16StorageV"
- }
- ]
- },
- {
- "kind": "TypeWitness",
- "name": "SIMD32Storage",
- "printedName": "SIMD32Storage",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "SIMD32Storage",
- "printedName": "Swift.Double.SIMD32Storage",
- "usr": "s:Sd13SIMD32StorageV"
- }
- ]
- },
- {
- "kind": "TypeWitness",
- "name": "SIMD64Storage",
- "printedName": "SIMD64Storage",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "SIMD64Storage",
- "printedName": "Swift.Double.SIMD64Storage",
- "usr": "s:Sd13SIMD64StorageV"
- }
- ]
- }
- ],
- "usr": "s:s10SIMDScalarP",
- "mangledName": "$ss10SIMDScalarP"
- },
- {
- "kind": "Conformance",
- "name": "_FormatSpecifiable",
- "printedName": "_FormatSpecifiable",
- "children": [
- {
- "kind": "TypeWitness",
- "name": "_Arg",
- "printedName": "_Arg",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Double",
- "printedName": "Swift.Double",
- "usr": "s:Sd"
- }
- ]
- }
- ],
- "usr": "s:10Foundation18_FormatSpecifiableP",
- "mangledName": "$s10Foundation18_FormatSpecifiableP"
- },
- {
- "kind": "Conformance",
- "name": "_ObjectiveCBridgeable",
- "printedName": "_ObjectiveCBridgeable",
- "children": [
- {
- "kind": "TypeWitness",
- "name": "_ObjectiveCType",
- "printedName": "_ObjectiveCType",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "NSNumber",
- "printedName": "Foundation.NSNumber",
- "usr": "c:objc(cs)NSNumber"
- }
- ]
- }
- ],
- "usr": "s:s21_ObjectiveCBridgeableP",
- "mangledName": "$ss21_ObjectiveCBridgeableP"
- }
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "Float",
- "printedName": "Float",
- "declKind": "Struct",
- "usr": "s:Sf",
- "mangledName": "$sSf",
- "moduleName": "Swift",
- "declAttributes": [
- "Frozen"
- ],
- "isExternal": true,
- "conformances": [
- {
- "kind": "Conformance",
- "name": "CustomDataCompatible",
- "printedName": "CustomDataCompatible",
- "usr": "s:13ApptentiveKit20CustomDataCompatibleP",
- "mangledName": "$s13ApptentiveKit20CustomDataCompatibleP"
- },
- {
- "kind": "Conformance",
- "name": "Decodable",
- "printedName": "Decodable",
- "usr": "s:Se",
- "mangledName": "$sSe"
- },
- {
- "kind": "Conformance",
- "name": "Encodable",
- "printedName": "Encodable",
- "usr": "s:SE",
- "mangledName": "$sSE"
- },
- {
- "kind": "Conformance",
- "name": "CustomReflectable",
- "printedName": "CustomReflectable",
- "usr": "s:s17CustomReflectableP",
- "mangledName": "$ss17CustomReflectableP"
- },
- {
- "kind": "Conformance",
- "name": "_CustomPlaygroundQuickLookable",
- "printedName": "_CustomPlaygroundQuickLookable",
- "usr": "s:s30_CustomPlaygroundQuickLookableP",
- "mangledName": "$ss30_CustomPlaygroundQuickLookableP"
- },
- {
- "kind": "Conformance",
- "name": "_CVarArgPassedAsDouble",
- "printedName": "_CVarArgPassedAsDouble",
- "usr": "s:s22_CVarArgPassedAsDoubleP",
- "mangledName": "$ss22_CVarArgPassedAsDoubleP"
- },
- {
- "kind": "Conformance",
- "name": "_CVarArgAligned",
- "printedName": "_CVarArgAligned",
- "usr": "s:s15_CVarArgAlignedP",
- "mangledName": "$ss15_CVarArgAlignedP"
- },
- {
- "kind": "Conformance",
- "name": "CVarArg",
- "printedName": "CVarArg",
- "usr": "s:s7CVarArgP",
- "mangledName": "$ss7CVarArgP"
- },
- {
- "kind": "Conformance",
- "name": "LosslessStringConvertible",
- "printedName": "LosslessStringConvertible",
- "usr": "s:s25LosslessStringConvertibleP",
- "mangledName": "$ss25LosslessStringConvertibleP"
- },
- {
- "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": "TextOutputStreamable",
- "printedName": "TextOutputStreamable",
- "usr": "s:s20TextOutputStreamableP",
- "mangledName": "$ss20TextOutputStreamableP"
- },
- {
- "kind": "Conformance",
- "name": "BinaryFloatingPoint",
- "printedName": "BinaryFloatingPoint",
- "children": [
- {
- "kind": "TypeWitness",
- "name": "RawSignificand",
- "printedName": "RawSignificand",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UInt32",
- "printedName": "Swift.UInt32",
- "usr": "s:s6UInt32V"
- }
- ]
- },
- {
- "kind": "TypeWitness",
- "name": "RawExponent",
- "printedName": "RawExponent",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UInt",
- "printedName": "Swift.UInt",
- "usr": "s:Su"
- }
- ]
- }
- ],
- "usr": "s:SB",
- "mangledName": "$sSB"
- },
- {
- "kind": "Conformance",
- "name": "ExpressibleByFloatLiteral",
- "printedName": "ExpressibleByFloatLiteral",
- "children": [
- {
- "kind": "TypeWitness",
- "name": "FloatLiteralType",
- "printedName": "FloatLiteralType",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Float",
- "printedName": "Swift.Float",
- "usr": "s:Sf"
- }
- ]
- }
- ],
- "usr": "s:s25ExpressibleByFloatLiteralP",
- "mangledName": "$ss25ExpressibleByFloatLiteralP"
- },
- {
- "kind": "Conformance",
- "name": "FloatingPoint",
- "printedName": "FloatingPoint",
- "children": [
- {
- "kind": "TypeWitness",
- "name": "Exponent",
- "printedName": "Exponent",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ]
- }
- ],
- "usr": "s:SF",
- "mangledName": "$sSF"
- },
- {
- "kind": "Conformance",
- "name": "SignedNumeric",
- "printedName": "SignedNumeric",
- "usr": "s:s13SignedNumericP",
- "mangledName": "$ss13SignedNumericP"
- },
- {
- "kind": "Conformance",
- "name": "Numeric",
- "printedName": "Numeric",
- "children": [
- {
- "kind": "TypeWitness",
- "name": "Magnitude",
- "printedName": "Magnitude",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Float",
- "printedName": "Swift.Float",
- "usr": "s:Sf"
- }
- ]
- }
- ],
- "usr": "s:Sj",
- "mangledName": "$sSj"
- },
- {
- "kind": "Conformance",
- "name": "AdditiveArithmetic",
- "printedName": "AdditiveArithmetic",
- "usr": "s:s18AdditiveArithmeticP",
- "mangledName": "$ss18AdditiveArithmeticP"
- },
- {
- "kind": "Conformance",
- "name": "_ExpressibleByBuiltinIntegerLiteral",
- "printedName": "_ExpressibleByBuiltinIntegerLiteral",
- "usr": "s:s35_ExpressibleByBuiltinIntegerLiteralP",
- "mangledName": "$ss35_ExpressibleByBuiltinIntegerLiteralP"
- },
- {
- "kind": "Conformance",
- "name": "ExpressibleByIntegerLiteral",
- "printedName": "ExpressibleByIntegerLiteral",
- "children": [
- {
- "kind": "TypeWitness",
- "name": "IntegerLiteralType",
- "printedName": "IntegerLiteralType",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int64",
- "printedName": "Swift.Int64",
- "usr": "s:s5Int64V"
- }
- ]
- }
- ],
- "usr": "s:s27ExpressibleByIntegerLiteralP",
- "mangledName": "$ss27ExpressibleByIntegerLiteralP"
- },
- {
- "kind": "Conformance",
- "name": "_ExpressibleByBuiltinFloatLiteral",
- "printedName": "_ExpressibleByBuiltinFloatLiteral",
- "usr": "s:s33_ExpressibleByBuiltinFloatLiteralP",
- "mangledName": "$ss33_ExpressibleByBuiltinFloatLiteralP"
- },
- {
- "kind": "Conformance",
- "name": "Hashable",
- "printedName": "Hashable",
- "usr": "s:SH",
- "mangledName": "$sSH"
- },
- {
- "kind": "Conformance",
- "name": "Equatable",
- "printedName": "Equatable",
- "usr": "s:SQ",
- "mangledName": "$sSQ"
- },
- {
- "kind": "Conformance",
- "name": "_HasCustomAnyHashableRepresentation",
- "printedName": "_HasCustomAnyHashableRepresentation",
- "usr": "s:s35_HasCustomAnyHashableRepresentationP",
- "mangledName": "$ss35_HasCustomAnyHashableRepresentationP"
- },
- {
- "kind": "Conformance",
- "name": "Sendable",
- "printedName": "Sendable",
- "usr": "s:s8SendableP",
- "mangledName": "$ss8SendableP"
- },
- {
- "kind": "Conformance",
- "name": "Strideable",
- "printedName": "Strideable",
- "children": [
- {
- "kind": "TypeWitness",
- "name": "Stride",
- "printedName": "Stride",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Float",
- "printedName": "Swift.Float",
- "usr": "s:Sf"
- }
- ]
- }
- ],
- "usr": "s:Sx",
- "mangledName": "$sSx"
- },
- {
- "kind": "Conformance",
- "name": "Comparable",
- "printedName": "Comparable",
- "usr": "s:SL",
- "mangledName": "$sSL"
- },
- {
- "kind": "Conformance",
- "name": "SIMDScalar",
- "printedName": "SIMDScalar",
- "children": [
- {
- "kind": "TypeWitness",
- "name": "SIMDMaskScalar",
- "printedName": "SIMDMaskScalar",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int32",
- "printedName": "Swift.Int32",
- "usr": "s:s5Int32V"
- }
- ]
- },
- {
- "kind": "TypeWitness",
- "name": "SIMD2Storage",
- "printedName": "SIMD2Storage",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "SIMD2Storage",
- "printedName": "Swift.Float.SIMD2Storage",
- "usr": "s:Sf12SIMD2StorageV"
- }
- ]
- },
- {
- "kind": "TypeWitness",
- "name": "SIMD4Storage",
- "printedName": "SIMD4Storage",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "SIMD4Storage",
- "printedName": "Swift.Float.SIMD4Storage",
- "usr": "s:Sf12SIMD4StorageV"
- }
- ]
- },
- {
- "kind": "TypeWitness",
- "name": "SIMD8Storage",
- "printedName": "SIMD8Storage",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "SIMD8Storage",
- "printedName": "Swift.Float.SIMD8Storage",
- "usr": "s:Sf12SIMD8StorageV"
- }
- ]
- },
- {
- "kind": "TypeWitness",
- "name": "SIMD16Storage",
- "printedName": "SIMD16Storage",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "SIMD16Storage",
- "printedName": "Swift.Float.SIMD16Storage",
- "usr": "s:Sf13SIMD16StorageV"
- }
- ]
- },
- {
- "kind": "TypeWitness",
- "name": "SIMD32Storage",
- "printedName": "SIMD32Storage",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "SIMD32Storage",
- "printedName": "Swift.Float.SIMD32Storage",
- "usr": "s:Sf13SIMD32StorageV"
- }
- ]
- },
- {
- "kind": "TypeWitness",
- "name": "SIMD64Storage",
- "printedName": "SIMD64Storage",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "SIMD64Storage",
- "printedName": "Swift.Float.SIMD64Storage",
- "usr": "s:Sf13SIMD64StorageV"
- }
- ]
- }
- ],
- "usr": "s:s10SIMDScalarP",
- "mangledName": "$ss10SIMDScalarP"
- },
- {
- "kind": "Conformance",
- "name": "_FormatSpecifiable",
- "printedName": "_FormatSpecifiable",
- "children": [
- {
- "kind": "TypeWitness",
- "name": "_Arg",
- "printedName": "_Arg",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Float",
- "printedName": "Swift.Float",
- "usr": "s:Sf"
- }
- ]
- }
- ],
- "usr": "s:10Foundation18_FormatSpecifiableP",
- "mangledName": "$s10Foundation18_FormatSpecifiableP"
- },
- {
- "kind": "Conformance",
- "name": "_ObjectiveCBridgeable",
- "printedName": "_ObjectiveCBridgeable",
- "children": [
- {
- "kind": "TypeWitness",
- "name": "_ObjectiveCType",
- "printedName": "_ObjectiveCType",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "NSNumber",
- "printedName": "Foundation.NSNumber",
- "usr": "c:objc(cs)NSNumber"
- }
- ]
- }
- ],
- "usr": "s:s21_ObjectiveCBridgeableP",
- "mangledName": "$ss21_ObjectiveCBridgeableP"
- }
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "Int",
- "printedName": "Int",
- "declKind": "Struct",
- "usr": "s:Si",
- "mangledName": "$sSi",
- "moduleName": "Swift",
- "declAttributes": [
- "Frozen"
- ],
- "isExternal": true,
- "conformances": [
- {
- "kind": "Conformance",
- "name": "FixedWidthInteger",
- "printedName": "FixedWidthInteger",
- "usr": "s:s17FixedWidthIntegerP",
- "mangledName": "$ss17FixedWidthIntegerP"
- },
- {
- "kind": "Conformance",
- "name": "SignedInteger",
- "printedName": "SignedInteger",
- "usr": "s:SZ",
- "mangledName": "$sSZ"
- },
- {
- "kind": "Conformance",
- "name": "_ExpressibleByBuiltinIntegerLiteral",
- "printedName": "_ExpressibleByBuiltinIntegerLiteral",
- "usr": "s:s35_ExpressibleByBuiltinIntegerLiteralP",
- "mangledName": "$ss35_ExpressibleByBuiltinIntegerLiteralP"
- },
- {
- "kind": "Conformance",
- "name": "BinaryInteger",
- "printedName": "BinaryInteger",
- "children": [
- {
- "kind": "TypeWitness",
- "name": "Words",
- "printedName": "Words",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Words",
- "printedName": "Swift.Int.Words",
- "usr": "s:Si5WordsV"
- }
- ]
- }
- ],
- "usr": "s:Sz",
- "mangledName": "$sSz"
- },
- {
- "kind": "Conformance",
- "name": "LosslessStringConvertible",
- "printedName": "LosslessStringConvertible",
- "usr": "s:s25LosslessStringConvertibleP",
- "mangledName": "$ss25LosslessStringConvertibleP"
- },
- {
- "kind": "Conformance",
- "name": "SignedNumeric",
- "printedName": "SignedNumeric",
- "usr": "s:s13SignedNumericP",
- "mangledName": "$ss13SignedNumericP"
- },
- {
- "kind": "Conformance",
- "name": "CustomStringConvertible",
- "printedName": "CustomStringConvertible",
- "usr": "s:s23CustomStringConvertibleP",
- "mangledName": "$ss23CustomStringConvertibleP"
- },
- {
- "kind": "Conformance",
- "name": "Numeric",
- "printedName": "Numeric",
- "children": [
- {
- "kind": "TypeWitness",
- "name": "Magnitude",
- "printedName": "Magnitude",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UInt",
- "printedName": "Swift.UInt",
- "usr": "s:Su"
- }
- ]
- }
- ],
- "usr": "s:Sj",
- "mangledName": "$sSj"
- },
- {
- "kind": "Conformance",
- "name": "Strideable",
- "printedName": "Strideable",
- "children": [
- {
- "kind": "TypeWitness",
- "name": "Stride",
- "printedName": "Stride",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ]
- }
- ],
- "usr": "s:Sx",
- "mangledName": "$sSx"
- },
- {
- "kind": "Conformance",
- "name": "AdditiveArithmetic",
- "printedName": "AdditiveArithmetic",
- "usr": "s:s18AdditiveArithmeticP",
- "mangledName": "$ss18AdditiveArithmeticP"
- },
- {
- "kind": "Conformance",
- "name": "ExpressibleByIntegerLiteral",
- "printedName": "ExpressibleByIntegerLiteral",
- "children": [
- {
- "kind": "TypeWitness",
- "name": "IntegerLiteralType",
- "printedName": "IntegerLiteralType",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ]
- }
- ],
- "usr": "s:s27ExpressibleByIntegerLiteralP",
- "mangledName": "$ss27ExpressibleByIntegerLiteralP"
- },
- {
- "kind": "Conformance",
- "name": "Comparable",
- "printedName": "Comparable",
- "usr": "s:SL",
- "mangledName": "$sSL"
- },
- {
- "kind": "Conformance",
- "name": "CustomDataCompatible",
- "printedName": "CustomDataCompatible",
- "usr": "s:13ApptentiveKit20CustomDataCompatibleP",
- "mangledName": "$s13ApptentiveKit20CustomDataCompatibleP"
- },
- {
- "kind": "Conformance",
- "name": "Decodable",
- "printedName": "Decodable",
- "usr": "s:Se",
- "mangledName": "$sSe"
- },
- {
- "kind": "Conformance",
- "name": "Encodable",
- "printedName": "Encodable",
- "usr": "s:SE",
- "mangledName": "$sSE"
- },
- {
- "kind": "Conformance",
- "name": "CodingKeyRepresentable",
- "printedName": "CodingKeyRepresentable",
- "usr": "s:s22CodingKeyRepresentableP",
- "mangledName": "$ss22CodingKeyRepresentableP"
- },
- {
- "kind": "Conformance",
- "name": "CustomReflectable",
- "printedName": "CustomReflectable",
- "usr": "s:s17CustomReflectableP",
- "mangledName": "$ss17CustomReflectableP"
- },
- {
- "kind": "Conformance",
- "name": "_CustomPlaygroundQuickLookable",
- "printedName": "_CustomPlaygroundQuickLookable",
- "usr": "s:s30_CustomPlaygroundQuickLookableP",
- "mangledName": "$ss30_CustomPlaygroundQuickLookableP"
- },
- {
- "kind": "Conformance",
- "name": "MirrorPath",
- "printedName": "MirrorPath",
- "usr": "s:s10MirrorPathP",
- "mangledName": "$ss10MirrorPathP"
- },
- {
- "kind": "Conformance",
- "name": "CVarArg",
- "printedName": "CVarArg",
- "usr": "s:s7CVarArgP",
- "mangledName": "$ss7CVarArgP"
- },
- {
- "kind": "Conformance",
- "name": "Hashable",
- "printedName": "Hashable",
- "usr": "s:SH",
- "mangledName": "$sSH"
- },
- {
- "kind": "Conformance",
- "name": "Equatable",
- "printedName": "Equatable",
- "usr": "s:SQ",
- "mangledName": "$sSQ"
- },
- {
- "kind": "Conformance",
- "name": "_HasCustomAnyHashableRepresentation",
- "printedName": "_HasCustomAnyHashableRepresentation",
- "usr": "s:s35_HasCustomAnyHashableRepresentationP",
- "mangledName": "$ss35_HasCustomAnyHashableRepresentationP"
- },
- {
- "kind": "Conformance",
- "name": "Sendable",
- "printedName": "Sendable",
- "usr": "s:s8SendableP",
- "mangledName": "$ss8SendableP"
- },
- {
- "kind": "Conformance",
- "name": "SIMDScalar",
- "printedName": "SIMDScalar",
- "children": [
- {
- "kind": "TypeWitness",
- "name": "SIMDMaskScalar",
- "printedName": "SIMDMaskScalar",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ]
- },
- {
- "kind": "TypeWitness",
- "name": "SIMD2Storage",
- "printedName": "SIMD2Storage",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "SIMD2Storage",
- "printedName": "Swift.Int.SIMD2Storage",
- "usr": "s:Si12SIMD2StorageV"
- }
- ]
- },
- {
- "kind": "TypeWitness",
- "name": "SIMD4Storage",
- "printedName": "SIMD4Storage",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "SIMD4Storage",
- "printedName": "Swift.Int.SIMD4Storage",
- "usr": "s:Si12SIMD4StorageV"
- }
- ]
- },
- {
- "kind": "TypeWitness",
- "name": "SIMD8Storage",
- "printedName": "SIMD8Storage",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "SIMD8Storage",
- "printedName": "Swift.Int.SIMD8Storage",
- "usr": "s:Si12SIMD8StorageV"
- }
- ]
- },
- {
- "kind": "TypeWitness",
- "name": "SIMD16Storage",
- "printedName": "SIMD16Storage",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "SIMD16Storage",
- "printedName": "Swift.Int.SIMD16Storage",
- "usr": "s:Si13SIMD16StorageV"
- }
- ]
- },
- {
- "kind": "TypeWitness",
- "name": "SIMD32Storage",
- "printedName": "SIMD32Storage",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "SIMD32Storage",
- "printedName": "Swift.Int.SIMD32Storage",
- "usr": "s:Si13SIMD32StorageV"
- }
- ]
- },
- {
- "kind": "TypeWitness",
- "name": "SIMD64Storage",
- "printedName": "SIMD64Storage",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "SIMD64Storage",
- "printedName": "Swift.Int.SIMD64Storage",
- "usr": "s:Si13SIMD64StorageV"
- }
- ]
- }
- ],
- "usr": "s:s10SIMDScalarP",
- "mangledName": "$ss10SIMDScalarP"
- },
- {
- "kind": "Conformance",
- "name": "_FormatSpecifiable",
- "printedName": "_FormatSpecifiable",
- "children": [
- {
- "kind": "TypeWitness",
- "name": "_Arg",
- "printedName": "_Arg",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int64",
- "printedName": "Swift.Int64",
- "usr": "s:s5Int64V"
- }
- ]
- }
- ],
- "usr": "s:10Foundation18_FormatSpecifiableP",
- "mangledName": "$s10Foundation18_FormatSpecifiableP"
- },
- {
- "kind": "Conformance",
- "name": "_ObjectiveCBridgeable",
- "printedName": "_ObjectiveCBridgeable",
- "children": [
- {
- "kind": "TypeWitness",
- "name": "_ObjectiveCType",
- "printedName": "_ObjectiveCType",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "NSNumber",
- "printedName": "Foundation.NSNumber",
- "usr": "c:objc(cs)NSNumber"
- }
- ]
- }
- ],
- "usr": "s:s21_ObjectiveCBridgeableP",
- "mangledName": "$ss21_ObjectiveCBridgeableP"
- }
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "Bool",
- "printedName": "Bool",
- "declKind": "Struct",
- "usr": "s:Sb",
- "mangledName": "$sSb",
- "moduleName": "Swift",
- "declAttributes": [
- "Frozen"
- ],
- "isExternal": true,
- "conformances": [
- {
- "kind": "Conformance",
- "name": "Sendable",
- "printedName": "Sendable",
- "usr": "s:s8SendableP",
- "mangledName": "$ss8SendableP"
- },
- {
- "kind": "Conformance",
- "name": "CustomDataCompatible",
- "printedName": "CustomDataCompatible",
- "usr": "s:13ApptentiveKit20CustomDataCompatibleP",
- "mangledName": "$s13ApptentiveKit20CustomDataCompatibleP"
- },
- {
- "kind": "Conformance",
- "name": "_ExpressibleByBuiltinBooleanLiteral",
- "printedName": "_ExpressibleByBuiltinBooleanLiteral",
- "usr": "s:s35_ExpressibleByBuiltinBooleanLiteralP",
- "mangledName": "$ss35_ExpressibleByBuiltinBooleanLiteralP"
- },
- {
- "kind": "Conformance",
- "name": "ExpressibleByBooleanLiteral",
- "printedName": "ExpressibleByBooleanLiteral",
- "children": [
- {
- "kind": "TypeWitness",
- "name": "BooleanLiteralType",
- "printedName": "BooleanLiteralType",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ]
- }
- ],
- "usr": "s:s27ExpressibleByBooleanLiteralP",
- "mangledName": "$ss27ExpressibleByBooleanLiteralP"
- },
- {
- "kind": "Conformance",
- "name": "CustomStringConvertible",
- "printedName": "CustomStringConvertible",
- "usr": "s:s23CustomStringConvertibleP",
- "mangledName": "$ss23CustomStringConvertibleP"
- },
- {
- "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": "LosslessStringConvertible",
- "printedName": "LosslessStringConvertible",
- "usr": "s:s25LosslessStringConvertibleP",
- "mangledName": "$ss25LosslessStringConvertibleP"
- },
- {
- "kind": "Conformance",
- "name": "Decodable",
- "printedName": "Decodable",
- "usr": "s:Se",
- "mangledName": "$sSe"
- },
- {
- "kind": "Conformance",
- "name": "Encodable",
- "printedName": "Encodable",
- "usr": "s:SE",
- "mangledName": "$sSE"
- },
- {
- "kind": "Conformance",
- "name": "CustomReflectable",
- "printedName": "CustomReflectable",
- "usr": "s:s17CustomReflectableP",
- "mangledName": "$ss17CustomReflectableP"
- },
- {
- "kind": "Conformance",
- "name": "_CustomPlaygroundQuickLookable",
- "printedName": "_CustomPlaygroundQuickLookable",
- "usr": "s:s30_CustomPlaygroundQuickLookableP",
- "mangledName": "$ss30_CustomPlaygroundQuickLookableP"
- },
- {
- "kind": "Conformance",
- "name": "CVarArg",
- "printedName": "CVarArg",
- "usr": "s:s7CVarArgP",
- "mangledName": "$ss7CVarArgP"
- },
- {
- "kind": "Conformance",
- "name": "_ObjectiveCBridgeable",
- "printedName": "_ObjectiveCBridgeable",
- "children": [
- {
- "kind": "TypeWitness",
- "name": "_ObjectiveCType",
- "printedName": "_ObjectiveCType",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "NSNumber",
- "printedName": "Foundation.NSNumber",
- "usr": "c:objc(cs)NSNumber"
- }
- ]
- }
- ],
- "usr": "s:s21_ObjectiveCBridgeableP",
- "mangledName": "$ss21_ObjectiveCBridgeableP"
- }
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "Name",
- "printedName": "Name",
- "children": [
- {
- "kind": "Var",
- "name": "apptentiveEventEngaged",
- "printedName": "apptentiveEventEngaged",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Name",
- "printedName": "Foundation.NSNotification.Name",
- "usr": "c:@T@NSNotificationName"
- }
- ],
- "declKind": "Var",
- "usr": "s:So18NSNotificationNamea13ApptentiveKitE22apptentiveEventEngagedABvpZ",
- "mangledName": "$sSo18NSNotificationNamea13ApptentiveKitE22apptentiveEventEngagedABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Name",
- "printedName": "Foundation.NSNotification.Name",
- "usr": "c:@T@NSNotificationName"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So18NSNotificationNamea13ApptentiveKitE22apptentiveEventEngagedABvgZ",
- "mangledName": "$sSo18NSNotificationNamea13ApptentiveKitE22apptentiveEventEngagedABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "isFromExtension": true,
- "accessorKind": "get"
- }
- ]
- }
- ],
- "declKind": "Struct",
- "usr": "c:@T@NSNotificationName",
- "moduleName": "Foundation",
- "declAttributes": [
- "SynthesizedProtocol",
- "SynthesizedProtocol",
- "SynthesizedProtocol",
- "SynthesizedProtocol",
- "SynthesizedProtocol",
- "SynthesizedProtocol",
- "Sendable"
- ],
- "isFromExtension": true,
- "isExternal": true,
- "conformances": [
- {
- "kind": "Conformance",
- "name": "_ObjectiveCBridgeable",
- "printedName": "_ObjectiveCBridgeable",
- "children": [
- {
- "kind": "TypeWitness",
- "name": "_ObjectiveCType",
- "printedName": "_ObjectiveCType",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "NSString",
- "printedName": "Foundation.NSString",
- "usr": "c:objc(cs)NSString"
- }
- ]
- }
- ],
- "usr": "s:s21_ObjectiveCBridgeableP",
- "mangledName": "$ss21_ObjectiveCBridgeableP"
- },
- {
- "kind": "Conformance",
- "name": "Hashable",
- "printedName": "Hashable",
- "usr": "s:SH",
- "mangledName": "$sSH"
- },
- {
- "kind": "Conformance",
- "name": "Equatable",
- "printedName": "Equatable",
- "usr": "s:SQ",
- "mangledName": "$sSQ"
- },
- {
- "kind": "Conformance",
- "name": "_SwiftNewtypeWrapper",
- "printedName": "_SwiftNewtypeWrapper",
- "usr": "s:s20_SwiftNewtypeWrapperP",
- "mangledName": "$ss20_SwiftNewtypeWrapperP"
- },
- {
- "kind": "Conformance",
- "name": "RawRepresentable",
- "printedName": "RawRepresentable",
- "children": [
- {
- "kind": "TypeWitness",
- "name": "RawValue",
- "printedName": "RawValue",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ]
- }
- ],
- "usr": "s:SY",
- "mangledName": "$sSY"
- },
- {
- "kind": "Conformance",
- "name": "Sendable",
- "printedName": "Sendable",
- "usr": "s:s8SendableP",
- "mangledName": "$ss8SendableP"
- },
- {
- "kind": "Conformance",
- "name": "_HasCustomAnyHashableRepresentation",
- "printedName": "_HasCustomAnyHashableRepresentation",
- "usr": "s:s35_HasCustomAnyHashableRepresentationP",
- "mangledName": "$ss35_HasCustomAnyHashableRepresentationP"
- }
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "UIButton",
- "printedName": "UIButton",
- "children": [
- {
- "kind": "Var",
- "name": "apptentivePillRadius",
- "printedName": "apptentivePillRadius",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "CGFloat",
- "printedName": "CoreGraphics.CGFloat",
- "usr": "s:14CoreFoundation7CGFloatV"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIButton(cpy)apptentivePillRadius",
- "mangledName": "$sSo8UIButtonC13ApptentiveKitE20apptentivePillRadius12CoreGraphics7CGFloatVvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "deprecated": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "Custom",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "Available"
- ],
- "isFromExtension": true,
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "CGFloat",
- "printedName": "CoreGraphics.CGFloat",
- "usr": "s:14CoreFoundation7CGFloatV"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIButton(cm)apptentivePillRadius",
- "mangledName": "$sSo8UIButtonC13ApptentiveKitE20apptentivePillRadius12CoreGraphics7CGFloatVvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveCornerRadius",
- "printedName": "apptentiveCornerRadius",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "CGFloat",
- "printedName": "CoreGraphics.CGFloat",
- "usr": "s:14CoreFoundation7CGFloatV"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIButton(cpy)apptentiveCornerRadius",
- "mangledName": "$sSo8UIButtonC13ApptentiveKitE22apptentiveCornerRadius12CoreGraphics7CGFloatVvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "deprecated": true,
- "declAttributes": [
- "Final",
- "Custom",
- "AccessControl",
- "ObjC",
- "Available"
- ],
- "isFromExtension": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "CGFloat",
- "printedName": "CoreGraphics.CGFloat",
- "usr": "s:14CoreFoundation7CGFloatV"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIButton(cm)apptentiveCornerRadius",
- "mangledName": "$sSo8UIButtonC13ApptentiveKitE22apptentiveCornerRadius12CoreGraphics7CGFloatVvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "CGFloat",
- "printedName": "CoreGraphics.CGFloat",
- "usr": "s:14CoreFoundation7CGFloatV"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIButton(cm)setApptentiveCornerRadius:",
- "mangledName": "$sSo8UIButtonC13ApptentiveKitE22apptentiveCornerRadius12CoreGraphics7CGFloatVvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So8UIButtonC13ApptentiveKitE22apptentiveCornerRadius14CoreFoundation7CGFloatVvMZ",
- "mangledName": "$sSo8UIButtonC13ApptentiveKitE22apptentiveCornerRadius12CoreGraphics7CGFloatVvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "deprecated": true,
- "implicit": true,
- "declAttributes": [
- "Available",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveClose",
- "printedName": "apptentiveClose",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "UIKit.UIButton?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIButton",
- "printedName": "UIKit.UIButton",
- "usr": "c:objc(cs)UIButton"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Var",
- "usr": "s:So8UIButtonC13ApptentiveKitE15apptentiveCloseABSgvpZ",
- "mangledName": "$sSo8UIButtonC13ApptentiveKitE15apptentiveCloseABSgvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "Custom",
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "UIKit.UIButton?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIButton",
- "printedName": "UIKit.UIButton",
- "usr": "c:objc(cs)UIButton"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So8UIButtonC13ApptentiveKitE15apptentiveCloseABSgvgZ",
- "mangledName": "$sSo8UIButtonC13ApptentiveKitE15apptentiveCloseABSgvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "UIKit.UIButton?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIButton",
- "printedName": "UIKit.UIButton",
- "usr": "c:objc(cs)UIButton"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So8UIButtonC13ApptentiveKitE15apptentiveCloseABSgvsZ",
- "mangledName": "$sSo8UIButtonC13ApptentiveKitE15apptentiveCloseABSgvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So8UIButtonC13ApptentiveKitE15apptentiveCloseABSgvMZ",
- "mangledName": "$sSo8UIButtonC13ApptentiveKitE15apptentiveCloseABSgvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "ApptentiveButtonStyle",
- "printedName": "ApptentiveButtonStyle",
- "children": [
- {
- "kind": "Var",
- "name": "pill",
- "printedName": "pill",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(UIKit.UIButton.ApptentiveButtonStyle.Type) -> UIKit.UIButton.ApptentiveButtonStyle",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveButtonStyle",
- "printedName": "UIKit.UIButton.ApptentiveButtonStyle",
- "usr": "s:So8UIButtonC13ApptentiveKitE0B11ButtonStyleO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "UIKit.UIButton.ApptentiveButtonStyle.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveButtonStyle",
- "printedName": "UIKit.UIButton.ApptentiveButtonStyle",
- "usr": "s:So8UIButtonC13ApptentiveKitE0B11ButtonStyleO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:So8UIButtonC13ApptentiveKitE0B11ButtonStyleO4pillyA2EmF",
- "mangledName": "$sSo8UIButtonC13ApptentiveKitE0B11ButtonStyleO4pillyA2EmF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "radius",
- "printedName": "radius",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(UIKit.UIButton.ApptentiveButtonStyle.Type) -> (CoreGraphics.CGFloat) -> UIKit.UIButton.ApptentiveButtonStyle",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(CoreGraphics.CGFloat) -> UIKit.UIButton.ApptentiveButtonStyle",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveButtonStyle",
- "printedName": "UIKit.UIButton.ApptentiveButtonStyle",
- "usr": "s:So8UIButtonC13ApptentiveKitE0B11ButtonStyleO"
- },
- {
- "kind": "TypeNominal",
- "name": "CGFloat",
- "printedName": "CoreGraphics.CGFloat",
- "usr": "s:14CoreFoundation7CGFloatV"
- }
- ]
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "UIKit.UIButton.ApptentiveButtonStyle.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveButtonStyle",
- "printedName": "UIKit.UIButton.ApptentiveButtonStyle",
- "usr": "s:So8UIButtonC13ApptentiveKitE0B11ButtonStyleO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:So8UIButtonC13ApptentiveKitE0B11ButtonStyleO6radiusyAE14CoreFoundation7CGFloatVcAEmF",
- "mangledName": "$sSo8UIButtonC13ApptentiveKitE0B11ButtonStyleO6radiusyAE12CoreGraphics7CGFloatVcAEmF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- }
- ],
- "declKind": "Enum",
- "usr": "s:So8UIButtonC13ApptentiveKitE0B11ButtonStyleO",
- "mangledName": "$sSo8UIButtonC13ApptentiveKitE0B11ButtonStyleO",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "isFromExtension": true
- },
- {
- "kind": "Var",
- "name": "apptentiveStyle",
- "printedName": "apptentiveStyle",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveButtonStyle",
- "printedName": "UIKit.UIButton.ApptentiveButtonStyle",
- "usr": "s:So8UIButtonC13ApptentiveKitE0B11ButtonStyleO"
- }
- ],
- "declKind": "Var",
- "usr": "s:So8UIButtonC13ApptentiveKitE15apptentiveStyleAbCE0b6ButtonE0OvpZ",
- "mangledName": "$sSo8UIButtonC13ApptentiveKitE15apptentiveStyleAbCE0b6ButtonE0OvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "Custom",
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveButtonStyle",
- "printedName": "UIKit.UIButton.ApptentiveButtonStyle",
- "usr": "s:So8UIButtonC13ApptentiveKitE0B11ButtonStyleO"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So8UIButtonC13ApptentiveKitE15apptentiveStyleAbCE0b6ButtonE0OvgZ",
- "mangledName": "$sSo8UIButtonC13ApptentiveKitE15apptentiveStyleAbCE0b6ButtonE0OvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "ApptentiveButtonStyle",
- "printedName": "UIKit.UIButton.ApptentiveButtonStyle",
- "usr": "s:So8UIButtonC13ApptentiveKitE0B11ButtonStyleO"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So8UIButtonC13ApptentiveKitE15apptentiveStyleAbCE0b6ButtonE0OvsZ",
- "mangledName": "$sSo8UIButtonC13ApptentiveKitE15apptentiveStyleAbCE0b6ButtonE0OvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So8UIButtonC13ApptentiveKitE15apptentiveStyleAbCE0b6ButtonE0OvMZ",
- "mangledName": "$sSo8UIButtonC13ApptentiveKitE15apptentiveStyleAbCE0b6ButtonE0OvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- }
- ],
- "declKind": "Class",
- "usr": "c:objc(cs)UIButton",
- "moduleName": "UIKit",
- "isOpen": true,
- "intro_iOS": "2.0",
- "objc_name": "UIButton",
- "declAttributes": [
- "Available",
- "ObjC",
- "NonSendable",
- "Custom",
- "Dynamic"
- ],
- "superclassUsr": "c:objc(cs)UIControl",
- "isExternal": true,
- "inheritsConvenienceInitializers": true,
- "superclassNames": [
- "UIKit.UIControl",
- "UIKit.UIView",
- "UIKit.UIResponder",
- "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": "Conformance",
- "name": "__DefaultCustomPlaygroundQuickLookable",
- "printedName": "__DefaultCustomPlaygroundQuickLookable",
- "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP",
- "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP"
- },
- {
- "kind": "Conformance",
- "name": "Sendable",
- "printedName": "Sendable",
- "usr": "s:s8SendableP",
- "mangledName": "$ss8SendableP"
- }
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "UITableView",
- "printedName": "UITableView",
- "children": [
- {
- "kind": "Var",
- "name": "apptentiveStyle",
- "printedName": "apptentiveStyle",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UITableView(cpy)apptentiveStyle",
- "mangledName": "$sSo11UITableViewC13ApptentiveKitE15apptentiveStyleSivpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "deprecated": true,
- "declAttributes": [
- "Final",
- "Custom",
- "AccessControl",
- "ObjC",
- "Available"
- ],
- "isFromExtension": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UITableView(cm)apptentiveStyle",
- "mangledName": "$sSo11UITableViewC13ApptentiveKitE15apptentiveStyleSivgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "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:@CM@ApptentiveKit@@objc(cs)UITableView(cm)setApptentiveStyle:",
- "mangledName": "$sSo11UITableViewC13ApptentiveKitE15apptentiveStyleSivsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So11UITableViewC13ApptentiveKitE15apptentiveStyleSivMZ",
- "mangledName": "$sSo11UITableViewC13ApptentiveKitE15apptentiveStyleSivMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "deprecated": true,
- "implicit": true,
- "declAttributes": [
- "Available",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveQuestionSeparatorHeight",
- "printedName": "apptentiveQuestionSeparatorHeight",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "CGFloat",
- "printedName": "CoreGraphics.CGFloat",
- "usr": "s:14CoreFoundation7CGFloatV"
- }
- ],
- "declKind": "Var",
- "usr": "s:So11UITableViewC13ApptentiveKitE33apptentiveQuestionSeparatorHeight14CoreFoundation7CGFloatVvpZ",
- "mangledName": "$sSo11UITableViewC13ApptentiveKitE33apptentiveQuestionSeparatorHeight12CoreGraphics7CGFloatVvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "Custom",
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "CGFloat",
- "printedName": "CoreGraphics.CGFloat",
- "usr": "s:14CoreFoundation7CGFloatV"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So11UITableViewC13ApptentiveKitE33apptentiveQuestionSeparatorHeight14CoreFoundation7CGFloatVvgZ",
- "mangledName": "$sSo11UITableViewC13ApptentiveKitE33apptentiveQuestionSeparatorHeight12CoreGraphics7CGFloatVvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "CGFloat",
- "printedName": "CoreGraphics.CGFloat",
- "usr": "s:14CoreFoundation7CGFloatV"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So11UITableViewC13ApptentiveKitE33apptentiveQuestionSeparatorHeight14CoreFoundation7CGFloatVvsZ",
- "mangledName": "$sSo11UITableViewC13ApptentiveKitE33apptentiveQuestionSeparatorHeight12CoreGraphics7CGFloatVvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So11UITableViewC13ApptentiveKitE33apptentiveQuestionSeparatorHeight14CoreFoundation7CGFloatVvMZ",
- "mangledName": "$sSo11UITableViewC13ApptentiveKitE33apptentiveQuestionSeparatorHeight12CoreGraphics7CGFloatVvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- }
- ],
- "declKind": "Class",
- "usr": "c:objc(cs)UITableView",
- "moduleName": "UIKit",
- "isOpen": true,
- "intro_iOS": "2.0",
- "objc_name": "UITableView",
- "declAttributes": [
- "Available",
- "ObjC",
- "NonSendable",
- "Custom",
- "Dynamic"
- ],
- "superclassUsr": "c:objc(cs)UIScrollView",
- "isExternal": true,
- "inheritsConvenienceInitializers": true,
- "superclassNames": [
- "UIKit.UIScrollView",
- "UIKit.UIView",
- "UIKit.UIResponder",
- "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": "Conformance",
- "name": "__DefaultCustomPlaygroundQuickLookable",
- "printedName": "__DefaultCustomPlaygroundQuickLookable",
- "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP",
- "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP"
- },
- {
- "kind": "Conformance",
- "name": "Sendable",
- "printedName": "Sendable",
- "usr": "s:s8SendableP",
- "mangledName": "$ss8SendableP"
- }
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "UIViewController",
- "printedName": "UIViewController",
- "children": [
- {
- "kind": "Var",
- "name": "apptentiveModalPresentationStyle",
- "printedName": "apptentiveModalPresentationStyle",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIModalPresentationStyle",
- "printedName": "UIKit.UIModalPresentationStyle",
- "usr": "c:@E@UIModalPresentationStyle"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIViewController(py)apptentiveModalPresentationStyle",
- "mangledName": "$sSo16UIViewControllerC13ApptentiveKitE32apptentiveModalPresentationStyleSo07UIModalgH0Vvp",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "declAttributes": [
- "Dynamic",
- "Custom",
- "AccessControl",
- "ObjC",
- "Available"
- ],
- "isFromExtension": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIModalPresentationStyle",
- "printedName": "UIKit.UIModalPresentationStyle",
- "usr": "c:@E@UIModalPresentationStyle"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIViewController(im)apptentiveModalPresentationStyle",
- "mangledName": "$sSo16UIViewControllerC13ApptentiveKitE32apptentiveModalPresentationStyleSo07UIModalgH0Vvg",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Dynamic",
- "ObjC"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIModalPresentationStyle",
- "printedName": "UIKit.UIModalPresentationStyle",
- "usr": "c:@E@UIModalPresentationStyle"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIViewController(im)setApptentiveModalPresentationStyle:",
- "mangledName": "$sSo16UIViewControllerC13ApptentiveKitE32apptentiveModalPresentationStyleSo07UIModalgH0Vvs",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Dynamic",
- "ObjC"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- }
- ]
- }
- ],
- "declKind": "Class",
- "usr": "c:objc(cs)UIViewController",
- "moduleName": "UIKit",
- "isOpen": true,
- "intro_iOS": "2.0",
- "objc_name": "UIViewController",
- "declAttributes": [
- "Available",
- "ObjC",
- "NonSendable",
- "Custom",
- "Dynamic"
- ],
- "superclassUsr": "c:objc(cs)UIResponder",
- "isExternal": true,
- "inheritsConvenienceInitializers": true,
- "superclassNames": [
- "UIKit.UIResponder",
- "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": "Conformance",
- "name": "Sendable",
- "printedName": "Sendable",
- "usr": "s:s8SendableP",
- "mangledName": "$ss8SendableP"
- }
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "Style",
- "printedName": "Style",
- "children": [
- {
- "kind": "Var",
- "name": "apptentive",
- "printedName": "apptentive",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Style",
- "printedName": "UIKit.UITableView.Style",
- "usr": "c:@E@UITableViewStyle"
- }
- ],
- "declKind": "Var",
- "usr": "s:So16UITableViewStyleV13ApptentiveKitE10apptentiveABvpZ",
- "mangledName": "$sSo16UITableViewStyleV13ApptentiveKitE10apptentiveABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Style",
- "printedName": "UIKit.UITableView.Style",
- "usr": "c:@E@UITableViewStyle"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So16UITableViewStyleV13ApptentiveKitE10apptentiveABvgZ",
- "mangledName": "$sSo16UITableViewStyleV13ApptentiveKitE10apptentiveABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Style",
- "printedName": "UIKit.UITableView.Style",
- "usr": "c:@E@UITableViewStyle"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So16UITableViewStyleV13ApptentiveKitE10apptentiveABvsZ",
- "mangledName": "$sSo16UITableViewStyleV13ApptentiveKitE10apptentiveABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So16UITableViewStyleV13ApptentiveKitE10apptentiveABvMZ",
- "mangledName": "$sSo16UITableViewStyleV13ApptentiveKitE10apptentiveABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- }
- ],
- "declKind": "Enum",
- "usr": "c:@E@UITableViewStyle",
- "moduleName": "UIKit",
- "objc_name": "UITableViewStyle",
- "declAttributes": [
- "SynthesizedProtocol",
- "ObjC",
- "SynthesizedProtocol",
- "Sendable",
- "NonSendable",
- "Dynamic"
- ],
- "isFromExtension": true,
- "enumRawTypeName": "Int",
- "isExternal": true,
- "conformances": [
- {
- "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": "Sendable",
- "printedName": "Sendable",
- "usr": "s:s8SendableP",
- "mangledName": "$ss8SendableP"
- },
- {
- "kind": "Conformance",
- "name": "Equatable",
- "printedName": "Equatable",
- "usr": "s:SQ",
- "mangledName": "$sSQ"
- },
- {
- "kind": "Conformance",
- "name": "Hashable",
- "printedName": "Hashable",
- "usr": "s:SH",
- "mangledName": "$sSH"
- }
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "UIModalPresentationStyle",
- "printedName": "UIModalPresentationStyle",
- "children": [
- {
- "kind": "Var",
- "name": "apptentive",
- "printedName": "apptentive",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIModalPresentationStyle",
- "printedName": "UIKit.UIModalPresentationStyle",
- "usr": "c:@E@UIModalPresentationStyle"
- }
- ],
- "declKind": "Var",
- "usr": "s:So24UIModalPresentationStyleV13ApptentiveKitE10apptentiveABvpZ",
- "mangledName": "$sSo24UIModalPresentationStyleV13ApptentiveKitE10apptentiveABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIModalPresentationStyle",
- "printedName": "UIKit.UIModalPresentationStyle",
- "usr": "c:@E@UIModalPresentationStyle"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So24UIModalPresentationStyleV13ApptentiveKitE10apptentiveABvgZ",
- "mangledName": "$sSo24UIModalPresentationStyleV13ApptentiveKitE10apptentiveABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIModalPresentationStyle",
- "printedName": "UIKit.UIModalPresentationStyle",
- "usr": "c:@E@UIModalPresentationStyle"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So24UIModalPresentationStyleV13ApptentiveKitE10apptentiveABvsZ",
- "mangledName": "$sSo24UIModalPresentationStyleV13ApptentiveKitE10apptentiveABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So24UIModalPresentationStyleV13ApptentiveKitE10apptentiveABvMZ",
- "mangledName": "$sSo24UIModalPresentationStyleV13ApptentiveKitE10apptentiveABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- }
- ],
- "declKind": "Enum",
- "usr": "c:@E@UIModalPresentationStyle",
- "moduleName": "UIKit",
- "objc_name": "UIModalPresentationStyle",
- "declAttributes": [
- "SynthesizedProtocol",
- "ObjC",
- "SynthesizedProtocol",
- "Sendable",
- "NonSendable",
- "Dynamic"
- ],
- "enumRawTypeName": "Int",
- "isExternal": true,
- "conformances": [
- {
- "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": "Sendable",
- "printedName": "Sendable",
- "usr": "s:s8SendableP",
- "mangledName": "$ss8SendableP"
- },
- {
- "kind": "Conformance",
- "name": "Equatable",
- "printedName": "Equatable",
- "usr": "s:SQ",
- "mangledName": "$sSQ"
- },
- {
- "kind": "Conformance",
- "name": "Hashable",
- "printedName": "Hashable",
- "usr": "s:SH",
- "mangledName": "$sSH"
- }
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "UIBarButtonItem",
- "printedName": "UIBarButtonItem",
- "children": [
- {
- "kind": "Var",
- "name": "apptentiveClose",
- "printedName": "apptentiveClose",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIBarButtonItem",
- "printedName": "UIKit.UIBarButtonItem",
- "usr": "c:objc(cs)UIBarButtonItem"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIBarButtonItem(cpy)apptentiveClose",
- "mangledName": "$sSo15UIBarButtonItemC13ApptentiveKitE15apptentiveCloseABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "Custom",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIBarButtonItem",
- "printedName": "UIKit.UIBarButtonItem",
- "usr": "c:objc(cs)UIBarButtonItem"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIBarButtonItem(cm)apptentiveClose",
- "mangledName": "$sSo15UIBarButtonItemC13ApptentiveKitE15apptentiveCloseABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIBarButtonItem",
- "printedName": "UIKit.UIBarButtonItem",
- "usr": "c:objc(cs)UIBarButtonItem"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIBarButtonItem(cm)setApptentiveClose:",
- "mangledName": "$sSo15UIBarButtonItemC13ApptentiveKitE15apptentiveCloseABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So15UIBarButtonItemC13ApptentiveKitE15apptentiveCloseABvMZ",
- "mangledName": "$sSo15UIBarButtonItemC13ApptentiveKitE15apptentiveCloseABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveProfileEdit",
- "printedName": "apptentiveProfileEdit",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIBarButtonItem",
- "printedName": "UIKit.UIBarButtonItem",
- "usr": "c:objc(cs)UIBarButtonItem"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIBarButtonItem(cpy)apptentiveProfileEdit",
- "mangledName": "$sSo15UIBarButtonItemC13ApptentiveKitE21apptentiveProfileEditABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "Custom",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIBarButtonItem",
- "printedName": "UIKit.UIBarButtonItem",
- "usr": "c:objc(cs)UIBarButtonItem"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIBarButtonItem(cm)apptentiveProfileEdit",
- "mangledName": "$sSo15UIBarButtonItemC13ApptentiveKitE21apptentiveProfileEditABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIBarButtonItem",
- "printedName": "UIKit.UIBarButtonItem",
- "usr": "c:objc(cs)UIBarButtonItem"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIBarButtonItem(cm)setApptentiveProfileEdit:",
- "mangledName": "$sSo15UIBarButtonItemC13ApptentiveKitE21apptentiveProfileEditABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So15UIBarButtonItemC13ApptentiveKitE21apptentiveProfileEditABvMZ",
- "mangledName": "$sSo15UIBarButtonItemC13ApptentiveKitE21apptentiveProfileEditABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- }
- ],
- "declKind": "Class",
- "usr": "c:objc(cs)UIBarButtonItem",
- "moduleName": "UIKit",
- "isOpen": true,
- "intro_iOS": "2.0",
- "objc_name": "UIBarButtonItem",
- "declAttributes": [
- "Available",
- "ObjC",
- "NonSendable",
- "Custom",
- "Dynamic"
- ],
- "superclassUsr": "c:objc(cs)UIBarItem",
- "isExternal": true,
- "inheritsConvenienceInitializers": true,
- "superclassNames": [
- "UIKit.UIBarItem",
- "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": "Var",
- "name": "apptentiveMessageAttachmentButton",
- "printedName": "apptentiveMessageAttachmentButton",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "UIKit.UIImage?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIImage",
- "printedName": "UIKit.UIImage",
- "usr": "c:objc(cs)UIImage"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cpy)apptentiveMessageAttachmentButton",
- "mangledName": "$sSo7UIImageC13ApptentiveKitE33apptentiveMessageAttachmentButtonABSgvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "UIKit.UIImage?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIImage",
- "printedName": "UIKit.UIImage",
- "usr": "c:objc(cs)UIImage"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cm)apptentiveMessageAttachmentButton",
- "mangledName": "$sSo7UIImageC13ApptentiveKitE33apptentiveMessageAttachmentButtonABSgvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "UIKit.UIImage?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIImage",
- "printedName": "UIKit.UIImage",
- "usr": "c:objc(cs)UIImage"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cm)setApptentiveMessageAttachmentButton:",
- "mangledName": "$sSo7UIImageC13ApptentiveKitE33apptentiveMessageAttachmentButtonABSgvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So7UIImageC13ApptentiveKitE33apptentiveMessageAttachmentButtonABSgvMZ",
- "mangledName": "$sSo7UIImageC13ApptentiveKitE33apptentiveMessageAttachmentButtonABSgvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveMessageSendButton",
- "printedName": "apptentiveMessageSendButton",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "UIKit.UIImage?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIImage",
- "printedName": "UIKit.UIImage",
- "usr": "c:objc(cs)UIImage"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cpy)apptentiveMessageSendButton",
- "mangledName": "$sSo7UIImageC13ApptentiveKitE27apptentiveMessageSendButtonABSgvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "UIKit.UIImage?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIImage",
- "printedName": "UIKit.UIImage",
- "usr": "c:objc(cs)UIImage"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cm)apptentiveMessageSendButton",
- "mangledName": "$sSo7UIImageC13ApptentiveKitE27apptentiveMessageSendButtonABSgvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "UIKit.UIImage?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIImage",
- "printedName": "UIKit.UIImage",
- "usr": "c:objc(cs)UIImage"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cm)setApptentiveMessageSendButton:",
- "mangledName": "$sSo7UIImageC13ApptentiveKitE27apptentiveMessageSendButtonABSgvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So7UIImageC13ApptentiveKitE27apptentiveMessageSendButtonABSgvMZ",
- "mangledName": "$sSo7UIImageC13ApptentiveKitE27apptentiveMessageSendButtonABSgvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveSentMessageBubble",
- "printedName": "apptentiveSentMessageBubble",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "UIKit.UIImage?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIImage",
- "printedName": "UIKit.UIImage",
- "usr": "c:objc(cs)UIImage"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cpy)apptentiveSentMessageBubble",
- "mangledName": "$sSo7UIImageC13ApptentiveKitE27apptentiveSentMessageBubbleABSgvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "UIKit.UIImage?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIImage",
- "printedName": "UIKit.UIImage",
- "usr": "c:objc(cs)UIImage"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cm)apptentiveSentMessageBubble",
- "mangledName": "$sSo7UIImageC13ApptentiveKitE27apptentiveSentMessageBubbleABSgvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "UIKit.UIImage?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIImage",
- "printedName": "UIKit.UIImage",
- "usr": "c:objc(cs)UIImage"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cm)setApptentiveSentMessageBubble:",
- "mangledName": "$sSo7UIImageC13ApptentiveKitE27apptentiveSentMessageBubbleABSgvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So7UIImageC13ApptentiveKitE27apptentiveSentMessageBubbleABSgvMZ",
- "mangledName": "$sSo7UIImageC13ApptentiveKitE27apptentiveSentMessageBubbleABSgvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveReceivedMessageBubble",
- "printedName": "apptentiveReceivedMessageBubble",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "UIKit.UIImage?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIImage",
- "printedName": "UIKit.UIImage",
- "usr": "c:objc(cs)UIImage"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cpy)apptentiveReceivedMessageBubble",
- "mangledName": "$sSo7UIImageC13ApptentiveKitE31apptentiveReceivedMessageBubbleABSgvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "UIKit.UIImage?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIImage",
- "printedName": "UIKit.UIImage",
- "usr": "c:objc(cs)UIImage"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cm)apptentiveReceivedMessageBubble",
- "mangledName": "$sSo7UIImageC13ApptentiveKitE31apptentiveReceivedMessageBubbleABSgvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "UIKit.UIImage?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIImage",
- "printedName": "UIKit.UIImage",
- "usr": "c:objc(cs)UIImage"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cm)setApptentiveReceivedMessageBubble:",
- "mangledName": "$sSo7UIImageC13ApptentiveKitE31apptentiveReceivedMessageBubbleABSgvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So7UIImageC13ApptentiveKitE31apptentiveReceivedMessageBubbleABSgvMZ",
- "mangledName": "$sSo7UIImageC13ApptentiveKitE31apptentiveReceivedMessageBubbleABSgvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveAttachmentPlaceholder",
- "printedName": "apptentiveAttachmentPlaceholder",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "UIKit.UIImage?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIImage",
- "printedName": "UIKit.UIImage",
- "usr": "c:objc(cs)UIImage"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cpy)apptentiveAttachmentPlaceholder",
- "mangledName": "$sSo7UIImageC13ApptentiveKitE31apptentiveAttachmentPlaceholderABSgvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "UIKit.UIImage?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIImage",
- "printedName": "UIKit.UIImage",
- "usr": "c:objc(cs)UIImage"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cm)apptentiveAttachmentPlaceholder",
- "mangledName": "$sSo7UIImageC13ApptentiveKitE31apptentiveAttachmentPlaceholderABSgvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "UIKit.UIImage?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIImage",
- "printedName": "UIKit.UIImage",
- "usr": "c:objc(cs)UIImage"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cm)setApptentiveAttachmentPlaceholder:",
- "mangledName": "$sSo7UIImageC13ApptentiveKitE31apptentiveAttachmentPlaceholderABSgvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So7UIImageC13ApptentiveKitE31apptentiveAttachmentPlaceholderABSgvMZ",
- "mangledName": "$sSo7UIImageC13ApptentiveKitE31apptentiveAttachmentPlaceholderABSgvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveAttachmentRemoveButton",
- "printedName": "apptentiveAttachmentRemoveButton",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "UIKit.UIImage?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIImage",
- "printedName": "UIKit.UIImage",
- "usr": "c:objc(cs)UIImage"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cpy)apptentiveAttachmentRemoveButton",
- "mangledName": "$sSo7UIImageC13ApptentiveKitE32apptentiveAttachmentRemoveButtonABSgvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "UIKit.UIImage?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIImage",
- "printedName": "UIKit.UIImage",
- "usr": "c:objc(cs)UIImage"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cm)apptentiveAttachmentRemoveButton",
- "mangledName": "$sSo7UIImageC13ApptentiveKitE32apptentiveAttachmentRemoveButtonABSgvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "UIKit.UIImage?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIImage",
- "printedName": "UIKit.UIImage",
- "usr": "c:objc(cs)UIImage"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cm)setApptentiveAttachmentRemoveButton:",
- "mangledName": "$sSo7UIImageC13ApptentiveKitE32apptentiveAttachmentRemoveButtonABSgvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So7UIImageC13ApptentiveKitE32apptentiveAttachmentRemoveButtonABSgvMZ",
- "mangledName": "$sSo7UIImageC13ApptentiveKitE32apptentiveAttachmentRemoveButtonABSgvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveHeaderLogo",
- "printedName": "apptentiveHeaderLogo",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "UIKit.UIImage?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIImage",
- "printedName": "UIKit.UIImage",
- "usr": "c:objc(cs)UIImage"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cpy)apptentiveHeaderLogo",
- "mangledName": "$sSo7UIImageC13ApptentiveKitE20apptentiveHeaderLogoABSgvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "UIKit.UIImage?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIImage",
- "printedName": "UIKit.UIImage",
- "usr": "c:objc(cs)UIImage"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cm)apptentiveHeaderLogo",
- "mangledName": "$sSo7UIImageC13ApptentiveKitE20apptentiveHeaderLogoABSgvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "UIKit.UIImage?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIImage",
- "printedName": "UIKit.UIImage",
- "usr": "c:objc(cs)UIImage"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cm)setApptentiveHeaderLogo:",
- "mangledName": "$sSo7UIImageC13ApptentiveKitE20apptentiveHeaderLogoABSgvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So7UIImageC13ApptentiveKitE20apptentiveHeaderLogoABSgvMZ",
- "mangledName": "$sSo7UIImageC13ApptentiveKitE20apptentiveHeaderLogoABSgvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveRadioButton",
- "printedName": "apptentiveRadioButton",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "UIKit.UIImage?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIImage",
- "printedName": "UIKit.UIImage",
- "usr": "c:objc(cs)UIImage"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cpy)apptentiveRadioButton",
- "mangledName": "$sSo7UIImageC13ApptentiveKitE21apptentiveRadioButtonABSgvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "UIKit.UIImage?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIImage",
- "printedName": "UIKit.UIImage",
- "usr": "c:objc(cs)UIImage"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cm)apptentiveRadioButton",
- "mangledName": "$sSo7UIImageC13ApptentiveKitE21apptentiveRadioButtonABSgvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "UIKit.UIImage?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIImage",
- "printedName": "UIKit.UIImage",
- "usr": "c:objc(cs)UIImage"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cm)setApptentiveRadioButton:",
- "mangledName": "$sSo7UIImageC13ApptentiveKitE21apptentiveRadioButtonABSgvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So7UIImageC13ApptentiveKitE21apptentiveRadioButtonABSgvMZ",
- "mangledName": "$sSo7UIImageC13ApptentiveKitE21apptentiveRadioButtonABSgvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveCheckbox",
- "printedName": "apptentiveCheckbox",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "UIKit.UIImage?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIImage",
- "printedName": "UIKit.UIImage",
- "usr": "c:objc(cs)UIImage"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cpy)apptentiveCheckbox",
- "mangledName": "$sSo7UIImageC13ApptentiveKitE18apptentiveCheckboxABSgvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "UIKit.UIImage?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIImage",
- "printedName": "UIKit.UIImage",
- "usr": "c:objc(cs)UIImage"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cm)apptentiveCheckbox",
- "mangledName": "$sSo7UIImageC13ApptentiveKitE18apptentiveCheckboxABSgvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "UIKit.UIImage?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIImage",
- "printedName": "UIKit.UIImage",
- "usr": "c:objc(cs)UIImage"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cm)setApptentiveCheckbox:",
- "mangledName": "$sSo7UIImageC13ApptentiveKitE18apptentiveCheckboxABSgvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So7UIImageC13ApptentiveKitE18apptentiveCheckboxABSgvMZ",
- "mangledName": "$sSo7UIImageC13ApptentiveKitE18apptentiveCheckboxABSgvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveRadioButtonSelected",
- "printedName": "apptentiveRadioButtonSelected",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "UIKit.UIImage?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIImage",
- "printedName": "UIKit.UIImage",
- "usr": "c:objc(cs)UIImage"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cpy)apptentiveRadioButtonSelected",
- "mangledName": "$sSo7UIImageC13ApptentiveKitE29apptentiveRadioButtonSelectedABSgvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "UIKit.UIImage?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIImage",
- "printedName": "UIKit.UIImage",
- "usr": "c:objc(cs)UIImage"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cm)apptentiveRadioButtonSelected",
- "mangledName": "$sSo7UIImageC13ApptentiveKitE29apptentiveRadioButtonSelectedABSgvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "UIKit.UIImage?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIImage",
- "printedName": "UIKit.UIImage",
- "usr": "c:objc(cs)UIImage"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cm)setApptentiveRadioButtonSelected:",
- "mangledName": "$sSo7UIImageC13ApptentiveKitE29apptentiveRadioButtonSelectedABSgvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So7UIImageC13ApptentiveKitE29apptentiveRadioButtonSelectedABSgvMZ",
- "mangledName": "$sSo7UIImageC13ApptentiveKitE29apptentiveRadioButtonSelectedABSgvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveCheckboxSelected",
- "printedName": "apptentiveCheckboxSelected",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "UIKit.UIImage?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIImage",
- "printedName": "UIKit.UIImage",
- "usr": "c:objc(cs)UIImage"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cpy)apptentiveCheckboxSelected",
- "mangledName": "$sSo7UIImageC13ApptentiveKitE26apptentiveCheckboxSelectedABSgvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "UIKit.UIImage?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIImage",
- "printedName": "UIKit.UIImage",
- "usr": "c:objc(cs)UIImage"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cm)apptentiveCheckboxSelected",
- "mangledName": "$sSo7UIImageC13ApptentiveKitE26apptentiveCheckboxSelectedABSgvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "UIKit.UIImage?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIImage",
- "printedName": "UIKit.UIImage",
- "usr": "c:objc(cs)UIImage"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cm)setApptentiveCheckboxSelected:",
- "mangledName": "$sSo7UIImageC13ApptentiveKitE26apptentiveCheckboxSelectedABSgvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So7UIImageC13ApptentiveKitE26apptentiveCheckboxSelectedABSgvMZ",
- "mangledName": "$sSo7UIImageC13ApptentiveKitE26apptentiveCheckboxSelectedABSgvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- }
- ],
- "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": "UIColor",
- "printedName": "UIColor",
- "children": [
- {
- "kind": "Var",
- "name": "apptentiveMessageCenterTextInputBackground",
- "printedName": "apptentiveMessageCenterTextInputBackground",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveMessageCenterTextInputBackground",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE42apptentiveMessageCenterTextInputBackgroundABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveMessageCenterTextInputBackground",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE42apptentiveMessageCenterTextInputBackgroundABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveMessageCenterTextInputBackground:",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE42apptentiveMessageCenterTextInputBackgroundABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So7UIColorC13ApptentiveKitE42apptentiveMessageCenterTextInputBackgroundABvMZ",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE42apptentiveMessageCenterTextInputBackgroundABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveMessageCenterTextInputPlaceholder",
- "printedName": "apptentiveMessageCenterTextInputPlaceholder",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveMessageCenterTextInputPlaceholder",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE43apptentiveMessageCenterTextInputPlaceholderABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveMessageCenterTextInputPlaceholder",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE43apptentiveMessageCenterTextInputPlaceholderABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveMessageCenterTextInputPlaceholder:",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE43apptentiveMessageCenterTextInputPlaceholderABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So7UIColorC13ApptentiveKitE43apptentiveMessageCenterTextInputPlaceholderABvMZ",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE43apptentiveMessageCenterTextInputPlaceholderABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveMessageTextViewPlaceholder",
- "printedName": "apptentiveMessageTextViewPlaceholder",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveMessageTextViewPlaceholder",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE36apptentiveMessageTextViewPlaceholderABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "deprecated": true,
- "declAttributes": [
- "Final",
- "AccessControl",
- "ObjC",
- "Available",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveMessageTextViewPlaceholder",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE36apptentiveMessageTextViewPlaceholderABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveMessageTextViewPlaceholder:",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE36apptentiveMessageTextViewPlaceholderABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So7UIColorC13ApptentiveKitE36apptentiveMessageTextViewPlaceholderABvMZ",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE36apptentiveMessageTextViewPlaceholderABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "deprecated": true,
- "implicit": true,
- "declAttributes": [
- "Available",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveMessageCenterTextInput",
- "printedName": "apptentiveMessageCenterTextInput",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveMessageCenterTextInput",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE32apptentiveMessageCenterTextInputABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveMessageCenterTextInput",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE32apptentiveMessageCenterTextInputABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveMessageCenterTextInput:",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE32apptentiveMessageCenterTextInputABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So7UIColorC13ApptentiveKitE32apptentiveMessageCenterTextInputABvMZ",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE32apptentiveMessageCenterTextInputABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentivetextInputTint",
- "printedName": "apptentivetextInputTint",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentivetextInputTint",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE23apptentivetextInputTintABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentivetextInputTint",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE23apptentivetextInputTintABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentivetextInputTint:",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE23apptentivetextInputTintABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So7UIColorC13ApptentiveKitE23apptentivetextInputTintABvMZ",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE23apptentivetextInputTintABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveMessageCenterTextInputBorder",
- "printedName": "apptentiveMessageCenterTextInputBorder",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveMessageCenterTextInputBorder",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE38apptentiveMessageCenterTextInputBorderABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveMessageCenterTextInputBorder",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE38apptentiveMessageCenterTextInputBorderABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveMessageCenterTextInputBorder:",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE38apptentiveMessageCenterTextInputBorderABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So7UIColorC13ApptentiveKitE38apptentiveMessageCenterTextInputBorderABvMZ",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE38apptentiveMessageCenterTextInputBorderABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveMessageCenterTextViewBorder",
- "printedName": "apptentiveMessageCenterTextViewBorder",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveMessageCenterTextViewBorder",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE37apptentiveMessageCenterTextViewBorderABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "deprecated": true,
- "declAttributes": [
- "Final",
- "AccessControl",
- "ObjC",
- "Available",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveMessageCenterTextViewBorder",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE37apptentiveMessageCenterTextViewBorderABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveMessageCenterTextViewBorder:",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE37apptentiveMessageCenterTextViewBorderABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So7UIColorC13ApptentiveKitE37apptentiveMessageCenterTextViewBorderABvMZ",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE37apptentiveMessageCenterTextViewBorderABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "deprecated": true,
- "implicit": true,
- "declAttributes": [
- "Available",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveMessageCenterAttachmentButton",
- "printedName": "apptentiveMessageCenterAttachmentButton",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveMessageCenterAttachmentButton",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE39apptentiveMessageCenterAttachmentButtonABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveMessageCenterAttachmentButton",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE39apptentiveMessageCenterAttachmentButtonABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveMessageCenterAttachmentButton:",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE39apptentiveMessageCenterAttachmentButtonABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So7UIColorC13ApptentiveKitE39apptentiveMessageCenterAttachmentButtonABvMZ",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE39apptentiveMessageCenterAttachmentButtonABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveMessageTextInputPlaceholder",
- "printedName": "apptentiveMessageTextInputPlaceholder",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveMessageTextInputPlaceholder",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE37apptentiveMessageTextInputPlaceholderABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveMessageTextInputPlaceholder",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE37apptentiveMessageTextInputPlaceholderABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveMessageTextInputPlaceholder:",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE37apptentiveMessageTextInputPlaceholderABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So7UIColorC13ApptentiveKitE37apptentiveMessageTextInputPlaceholderABvMZ",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE37apptentiveMessageTextInputPlaceholderABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveMessageCenterStatus",
- "printedName": "apptentiveMessageCenterStatus",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveMessageCenterStatus",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE29apptentiveMessageCenterStatusABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveMessageCenterStatus",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE29apptentiveMessageCenterStatusABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveMessageCenterStatus:",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE29apptentiveMessageCenterStatusABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So7UIColorC13ApptentiveKitE29apptentiveMessageCenterStatusABvMZ",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE29apptentiveMessageCenterStatusABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveMessageCenterGreetingBody",
- "printedName": "apptentiveMessageCenterGreetingBody",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveMessageCenterGreetingBody",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE35apptentiveMessageCenterGreetingBodyABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveMessageCenterGreetingBody",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE35apptentiveMessageCenterGreetingBodyABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveMessageCenterGreetingBody:",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE35apptentiveMessageCenterGreetingBodyABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So7UIColorC13ApptentiveKitE35apptentiveMessageCenterGreetingBodyABvMZ",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE35apptentiveMessageCenterGreetingBodyABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveMessageCenterGreetingTitle",
- "printedName": "apptentiveMessageCenterGreetingTitle",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveMessageCenterGreetingTitle",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE36apptentiveMessageCenterGreetingTitleABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveMessageCenterGreetingTitle",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE36apptentiveMessageCenterGreetingTitleABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveMessageCenterGreetingTitle:",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE36apptentiveMessageCenterGreetingTitleABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So7UIColorC13ApptentiveKitE36apptentiveMessageCenterGreetingTitleABvMZ",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE36apptentiveMessageCenterGreetingTitleABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveMessageBubbleInbound",
- "printedName": "apptentiveMessageBubbleInbound",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveMessageBubbleInbound",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE30apptentiveMessageBubbleInboundABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveMessageBubbleInbound",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE30apptentiveMessageBubbleInboundABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveMessageBubbleInbound:",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE30apptentiveMessageBubbleInboundABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So7UIColorC13ApptentiveKitE30apptentiveMessageBubbleInboundABvMZ",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE30apptentiveMessageBubbleInboundABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveMessageBubbleOutbound",
- "printedName": "apptentiveMessageBubbleOutbound",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveMessageBubbleOutbound",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE31apptentiveMessageBubbleOutboundABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveMessageBubbleOutbound",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE31apptentiveMessageBubbleOutboundABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveMessageBubbleOutbound:",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE31apptentiveMessageBubbleOutboundABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So7UIColorC13ApptentiveKitE31apptentiveMessageBubbleOutboundABvMZ",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE31apptentiveMessageBubbleOutboundABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveMessageLabelInbound",
- "printedName": "apptentiveMessageLabelInbound",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveMessageLabelInbound",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE29apptentiveMessageLabelInboundABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveMessageLabelInbound",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE29apptentiveMessageLabelInboundABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveMessageLabelInbound:",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE29apptentiveMessageLabelInboundABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So7UIColorC13ApptentiveKitE29apptentiveMessageLabelInboundABvMZ",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE29apptentiveMessageLabelInboundABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveMessageLabelOutbound",
- "printedName": "apptentiveMessageLabelOutbound",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveMessageLabelOutbound",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE30apptentiveMessageLabelOutboundABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveMessageLabelOutbound",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE30apptentiveMessageLabelOutboundABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveMessageLabelOutbound:",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE30apptentiveMessageLabelOutboundABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So7UIColorC13ApptentiveKitE30apptentiveMessageLabelOutboundABvMZ",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE30apptentiveMessageLabelOutboundABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveQuestionLabel",
- "printedName": "apptentiveQuestionLabel",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveQuestionLabel",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE23apptentiveQuestionLabelABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveQuestionLabel",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE23apptentiveQuestionLabelABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveQuestionLabel:",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE23apptentiveQuestionLabelABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So7UIColorC13ApptentiveKitE23apptentiveQuestionLabelABvMZ",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE23apptentiveQuestionLabelABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveInstructionsLabel",
- "printedName": "apptentiveInstructionsLabel",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveInstructionsLabel",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE27apptentiveInstructionsLabelABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveInstructionsLabel",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE27apptentiveInstructionsLabelABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveInstructionsLabel:",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE27apptentiveInstructionsLabelABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So7UIColorC13ApptentiveKitE27apptentiveInstructionsLabelABvMZ",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE27apptentiveInstructionsLabelABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveChoiceLabel",
- "printedName": "apptentiveChoiceLabel",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveChoiceLabel",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE21apptentiveChoiceLabelABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveChoiceLabel",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE21apptentiveChoiceLabelABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveChoiceLabel:",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE21apptentiveChoiceLabelABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So7UIColorC13ApptentiveKitE21apptentiveChoiceLabelABvMZ",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE21apptentiveChoiceLabelABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveError",
- "printedName": "apptentiveError",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveError",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE15apptentiveErrorABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveError",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE15apptentiveErrorABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveError:",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE15apptentiveErrorABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So7UIColorC13ApptentiveKitE15apptentiveErrorABvMZ",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE15apptentiveErrorABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveSecondaryLabel",
- "printedName": "apptentiveSecondaryLabel",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveSecondaryLabel",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE24apptentiveSecondaryLabelABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveSecondaryLabel",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE24apptentiveSecondaryLabelABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveSecondaryLabel:",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE24apptentiveSecondaryLabelABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So7UIColorC13ApptentiveKitE24apptentiveSecondaryLabelABvMZ",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE24apptentiveSecondaryLabelABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveRangeControlBorder",
- "printedName": "apptentiveRangeControlBorder",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveRangeControlBorder",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE28apptentiveRangeControlBorderABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveRangeControlBorder",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE28apptentiveRangeControlBorderABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveRangeControlBorder:",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE28apptentiveRangeControlBorderABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So7UIColorC13ApptentiveKitE28apptentiveRangeControlBorderABvMZ",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE28apptentiveRangeControlBorderABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveSurveyIntroduction",
- "printedName": "apptentiveSurveyIntroduction",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveSurveyIntroduction",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE28apptentiveSurveyIntroductionABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveSurveyIntroduction",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE28apptentiveSurveyIntroductionABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveSurveyIntroduction:",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE28apptentiveSurveyIntroductionABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So7UIColorC13ApptentiveKitE28apptentiveSurveyIntroductionABvMZ",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE28apptentiveSurveyIntroductionABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveTextInputBorder",
- "printedName": "apptentiveTextInputBorder",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveTextInputBorder",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE25apptentiveTextInputBorderABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveTextInputBorder",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE25apptentiveTextInputBorderABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveTextInputBorder:",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE25apptentiveTextInputBorderABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So7UIColorC13ApptentiveKitE25apptentiveTextInputBorderABvMZ",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE25apptentiveTextInputBorderABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveTextInputBackground",
- "printedName": "apptentiveTextInputBackground",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveTextInputBackground",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE29apptentiveTextInputBackgroundABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveTextInputBackground",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE29apptentiveTextInputBackgroundABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveTextInputBackground:",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE29apptentiveTextInputBackgroundABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So7UIColorC13ApptentiveKitE29apptentiveTextInputBackgroundABvMZ",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE29apptentiveTextInputBackgroundABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveTextInput",
- "printedName": "apptentiveTextInput",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveTextInput",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE19apptentiveTextInputABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveTextInput",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE19apptentiveTextInputABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveTextInput:",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE19apptentiveTextInputABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So7UIColorC13ApptentiveKitE19apptentiveTextInputABvMZ",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE19apptentiveTextInputABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveTextInputPlaceholder",
- "printedName": "apptentiveTextInputPlaceholder",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveTextInputPlaceholder",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE30apptentiveTextInputPlaceholderABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveTextInputPlaceholder",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE30apptentiveTextInputPlaceholderABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveTextInputPlaceholder:",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE30apptentiveTextInputPlaceholderABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So7UIColorC13ApptentiveKitE30apptentiveTextInputPlaceholderABvMZ",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE30apptentiveTextInputPlaceholderABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveMinMaxLabel",
- "printedName": "apptentiveMinMaxLabel",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveMinMaxLabel",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE21apptentiveMinMaxLabelABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveMinMaxLabel",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE21apptentiveMinMaxLabelABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveMinMaxLabel:",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE21apptentiveMinMaxLabelABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So7UIColorC13ApptentiveKitE21apptentiveMinMaxLabelABvMZ",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE21apptentiveMinMaxLabelABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveGroupedBackground",
- "printedName": "apptentiveGroupedBackground",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveGroupedBackground",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE27apptentiveGroupedBackgroundABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveGroupedBackground",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE27apptentiveGroupedBackgroundABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveGroupedBackground:",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE27apptentiveGroupedBackgroundABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So7UIColorC13ApptentiveKitE27apptentiveGroupedBackgroundABvMZ",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE27apptentiveGroupedBackgroundABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveSecondaryGroupedBackground",
- "printedName": "apptentiveSecondaryGroupedBackground",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveSecondaryGroupedBackground",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE36apptentiveSecondaryGroupedBackgroundABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveSecondaryGroupedBackground",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE36apptentiveSecondaryGroupedBackgroundABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveSecondaryGroupedBackground:",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE36apptentiveSecondaryGroupedBackgroundABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So7UIColorC13ApptentiveKitE36apptentiveSecondaryGroupedBackgroundABvMZ",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE36apptentiveSecondaryGroupedBackgroundABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveSeparator",
- "printedName": "apptentiveSeparator",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveSeparator",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE19apptentiveSeparatorABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveSeparator",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE19apptentiveSeparatorABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveSeparator:",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE19apptentiveSeparatorABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So7UIColorC13ApptentiveKitE19apptentiveSeparatorABvMZ",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE19apptentiveSeparatorABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveImageSelected",
- "printedName": "apptentiveImageSelected",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveImageSelected",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE23apptentiveImageSelectedABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveImageSelected",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE23apptentiveImageSelectedABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveImageSelected:",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE23apptentiveImageSelectedABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So7UIColorC13ApptentiveKitE23apptentiveImageSelectedABvMZ",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE23apptentiveImageSelectedABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveImageNotSelected",
- "printedName": "apptentiveImageNotSelected",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveImageNotSelected",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE26apptentiveImageNotSelectedABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveImageNotSelected",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE26apptentiveImageNotSelectedABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveImageNotSelected:",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE26apptentiveImageNotSelectedABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So7UIColorC13ApptentiveKitE26apptentiveImageNotSelectedABvMZ",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE26apptentiveImageNotSelectedABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveSubmitButton",
- "printedName": "apptentiveSubmitButton",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveSubmitButton",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE22apptentiveSubmitButtonABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveSubmitButton",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE22apptentiveSubmitButtonABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveSubmitButton:",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE22apptentiveSubmitButtonABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So7UIColorC13ApptentiveKitE22apptentiveSubmitButtonABvMZ",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE22apptentiveSubmitButtonABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveBranchedSurveyFooter",
- "printedName": "apptentiveBranchedSurveyFooter",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveBranchedSurveyFooter",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE30apptentiveBranchedSurveyFooterABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveBranchedSurveyFooter",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE30apptentiveBranchedSurveyFooterABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveBranchedSurveyFooter:",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE30apptentiveBranchedSurveyFooterABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So7UIColorC13ApptentiveKitE30apptentiveBranchedSurveyFooterABvMZ",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE30apptentiveBranchedSurveyFooterABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveSubmitLabel",
- "printedName": "apptentiveSubmitLabel",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Var",
- "usr": "s:So7UIColorC13ApptentiveKitE21apptentiveSubmitLabelABvpZ",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE21apptentiveSubmitLabelABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "deprecated": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "Available",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So7UIColorC13ApptentiveKitE21apptentiveSubmitLabelABvgZ",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE21apptentiveSubmitLabelABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So7UIColorC13ApptentiveKitE21apptentiveSubmitLabelABvsZ",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE21apptentiveSubmitLabelABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So7UIColorC13ApptentiveKitE21apptentiveSubmitLabelABvMZ",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE21apptentiveSubmitLabelABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "deprecated": true,
- "implicit": true,
- "declAttributes": [
- "Available",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveSubmitStatusLabel",
- "printedName": "apptentiveSubmitStatusLabel",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveSubmitStatusLabel",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE27apptentiveSubmitStatusLabelABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveSubmitStatusLabel",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE27apptentiveSubmitStatusLabelABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveSubmitStatusLabel:",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE27apptentiveSubmitStatusLabelABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So7UIColorC13ApptentiveKitE27apptentiveSubmitStatusLabelABvMZ",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE27apptentiveSubmitStatusLabelABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveTermsOfServiceLabel",
- "printedName": "apptentiveTermsOfServiceLabel",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveTermsOfServiceLabel",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE29apptentiveTermsOfServiceLabelABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveTermsOfServiceLabel",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE29apptentiveTermsOfServiceLabelABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveTermsOfServiceLabel:",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE29apptentiveTermsOfServiceLabelABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So7UIColorC13ApptentiveKitE29apptentiveTermsOfServiceLabelABvMZ",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE29apptentiveTermsOfServiceLabelABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveSubmitButtonTitle",
- "printedName": "apptentiveSubmitButtonTitle",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveSubmitButtonTitle",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE27apptentiveSubmitButtonTitleABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveSubmitButtonTitle",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE27apptentiveSubmitButtonTitleABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveSubmitButtonTitle:",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE27apptentiveSubmitButtonTitleABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So7UIColorC13ApptentiveKitE27apptentiveSubmitButtonTitleABvMZ",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE27apptentiveSubmitButtonTitleABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveSubmitButtonBorder",
- "printedName": "apptentiveSubmitButtonBorder",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveSubmitButtonBorder",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE28apptentiveSubmitButtonBorderABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveSubmitButtonBorder",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE28apptentiveSubmitButtonBorderABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveSubmitButtonBorder:",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE28apptentiveSubmitButtonBorderABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So7UIColorC13ApptentiveKitE28apptentiveSubmitButtonBorderABvMZ",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE28apptentiveSubmitButtonBorderABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveQuestionSeparator",
- "printedName": "apptentiveQuestionSeparator",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveQuestionSeparator",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE27apptentiveQuestionSeparatorABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveQuestionSeparator",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE27apptentiveQuestionSeparatorABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveQuestionSeparator:",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE27apptentiveQuestionSeparatorABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So7UIColorC13ApptentiveKitE27apptentiveQuestionSeparatorABvMZ",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE27apptentiveQuestionSeparatorABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveUnselectedSurveyIndicatorSegment",
- "printedName": "apptentiveUnselectedSurveyIndicatorSegment",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Var",
- "usr": "s:So7UIColorC13ApptentiveKitE42apptentiveUnselectedSurveyIndicatorSegmentABvpZ",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE42apptentiveUnselectedSurveyIndicatorSegmentABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So7UIColorC13ApptentiveKitE42apptentiveUnselectedSurveyIndicatorSegmentABvgZ",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE42apptentiveUnselectedSurveyIndicatorSegmentABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So7UIColorC13ApptentiveKitE42apptentiveUnselectedSurveyIndicatorSegmentABvsZ",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE42apptentiveUnselectedSurveyIndicatorSegmentABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So7UIColorC13ApptentiveKitE42apptentiveUnselectedSurveyIndicatorSegmentABvMZ",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE42apptentiveUnselectedSurveyIndicatorSegmentABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveSelectedSurveyIndicatorSegment",
- "printedName": "apptentiveSelectedSurveyIndicatorSegment",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Var",
- "usr": "s:So7UIColorC13ApptentiveKitE40apptentiveSelectedSurveyIndicatorSegmentABvpZ",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE40apptentiveSelectedSurveyIndicatorSegmentABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So7UIColorC13ApptentiveKitE40apptentiveSelectedSurveyIndicatorSegmentABvgZ",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE40apptentiveSelectedSurveyIndicatorSegmentABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So7UIColorC13ApptentiveKitE40apptentiveSelectedSurveyIndicatorSegmentABvsZ",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE40apptentiveSelectedSurveyIndicatorSegmentABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So7UIColorC13ApptentiveKitE40apptentiveSelectedSurveyIndicatorSegmentABvMZ",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE40apptentiveSelectedSurveyIndicatorSegmentABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveMessageCenterBackground",
- "printedName": "apptentiveMessageCenterBackground",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveMessageCenterBackground",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE33apptentiveMessageCenterBackgroundABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveMessageCenterBackground",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE33apptentiveMessageCenterBackgroundABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveMessageCenterBackground:",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE33apptentiveMessageCenterBackgroundABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So7UIColorC13ApptentiveKitE33apptentiveMessageCenterBackgroundABvMZ",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE33apptentiveMessageCenterBackgroundABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveMessageCenterAttachmentDeleteButton",
- "printedName": "apptentiveMessageCenterAttachmentDeleteButton",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveMessageCenterAttachmentDeleteButton",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE45apptentiveMessageCenterAttachmentDeleteButtonABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveMessageCenterAttachmentDeleteButton",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE45apptentiveMessageCenterAttachmentDeleteButtonABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveMessageCenterAttachmentDeleteButton:",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE45apptentiveMessageCenterAttachmentDeleteButtonABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So7UIColorC13ApptentiveKitE45apptentiveMessageCenterAttachmentDeleteButtonABvMZ",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE45apptentiveMessageCenterAttachmentDeleteButtonABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveMessageCenterComposeBoxBackground",
- "printedName": "apptentiveMessageCenterComposeBoxBackground",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveMessageCenterComposeBoxBackground",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE43apptentiveMessageCenterComposeBoxBackgroundABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveMessageCenterComposeBoxBackground",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE43apptentiveMessageCenterComposeBoxBackgroundABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveMessageCenterComposeBoxBackground:",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE43apptentiveMessageCenterComposeBoxBackgroundABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So7UIColorC13ApptentiveKitE43apptentiveMessageCenterComposeBoxBackgroundABvMZ",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE43apptentiveMessageCenterComposeBoxBackgroundABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveMessageCenterComposeBoxSeparator",
- "printedName": "apptentiveMessageCenterComposeBoxSeparator",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveMessageCenterComposeBoxSeparator",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE42apptentiveMessageCenterComposeBoxSeparatorABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveMessageCenterComposeBoxSeparator",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE42apptentiveMessageCenterComposeBoxSeparatorABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveMessageCenterComposeBoxSeparator:",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE42apptentiveMessageCenterComposeBoxSeparatorABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So7UIColorC13ApptentiveKitE42apptentiveMessageCenterComposeBoxSeparatorABvMZ",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE42apptentiveMessageCenterComposeBoxSeparatorABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveTextInputBorderSelected",
- "printedName": "apptentiveTextInputBorderSelected",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveTextInputBorderSelected",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE33apptentiveTextInputBorderSelectedABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveTextInputBorderSelected",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE33apptentiveTextInputBorderSelectedABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveTextInputBorderSelected:",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE33apptentiveTextInputBorderSelectedABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So7UIColorC13ApptentiveKitE33apptentiveTextInputBorderSelectedABvMZ",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE33apptentiveTextInputBorderSelectedABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveDisclaimerLabel",
- "printedName": "apptentiveDisclaimerLabel",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveDisclaimerLabel",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE25apptentiveDisclaimerLabelABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveDisclaimerLabel",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE25apptentiveDisclaimerLabelABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveDisclaimerLabel:",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE25apptentiveDisclaimerLabelABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So7UIColorC13ApptentiveKitE25apptentiveDisclaimerLabelABvMZ",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE25apptentiveDisclaimerLabelABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- }
- ],
- "declKind": "Class",
- "usr": "c:objc(cs)UIColor",
- "moduleName": "UIKit",
- "isOpen": true,
- "intro_iOS": "2.0",
- "objc_name": "UIColor",
- "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": "_ExpressibleByColorLiteral",
- "printedName": "_ExpressibleByColorLiteral",
- "usr": "s:s26_ExpressibleByColorLiteralP",
- "mangledName": "$ss26_ExpressibleByColorLiteralP"
- }
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "UIFont",
- "printedName": "UIFont",
- "children": [
- {
- "kind": "Var",
- "name": "apptentiveMessageCenterTextInputPlaceholder",
- "printedName": "apptentiveMessageCenterTextInputPlaceholder",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cpy)apptentiveMessageCenterTextInputPlaceholder",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE43apptentiveMessageCenterTextInputPlaceholderABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)apptentiveMessageCenterTextInputPlaceholder",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE43apptentiveMessageCenterTextInputPlaceholderABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)setApptentiveMessageCenterTextInputPlaceholder:",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE43apptentiveMessageCenterTextInputPlaceholderABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So6UIFontC13ApptentiveKitE43apptentiveMessageCenterTextInputPlaceholderABvMZ",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE43apptentiveMessageCenterTextInputPlaceholderABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveMessageCenterTextInput",
- "printedName": "apptentiveMessageCenterTextInput",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cpy)apptentiveMessageCenterTextInput",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE32apptentiveMessageCenterTextInputABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)apptentiveMessageCenterTextInput",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE32apptentiveMessageCenterTextInputABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)setApptentiveMessageCenterTextInput:",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE32apptentiveMessageCenterTextInputABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So6UIFontC13ApptentiveKitE32apptentiveMessageCenterTextInputABvMZ",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE32apptentiveMessageCenterTextInputABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveTextInputPlaceholder",
- "printedName": "apptentiveTextInputPlaceholder",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cpy)apptentiveTextInputPlaceholder",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE30apptentiveTextInputPlaceholderABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)apptentiveTextInputPlaceholder",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE30apptentiveTextInputPlaceholderABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)setApptentiveTextInputPlaceholder:",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE30apptentiveTextInputPlaceholderABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So6UIFontC13ApptentiveKitE30apptentiveTextInputPlaceholderABvMZ",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE30apptentiveTextInputPlaceholderABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveMessageCenterStatus",
- "printedName": "apptentiveMessageCenterStatus",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cpy)apptentiveMessageCenterStatus",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE29apptentiveMessageCenterStatusABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)apptentiveMessageCenterStatus",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE29apptentiveMessageCenterStatusABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)setApptentiveMessageCenterStatus:",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE29apptentiveMessageCenterStatusABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So6UIFontC13ApptentiveKitE29apptentiveMessageCenterStatusABvMZ",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE29apptentiveMessageCenterStatusABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveMessageCenterGreetingTitle",
- "printedName": "apptentiveMessageCenterGreetingTitle",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cpy)apptentiveMessageCenterGreetingTitle",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE36apptentiveMessageCenterGreetingTitleABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)apptentiveMessageCenterGreetingTitle",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE36apptentiveMessageCenterGreetingTitleABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)setApptentiveMessageCenterGreetingTitle:",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE36apptentiveMessageCenterGreetingTitleABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So6UIFontC13ApptentiveKitE36apptentiveMessageCenterGreetingTitleABvMZ",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE36apptentiveMessageCenterGreetingTitleABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveMessageCenterGreetingBody",
- "printedName": "apptentiveMessageCenterGreetingBody",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cpy)apptentiveMessageCenterGreetingBody",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE35apptentiveMessageCenterGreetingBodyABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)apptentiveMessageCenterGreetingBody",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE35apptentiveMessageCenterGreetingBodyABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)setApptentiveMessageCenterGreetingBody:",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE35apptentiveMessageCenterGreetingBodyABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So6UIFontC13ApptentiveKitE35apptentiveMessageCenterGreetingBodyABvMZ",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE35apptentiveMessageCenterGreetingBodyABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveMessageCenterAttachmentLabel",
- "printedName": "apptentiveMessageCenterAttachmentLabel",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cpy)apptentiveMessageCenterAttachmentLabel",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE38apptentiveMessageCenterAttachmentLabelABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)apptentiveMessageCenterAttachmentLabel",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE38apptentiveMessageCenterAttachmentLabelABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)setApptentiveMessageCenterAttachmentLabel:",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE38apptentiveMessageCenterAttachmentLabelABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So6UIFontC13ApptentiveKitE38apptentiveMessageCenterAttachmentLabelABvMZ",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE38apptentiveMessageCenterAttachmentLabelABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveQuestionLabel",
- "printedName": "apptentiveQuestionLabel",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cpy)apptentiveQuestionLabel",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE23apptentiveQuestionLabelABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)apptentiveQuestionLabel",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE23apptentiveQuestionLabelABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)setApptentiveQuestionLabel:",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE23apptentiveQuestionLabelABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So6UIFontC13ApptentiveKitE23apptentiveQuestionLabelABvMZ",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE23apptentiveQuestionLabelABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveTermsOfServiceLabel",
- "printedName": "apptentiveTermsOfServiceLabel",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cpy)apptentiveTermsOfServiceLabel",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE29apptentiveTermsOfServiceLabelABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)apptentiveTermsOfServiceLabel",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE29apptentiveTermsOfServiceLabelABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)setApptentiveTermsOfServiceLabel:",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE29apptentiveTermsOfServiceLabelABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So6UIFontC13ApptentiveKitE29apptentiveTermsOfServiceLabelABvMZ",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE29apptentiveTermsOfServiceLabelABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveChoiceLabel",
- "printedName": "apptentiveChoiceLabel",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cpy)apptentiveChoiceLabel",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE21apptentiveChoiceLabelABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)apptentiveChoiceLabel",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE21apptentiveChoiceLabelABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)setApptentiveChoiceLabel:",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE21apptentiveChoiceLabelABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So6UIFontC13ApptentiveKitE21apptentiveChoiceLabelABvMZ",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE21apptentiveChoiceLabelABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveMessageLabel",
- "printedName": "apptentiveMessageLabel",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cpy)apptentiveMessageLabel",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE22apptentiveMessageLabelABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)apptentiveMessageLabel",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE22apptentiveMessageLabelABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)setApptentiveMessageLabel:",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE22apptentiveMessageLabelABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So6UIFontC13ApptentiveKitE22apptentiveMessageLabelABvMZ",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE22apptentiveMessageLabelABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveMinMaxLabel",
- "printedName": "apptentiveMinMaxLabel",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cpy)apptentiveMinMaxLabel",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE21apptentiveMinMaxLabelABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)apptentiveMinMaxLabel",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE21apptentiveMinMaxLabelABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)setApptentiveMinMaxLabel:",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE21apptentiveMinMaxLabelABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So6UIFontC13ApptentiveKitE21apptentiveMinMaxLabelABvMZ",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE21apptentiveMinMaxLabelABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveSenderLabel",
- "printedName": "apptentiveSenderLabel",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cpy)apptentiveSenderLabel",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE21apptentiveSenderLabelABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)apptentiveSenderLabel",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE21apptentiveSenderLabelABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)setApptentiveSenderLabel:",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE21apptentiveSenderLabelABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So6UIFontC13ApptentiveKitE21apptentiveSenderLabelABvMZ",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE21apptentiveSenderLabelABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveMessageDateLabel",
- "printedName": "apptentiveMessageDateLabel",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cpy)apptentiveMessageDateLabel",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE26apptentiveMessageDateLabelABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)apptentiveMessageDateLabel",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE26apptentiveMessageDateLabelABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)setApptentiveMessageDateLabel:",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE26apptentiveMessageDateLabelABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So6UIFontC13ApptentiveKitE26apptentiveMessageDateLabelABvMZ",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE26apptentiveMessageDateLabelABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveInstructionsLabel",
- "printedName": "apptentiveInstructionsLabel",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cpy)apptentiveInstructionsLabel",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE27apptentiveInstructionsLabelABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)apptentiveInstructionsLabel",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE27apptentiveInstructionsLabelABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)setApptentiveInstructionsLabel:",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE27apptentiveInstructionsLabelABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So6UIFontC13ApptentiveKitE27apptentiveInstructionsLabelABvMZ",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE27apptentiveInstructionsLabelABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveSurveyIntroductionLabel",
- "printedName": "apptentiveSurveyIntroductionLabel",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cpy)apptentiveSurveyIntroductionLabel",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE33apptentiveSurveyIntroductionLabelABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)apptentiveSurveyIntroductionLabel",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE33apptentiveSurveyIntroductionLabelABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)setApptentiveSurveyIntroductionLabel:",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE33apptentiveSurveyIntroductionLabelABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So6UIFontC13ApptentiveKitE33apptentiveSurveyIntroductionLabelABvMZ",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE33apptentiveSurveyIntroductionLabelABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveSubmitLabel",
- "printedName": "apptentiveSubmitLabel",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Var",
- "usr": "s:So6UIFontC13ApptentiveKitE21apptentiveSubmitLabelABvpZ",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE21apptentiveSubmitLabelABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "deprecated": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "Available",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So6UIFontC13ApptentiveKitE21apptentiveSubmitLabelABvgZ",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE21apptentiveSubmitLabelABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So6UIFontC13ApptentiveKitE21apptentiveSubmitLabelABvsZ",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE21apptentiveSubmitLabelABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So6UIFontC13ApptentiveKitE21apptentiveSubmitLabelABvMZ",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE21apptentiveSubmitLabelABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "deprecated": true,
- "implicit": true,
- "declAttributes": [
- "Available",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveSubmitStatusLabel",
- "printedName": "apptentiveSubmitStatusLabel",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cpy)apptentiveSubmitStatusLabel",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE27apptentiveSubmitStatusLabelABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)apptentiveSubmitStatusLabel",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE27apptentiveSubmitStatusLabelABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)setApptentiveSubmitStatusLabel:",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE27apptentiveSubmitStatusLabelABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So6UIFontC13ApptentiveKitE27apptentiveSubmitStatusLabelABvMZ",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE27apptentiveSubmitStatusLabelABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveDisclaimerLabel",
- "printedName": "apptentiveDisclaimerLabel",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cpy)apptentiveDisclaimerLabel",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE25apptentiveDisclaimerLabelABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)apptentiveDisclaimerLabel",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE25apptentiveDisclaimerLabelABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)setApptentiveDisclaimerLabel:",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE25apptentiveDisclaimerLabelABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So6UIFontC13ApptentiveKitE25apptentiveDisclaimerLabelABvMZ",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE25apptentiveDisclaimerLabelABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveSubmitButtonTitle",
- "printedName": "apptentiveSubmitButtonTitle",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cpy)apptentiveSubmitButtonTitle",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE27apptentiveSubmitButtonTitleABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)apptentiveSubmitButtonTitle",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE27apptentiveSubmitButtonTitleABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)setApptentiveSubmitButtonTitle:",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE27apptentiveSubmitButtonTitleABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So6UIFontC13ApptentiveKitE27apptentiveSubmitButtonTitleABvMZ",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE27apptentiveSubmitButtonTitleABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveTextInput",
- "printedName": "apptentiveTextInput",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cpy)apptentiveTextInput",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE19apptentiveTextInputABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)apptentiveTextInput",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE19apptentiveTextInputABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)setApptentiveTextInput:",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE19apptentiveTextInputABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So6UIFontC13ApptentiveKitE19apptentiveTextInputABvMZ",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE19apptentiveTextInputABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- }
- ],
- "declKind": "Class",
- "usr": "c:objc(cs)UIFont",
- "moduleName": "UIKit",
- "isOpen": true,
- "intro_iOS": "2.0",
- "objc_name": "UIFont",
- "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": "TypeDecl",
- "name": "UIToolbar",
- "printedName": "UIToolbar",
- "children": [
- {
- "kind": "TypeDecl",
- "name": "ToolbarMode",
- "printedName": "ToolbarMode",
- "children": [
- {
- "kind": "Var",
- "name": "alwaysShown",
- "printedName": "alwaysShown",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(UIKit.UIToolbar.ToolbarMode.Type) -> UIKit.UIToolbar.ToolbarMode",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ToolbarMode",
- "printedName": "UIKit.UIToolbar.ToolbarMode",
- "usr": "s:So9UIToolbarC13ApptentiveKitE11ToolbarModeO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "UIKit.UIToolbar.ToolbarMode.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ToolbarMode",
- "printedName": "UIKit.UIToolbar.ToolbarMode",
- "usr": "s:So9UIToolbarC13ApptentiveKitE11ToolbarModeO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:So9UIToolbarC13ApptentiveKitE11ToolbarModeO11alwaysShownyA2EmF",
- "mangledName": "$sSo9UIToolbarC13ApptentiveKitE11ToolbarModeO11alwaysShownyA2EmF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment",
- "ObjC"
- ],
- "fixedbinaryorder": 0
- },
- {
- "kind": "Var",
- "name": "hiddenWhenEmpty",
- "printedName": "hiddenWhenEmpty",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(UIKit.UIToolbar.ToolbarMode.Type) -> UIKit.UIToolbar.ToolbarMode",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ToolbarMode",
- "printedName": "UIKit.UIToolbar.ToolbarMode",
- "usr": "s:So9UIToolbarC13ApptentiveKitE11ToolbarModeO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "UIKit.UIToolbar.ToolbarMode.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ToolbarMode",
- "printedName": "UIKit.UIToolbar.ToolbarMode",
- "usr": "s:So9UIToolbarC13ApptentiveKitE11ToolbarModeO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:So9UIToolbarC13ApptentiveKitE11ToolbarModeO15hiddenWhenEmptyyA2EmF",
- "mangledName": "$sSo9UIToolbarC13ApptentiveKitE11ToolbarModeO15hiddenWhenEmptyyA2EmF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment",
- "ObjC"
- ],
- "fixedbinaryorder": 1
- },
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(rawValue:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "UIKit.UIToolbar.ToolbarMode?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ToolbarMode",
- "printedName": "UIKit.UIToolbar.ToolbarMode",
- "usr": "s:So9UIToolbarC13ApptentiveKitE11ToolbarModeO"
- }
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ],
- "declKind": "Constructor",
- "usr": "s:So9UIToolbarC13ApptentiveKitE11ToolbarModeO8rawValueAESgSi_tcfc",
- "mangledName": "$sSo9UIToolbarC13ApptentiveKitE11ToolbarModeO8rawValueAESgSi_tcfc",
- "moduleName": "ApptentiveKit",
- "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:So9UIToolbarC13ApptentiveKitE11ToolbarModeO8rawValueSivp",
- "mangledName": "$sSo9UIToolbarC13ApptentiveKitE11ToolbarModeO8rawValueSivp",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So9UIToolbarC13ApptentiveKitE11ToolbarModeO8rawValueSivg",
- "mangledName": "$sSo9UIToolbarC13ApptentiveKitE11ToolbarModeO8rawValueSivg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "get"
- }
- ]
- }
- ],
- "declKind": "Enum",
- "usr": "s:So9UIToolbarC13ApptentiveKitE11ToolbarModeO",
- "mangledName": "$sSo9UIToolbarC13ApptentiveKitE11ToolbarModeO",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "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": "Var",
- "name": "apptentiveMode",
- "printedName": "apptentiveMode",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ToolbarMode",
- "printedName": "UIKit.UIToolbar.ToolbarMode",
- "usr": "s:So9UIToolbarC13ApptentiveKitE11ToolbarModeO"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIToolbar(cpy)apptentiveMode",
- "mangledName": "$sSo9UIToolbarC13ApptentiveKitE14apptentiveModeAbCE07ToolbarE0OvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "Custom",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ToolbarMode",
- "printedName": "UIKit.UIToolbar.ToolbarMode",
- "usr": "s:So9UIToolbarC13ApptentiveKitE11ToolbarModeO"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIToolbar(cm)apptentiveMode",
- "mangledName": "$sSo9UIToolbarC13ApptentiveKitE14apptentiveModeAbCE07ToolbarE0OvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "ToolbarMode",
- "printedName": "UIKit.UIToolbar.ToolbarMode",
- "usr": "s:So9UIToolbarC13ApptentiveKitE11ToolbarModeO"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIToolbar(cm)setApptentiveMode:",
- "mangledName": "$sSo9UIToolbarC13ApptentiveKitE14apptentiveModeAbCE07ToolbarE0OvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So9UIToolbarC13ApptentiveKitE14apptentiveModeAbCE07ToolbarE0OvMZ",
- "mangledName": "$sSo9UIToolbarC13ApptentiveKitE14apptentiveModeAbCE07ToolbarE0OvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- }
- ],
- "declKind": "Class",
- "usr": "c:objc(cs)UIToolbar",
- "moduleName": "UIKit",
- "isOpen": true,
- "intro_iOS": "2.0",
- "objc_name": "UIToolbar",
- "declAttributes": [
- "Available",
- "ObjC",
- "NonSendable",
- "Custom",
- "Dynamic"
- ],
- "superclassUsr": "c:objc(cs)UIView",
- "isExternal": true,
- "inheritsConvenienceInitializers": true,
- "superclassNames": [
- "UIKit.UIView",
- "UIKit.UIResponder",
- "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": "Conformance",
- "name": "__DefaultCustomPlaygroundQuickLookable",
- "printedName": "__DefaultCustomPlaygroundQuickLookable",
- "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP",
- "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP"
- },
- {
- "kind": "Conformance",
- "name": "Sendable",
- "printedName": "Sendable",
- "usr": "s:s8SendableP",
- "mangledName": "$ss8SendableP"
- }
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "CGFloat",
- "printedName": "CGFloat",
- "children": [
- {
- "kind": "Var",
- "name": "apptentiveButtonBorderWidth",
- "printedName": "apptentiveButtonBorderWidth",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "CGFloat",
- "printedName": "CoreGraphics.CGFloat",
- "usr": "s:14CoreFoundation7CGFloatV"
- }
- ],
- "declKind": "Var",
- "usr": "s:14CoreFoundation7CGFloatV13ApptentiveKitE27apptentiveButtonBorderWidthACvpZ",
- "mangledName": "$s12CoreGraphics7CGFloatV13ApptentiveKitE27apptentiveButtonBorderWidthACvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "CGFloat",
- "printedName": "CoreGraphics.CGFloat",
- "usr": "s:14CoreFoundation7CGFloatV"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:14CoreFoundation7CGFloatV13ApptentiveKitE27apptentiveButtonBorderWidthACvgZ",
- "mangledName": "$s12CoreGraphics7CGFloatV13ApptentiveKitE27apptentiveButtonBorderWidthACvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "CGFloat",
- "printedName": "CoreGraphics.CGFloat",
- "usr": "s:14CoreFoundation7CGFloatV"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:14CoreFoundation7CGFloatV13ApptentiveKitE27apptentiveButtonBorderWidthACvsZ",
- "mangledName": "$s12CoreGraphics7CGFloatV13ApptentiveKitE27apptentiveButtonBorderWidthACvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:14CoreFoundation7CGFloatV13ApptentiveKitE27apptentiveButtonBorderWidthACvMZ",
- "mangledName": "$s12CoreGraphics7CGFloatV13ApptentiveKitE27apptentiveButtonBorderWidthACvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- }
- ],
- "declKind": "Struct",
- "usr": "s:14CoreFoundation7CGFloatV",
- "mangledName": "$s12CoreGraphics7CGFloatV",
- "moduleName": "CoreFoundation",
- "intro_Macosx": "10.0",
- "intro_iOS": "2.0",
- "intro_tvOS": "9.0",
- "intro_watchOS": "1.0",
- "declAttributes": [
- "Frozen",
- "OriginallyDefinedIn",
- "OriginallyDefinedIn",
- "OriginallyDefinedIn",
- "OriginallyDefinedIn",
- "OriginallyDefinedIn",
- "Available",
- "Available",
- "Available",
- "Available",
- "Available"
- ],
- "isExternal": true,
- "conformances": [
- {
- "kind": "Conformance",
- "name": "SignedNumeric",
- "printedName": "SignedNumeric",
- "usr": "s:s13SignedNumericP",
- "mangledName": "$ss13SignedNumericP"
- },
- {
- "kind": "Conformance",
- "name": "Numeric",
- "printedName": "Numeric",
- "children": [
- {
- "kind": "TypeWitness",
- "name": "Magnitude",
- "printedName": "Magnitude",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "CGFloat",
- "printedName": "CoreGraphics.CGFloat",
- "usr": "s:14CoreFoundation7CGFloatV"
- }
- ]
- }
- ],
- "usr": "s:Sj",
- "mangledName": "$sSj"
- },
- {
- "kind": "Conformance",
- "name": "AdditiveArithmetic",
- "printedName": "AdditiveArithmetic",
- "usr": "s:s18AdditiveArithmeticP",
- "mangledName": "$ss18AdditiveArithmeticP"
- },
- {
- "kind": "Conformance",
- "name": "ExpressibleByIntegerLiteral",
- "printedName": "ExpressibleByIntegerLiteral",
- "children": [
- {
- "kind": "TypeWitness",
- "name": "IntegerLiteralType",
- "printedName": "IntegerLiteralType",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ]
- }
- ],
- "usr": "s:s27ExpressibleByIntegerLiteralP",
- "mangledName": "$ss27ExpressibleByIntegerLiteralP"
- },
- {
- "kind": "Conformance",
- "name": "Equatable",
- "printedName": "Equatable",
- "usr": "s:SQ",
- "mangledName": "$sSQ"
- },
- {
- "kind": "Conformance",
- "name": "BinaryFloatingPoint",
- "printedName": "BinaryFloatingPoint",
- "children": [
- {
- "kind": "TypeWitness",
- "name": "RawSignificand",
- "printedName": "RawSignificand",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UInt",
- "printedName": "Swift.UInt",
- "usr": "s:Su"
- }
- ]
- },
- {
- "kind": "TypeWitness",
- "name": "RawExponent",
- "printedName": "RawExponent",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UInt",
- "printedName": "Swift.UInt",
- "usr": "s:Su"
- }
- ]
- }
- ],
- "usr": "s:SB",
- "mangledName": "$sSB"
- },
- {
- "kind": "Conformance",
- "name": "ExpressibleByFloatLiteral",
- "printedName": "ExpressibleByFloatLiteral",
- "children": [
- {
- "kind": "TypeWitness",
- "name": "FloatLiteralType",
- "printedName": "FloatLiteralType",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Double",
- "printedName": "Swift.Double",
- "usr": "s:Sd"
- }
- ]
- }
- ],
- "usr": "s:s25ExpressibleByFloatLiteralP",
- "mangledName": "$ss25ExpressibleByFloatLiteralP"
- },
- {
- "kind": "Conformance",
- "name": "FloatingPoint",
- "printedName": "FloatingPoint",
- "children": [
- {
- "kind": "TypeWitness",
- "name": "Exponent",
- "printedName": "Exponent",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ]
- }
- ],
- "usr": "s:SF",
- "mangledName": "$sSF"
- },
- {
- "kind": "Conformance",
- "name": "CustomReflectable",
- "printedName": "CustomReflectable",
- "usr": "s:s17CustomReflectableP",
- "mangledName": "$ss17CustomReflectableP"
- },
- {
- "kind": "Conformance",
- "name": "CustomStringConvertible",
- "printedName": "CustomStringConvertible",
- "usr": "s:s23CustomStringConvertibleP",
- "mangledName": "$ss23CustomStringConvertibleP"
- },
- {
- "kind": "Conformance",
- "name": "Hashable",
- "printedName": "Hashable",
- "usr": "s:SH",
- "mangledName": "$sSH"
- },
- {
- "kind": "Conformance",
- "name": "Strideable",
- "printedName": "Strideable",
- "children": [
- {
- "kind": "TypeWitness",
- "name": "Stride",
- "printedName": "Stride",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "CGFloat",
- "printedName": "CoreGraphics.CGFloat",
- "usr": "s:14CoreFoundation7CGFloatV"
- }
- ]
- }
- ],
- "usr": "s:Sx",
- "mangledName": "$sSx"
- },
- {
- "kind": "Conformance",
- "name": "Comparable",
- "printedName": "Comparable",
- "usr": "s:SL",
- "mangledName": "$sSL"
- },
- {
- "kind": "Conformance",
- "name": "_CVarArgPassedAsDouble",
- "printedName": "_CVarArgPassedAsDouble",
- "usr": "s:s22_CVarArgPassedAsDoubleP",
- "mangledName": "$ss22_CVarArgPassedAsDoubleP"
- },
- {
- "kind": "Conformance",
- "name": "_CVarArgAligned",
- "printedName": "_CVarArgAligned",
- "usr": "s:s15_CVarArgAlignedP",
- "mangledName": "$ss15_CVarArgAlignedP"
- },
- {
- "kind": "Conformance",
- "name": "CVarArg",
- "printedName": "CVarArg",
- "usr": "s:s7CVarArgP",
- "mangledName": "$ss7CVarArgP"
- },
- {
- "kind": "Conformance",
- "name": "Decodable",
- "printedName": "Decodable",
- "usr": "s:Se",
- "mangledName": "$sSe"
- },
- {
- "kind": "Conformance",
- "name": "Encodable",
- "printedName": "Encodable",
- "usr": "s:SE",
- "mangledName": "$sSE"
- },
- {
- "kind": "Conformance",
- "name": "Sendable",
- "printedName": "Sendable",
- "usr": "s:s8SendableP",
- "mangledName": "$ss8SendableP"
- },
- {
- "kind": "Conformance",
- "name": "_FormatSpecifiable",
- "printedName": "_FormatSpecifiable",
- "children": [
- {
- "kind": "TypeWitness",
- "name": "_Arg",
- "printedName": "_Arg",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "CGFloat",
- "printedName": "CoreGraphics.CGFloat",
- "usr": "s:14CoreFoundation7CGFloatV"
- }
- ]
- }
- ],
- "usr": "s:10Foundation18_FormatSpecifiableP",
- "mangledName": "$s10Foundation18_FormatSpecifiableP"
- },
- {
- "kind": "Conformance",
- "name": "_ObjectiveCBridgeable",
- "printedName": "_ObjectiveCBridgeable",
- "children": [
- {
- "kind": "TypeWitness",
- "name": "_ObjectiveCType",
- "printedName": "_ObjectiveCType",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "NSNumber",
- "printedName": "Foundation.NSNumber",
- "usr": "c:objc(cs)NSNumber"
- }
- ]
- }
- ],
- "usr": "s:s21_ObjectiveCBridgeableP",
- "mangledName": "$ss21_ObjectiveCBridgeableP"
- }
- ]
- }
- ],
- "json_format_version": 8
- },
- "ConstValues": [
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/AppleRatingDialog\/AppleRatingDialogController.swift",
- "kind": "BooleanLiteral",
- "offset": 448,
- "length": 5,
- "value": "false"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/AppleRatingDialog\/AppleRatingDialogController.swift",
- "kind": "IntegerLiteral",
- "offset": 492,
- "length": 1,
- "value": "1"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Backend.swift",
- "kind": "BooleanLiteral",
- "offset": 1632,
- "length": 4,
- "value": "true"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Backend.swift",
- "kind": "BooleanLiteral",
- "offset": 2252,
- "length": 4,
- "value": "true"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Backend.swift",
- "kind": "BooleanLiteral",
- "offset": 3135,
- "length": 5,
- "value": "false"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Backend.swift",
- "kind": "BooleanLiteral",
- "offset": 3302,
- "length": 4,
- "value": "true"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Backend.swift",
- "kind": "BooleanLiteral",
- "offset": 3562,
- "length": 5,
- "value": "false"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Backend.swift",
- "kind": "BooleanLiteral",
- "offset": 3718,
- "length": 5,
- "value": "false"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Backend.swift",
- "kind": "IntegerLiteral",
- "offset": 32120,
- "length": 2,
- "value": "60"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Backend.swift",
- "kind": "IntegerLiteral",
- "offset": 32192,
- "length": 3,
- "value": "600"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Backend.swift",
- "kind": "BooleanLiteral",
- "offset": 32267,
- "length": 4,
- "value": "true"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/EngagementManifest+Placeholder.swift",
- "kind": "StringLiteral",
- "offset": 292,
- "length": 25,
- "value": "\"message_center_fallback\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/EngagementManifest+Placeholder.swift",
- "kind": "StringLiteral",
- "offset": 365,
- "length": 22,
- "value": "\"MC Unavailable Title\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/EngagementManifest+Placeholder.swift",
- "kind": "StringLiteral",
- "offset": 429,
- "length": 33,
- "value": "\"Message Center is not Available\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/EngagementManifest+Placeholder.swift",
- "kind": "StringLiteral",
- "offset": 473,
- "length": 41,
- "value": "\"Title for note saying MC is unavailable\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/EngagementManifest+Placeholder.swift",
- "kind": "StringLiteral",
- "offset": 564,
- "length": 24,
- "value": "\"MC Unavailable Message\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/EngagementManifest+Placeholder.swift",
- "kind": "StringLiteral",
- "offset": 630,
- "length": 62,
- "value": "\"Make sure your device can access the internet and try again.\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/EngagementManifest+Placeholder.swift",
- "kind": "StringLiteral",
- "offset": 703,
- "length": 43,
- "value": "\"Message for note saying MC is unavailable\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/EngagementManifest+Placeholder.swift",
- "kind": "StringLiteral",
- "offset": 800,
- "length": 31,
- "value": "\"MC Unavailable Dismiss Button\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/EngagementManifest+Placeholder.swift",
- "kind": "StringLiteral",
- "offset": 873,
- "length": 4,
- "value": "\"OK\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/EngagementManifest+Placeholder.swift",
- "kind": "StringLiteral",
- "offset": 888,
- "length": 56,
- "value": "\"Dismiss button title for note saying MC is unavailable\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/EngagementManifest+Placeholder.swift",
- "kind": "StringLiteral",
- "offset": 1074,
- "length": 9,
- "value": "\"dismiss\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/EngagementManifest+Placeholder.swift",
- "kind": "Array",
- "offset": 1148,
- "length": 2,
- "value": "[]"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/EngagementManifest+Placeholder.swift",
- "kind": "StringLiteral",
- "offset": 1279,
- "length": 11,
- "value": "\"TextModal\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/EngagementManifest+Placeholder.swift",
- "kind": "Array",
- "offset": 1414,
- "length": 2,
- "value": "[]"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/TextModal\/TextModalConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 721,
- "length": 8,
- "value": "\"action\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/TextModal\/TextModalConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 761,
- "length": 9,
- "value": "\"invokes\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/TextModal\/TextModalConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 721,
- "length": 8,
- "value": "\"action\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/TextModal\/TextModalConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 761,
- "length": 9,
- "value": "\"invokes\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Dialog\/UI\/DialogViewController.swift",
- "kind": "Array",
- "offset": 450,
- "length": 2,
- "value": "[]"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Dialog\/UI\/DialogViewController.swift",
- "kind": "BooleanLiteral",
- "offset": 490,
- "length": 5,
- "value": "false"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Dialog\/UI\/DialogViewController.swift",
- "kind": "StringLiteral",
- "offset": 283,
- "length": 20,
- "value": "\"ApptentiveKit.DialogViewController\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Responses\/MessagesResponse.swift",
- "kind": "StringLiteral",
- "offset": 819,
- "length": 14,
- "value": "\"content_type\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Responses\/MessagesResponse.swift",
- "kind": "StringLiteral",
- "offset": 866,
- "length": 15,
- "value": "\"original_name\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Responses\/MessagesResponse.swift",
- "kind": "StringLiteral",
- "offset": 819,
- "length": 14,
- "value": "\"content_type\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Responses\/MessagesResponse.swift",
- "kind": "StringLiteral",
- "offset": 866,
- "length": 15,
- "value": "\"original_name\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Responses\/MessagesResponse.swift",
- "kind": "StringLiteral",
- "offset": 1147,
- "length": 15,
- "value": "\"profile_photo\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Responses\/MessagesResponse.swift",
- "kind": "StringLiteral",
- "offset": 1147,
- "length": 15,
- "value": "\"profile_photo\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Responses\/MessagesResponse.swift",
- "kind": "StringLiteral",
- "offset": 1294,
- "length": 9,
- "value": "\"inbound\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Responses\/MessagesResponse.swift",
- "kind": "StringLiteral",
- "offset": 1375,
- "length": 8,
- "value": "\"hidden\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Responses\/MessagesResponse.swift",
- "kind": "StringLiteral",
- "offset": 1415,
- "length": 11,
- "value": "\"automated\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Responses\/MessagesResponse.swift",
- "kind": "StringLiteral",
- "offset": 1455,
- "length": 12,
- "value": "\"created_at\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Responses\/MessagesResponse.swift",
- "kind": "StringLiteral",
- "offset": 1294,
- "length": 9,
- "value": "\"inbound\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Responses\/MessagesResponse.swift",
- "kind": "StringLiteral",
- "offset": 1375,
- "length": 8,
- "value": "\"hidden\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Responses\/MessagesResponse.swift",
- "kind": "StringLiteral",
- "offset": 1415,
- "length": 11,
- "value": "\"automated\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Responses\/MessagesResponse.swift",
- "kind": "StringLiteral",
- "offset": 1455,
- "length": 12,
- "value": "\"created_at\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Responses\/MessagesResponse.swift",
- "kind": "StringLiteral",
- "offset": 1572,
- "length": 11,
- "value": "\"ends_with\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Responses\/MessagesResponse.swift",
- "kind": "StringLiteral",
- "offset": 1607,
- "length": 10,
- "value": "\"has_more\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Responses\/MessagesResponse.swift",
- "kind": "StringLiteral",
- "offset": 1572,
- "length": 11,
- "value": "\"ends_with\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Responses\/MessagesResponse.swift",
- "kind": "StringLiteral",
- "offset": 1607,
- "length": 10,
- "value": "\"has_more\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/EngagementMetric.swift",
- "kind": "IntegerLiteral",
- "offset": 384,
- "length": 1,
- "value": "0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/EngagementMetric.swift",
- "kind": "IntegerLiteral",
- "offset": 407,
- "length": 1,
- "value": "0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/EngagementMetric.swift",
- "kind": "IntegerLiteral",
- "offset": 428,
- "length": 1,
- "value": "0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/EngagementMetric.swift",
- "kind": "IntegerLiteral",
- "offset": 870,
- "length": 1,
- "value": "0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/EngagementMetric.swift",
- "kind": "IntegerLiteral",
- "offset": 1000,
- "length": 1,
- "value": "0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/EngagementMetric.swift",
- "kind": "IntegerLiteral",
- "offset": 1126,
- "length": 1,
- "value": "0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Current\/CurrentLoader.swift",
- "kind": "StringLiteral",
- "offset": 242,
- "length": 16,
- "value": "\"Conversation.A\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Current\/CurrentLoader.swift",
- "kind": "StringLiteral",
- "offset": 293,
- "length": 16,
- "value": "\"PayloadQueue.A\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Current\/CurrentLoader.swift",
- "kind": "StringLiteral",
- "offset": 344,
- "length": 15,
- "value": "\"MessageList.A\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Current\/CurrentLoader.swift",
- "kind": "StringLiteral",
- "offset": 391,
- "length": 7,
- "value": "\"plist\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterViewModel+Message.swift",
- "kind": "StringLiteral",
- "offset": 4157,
- "length": 10,
- "value": "\"ApptentiveKit.Attachment\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyMultiLineCell.swift",
- "kind": "FloatLiteral",
- "offset": 583,
- "length": 3,
- "value": "1.0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyMultiLineCell.swift",
- "kind": "FloatLiteral",
- "offset": 667,
- "length": 3,
- "value": "6.0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyMultiLineCell.swift",
- "kind": "FloatLiteral",
- "offset": 1032,
- "length": 3,
- "value": "1.0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyMultiLineCell.swift",
- "kind": "FloatLiteral",
- "offset": 1043,
- "length": 4,
- "value": "5.0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyMultiLineCell.swift",
- "kind": "FloatLiteral",
- "offset": 1057,
- "length": 3,
- "value": "1.0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyMultiLineCell.swift",
- "kind": "FloatLiteral",
- "offset": 1069,
- "length": 4,
- "value": "5.0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyMultiLineCell.swift",
- "kind": "FloatLiteral",
- "offset": 1131,
- "length": 4,
- "value": "16.0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyMultiLineCell.swift",
- "kind": "FloatLiteral",
- "offset": 1192,
- "length": 4,
- "value": "16.0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyMultiLineCell.swift",
- "kind": "FloatLiteral",
- "offset": 1435,
- "length": 3,
- "value": "6.0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyMultiLineCell.swift",
- "kind": "FloatLiteral",
- "offset": 1446,
- "length": 3,
- "value": "2.0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyMultiLineCell.swift",
- "kind": "FloatLiteral",
- "offset": 1459,
- "length": 3,
- "value": "6.0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyMultiLineCell.swift",
- "kind": "FloatLiteral",
- "offset": 1471,
- "length": 3,
- "value": "2.0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyMultiLineCell.swift",
- "kind": "FloatLiteral",
- "offset": 1574,
- "length": 3,
- "value": "4.0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyMultiLineCell.swift",
- "kind": "FloatLiteral",
- "offset": 1585,
- "length": 3,
- "value": "2.0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyMultiLineCell.swift",
- "kind": "FloatLiteral",
- "offset": 1598,
- "length": 3,
- "value": "4.0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyMultiLineCell.swift",
- "kind": "FloatLiteral",
- "offset": 1610,
- "length": 3,
- "value": "2.0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyMultiLineCell.swift",
- "kind": "FloatLiteral",
- "offset": 1685,
- "length": 4,
- "value": "14.5"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyMultiLineCell.swift",
- "kind": "FloatLiteral",
- "offset": 1742,
- "length": 4,
- "value": "14.5"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyViewModel+ChoiceQuestion.swift",
- "kind": "StringLiteral",
- "offset": 5351,
- "length": 30,
- "value": "\"Should have a view model set\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyViewModel+ChoiceQuestion.swift",
- "kind": "StringLiteral",
- "offset": 5843,
- "length": 36,
- "value": "\"Should have a choice question set.\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyCount.swift",
- "kind": "BooleanLiteral",
- "offset": 277,
- "length": 4,
- "value": "true"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyCount.swift",
- "kind": "StringLiteral",
- "offset": 953,
- "length": 12,
- "value": "\"totalCount\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyCount.swift",
- "kind": "StringLiteral",
- "offset": 1000,
- "length": 14,
- "value": "\"versionCount\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyCount.swift",
- "kind": "StringLiteral",
- "offset": 1047,
- "length": 12,
- "value": "\"buildCount\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyCount.swift",
- "kind": "StringLiteral",
- "offset": 1093,
- "length": 13,
- "value": "\"lastInvoked\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyCount.swift",
- "kind": "StringLiteral",
- "offset": 199,
- "length": 11,
- "value": "\"ApptentiveKit.LegacyCount\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/ApptentiveLogger.swift",
- "kind": "IntegerLiteral",
- "offset": 678,
- "length": 1,
- "value": "0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/ApptentiveLogger.swift",
- "kind": "StringLiteral",
- "offset": 6911,
- "length": 16,
- "value": "\"com.apptentive\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/ApptentiveLogger.swift",
- "kind": "StringLiteral",
- "offset": 6931,
- "length": 13,
- "value": "\".apptentive\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/ApptentiveLogger.swift",
- "kind": "StringLiteral",
- "offset": 7230,
- "length": 13,
- "value": "\".engagement\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/ApptentiveLogger.swift",
- "kind": "StringLiteral",
- "offset": 7377,
- "length": 14,
- "value": "\".interaction\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/ApptentiveLogger.swift",
- "kind": "StringLiteral",
- "offset": 7517,
- "length": 10,
- "value": "\".network\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/ApptentiveLogger.swift",
- "kind": "StringLiteral",
- "offset": 7652,
- "length": 10,
- "value": "\".payload\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/ApptentiveLogger.swift",
- "kind": "StringLiteral",
- "offset": 7784,
- "length": 12,
- "value": "\".targeting\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/ApptentiveLogger.swift",
- "kind": "StringLiteral",
- "offset": 7922,
- "length": 11,
- "value": "\".messages\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/ApptentiveLogger.swift",
- "kind": "StringLiteral",
- "offset": 8065,
- "length": 14,
- "value": "\".attachments\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/ApptentiveLogger.swift",
- "kind": "IntegerLiteral",
- "offset": 8849,
- "length": 4,
- "value": "1"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/ApptentiveLogger.swift",
- "kind": "IntegerLiteral",
- "offset": 8863,
- "length": 6,
- "value": "2"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/ApptentiveLogger.swift",
- "kind": "IntegerLiteral",
- "offset": 8879,
- "length": 7,
- "value": "3"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/ApptentiveLogger.swift",
- "kind": "IntegerLiteral",
- "offset": 8896,
- "length": 5,
- "value": "4"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/ApptentiveLogger.swift",
- "kind": "IntegerLiteral",
- "offset": 8911,
- "length": 8,
- "value": "5"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/ApptentiveLogger.swift",
- "kind": "IntegerLiteral",
- "offset": 8929,
- "length": 5,
- "value": "6"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/ApptentiveLogger.swift",
- "kind": "IntegerLiteral",
- "offset": 8849,
- "length": 4,
- "value": "1"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/ApptentiveLogger.swift",
- "kind": "IntegerLiteral",
- "offset": 8863,
- "length": 6,
- "value": "2"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/ApptentiveLogger.swift",
- "kind": "IntegerLiteral",
- "offset": 8879,
- "length": 7,
- "value": "3"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/ApptentiveLogger.swift",
- "kind": "IntegerLiteral",
- "offset": 8896,
- "length": 5,
- "value": "4"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/ApptentiveLogger.swift",
- "kind": "IntegerLiteral",
- "offset": 8911,
- "length": 8,
- "value": "5"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/ApptentiveLogger.swift",
- "kind": "IntegerLiteral",
- "offset": 8929,
- "length": 5,
- "value": "6"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/ApptentiveLogger.swift",
- "kind": "IntegerLiteral",
- "offset": 8849,
- "length": 4,
- "value": "1"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/ApptentiveLogger.swift",
- "kind": "IntegerLiteral",
- "offset": 8863,
- "length": 6,
- "value": "2"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/ApptentiveLogger.swift",
- "kind": "IntegerLiteral",
- "offset": 8879,
- "length": 7,
- "value": "3"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/ApptentiveLogger.swift",
- "kind": "IntegerLiteral",
- "offset": 8896,
- "length": 5,
- "value": "4"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/ApptentiveLogger.swift",
- "kind": "IntegerLiteral",
- "offset": 8911,
- "length": 8,
- "value": "5"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/ApptentiveLogger.swift",
- "kind": "IntegerLiteral",
- "offset": 8929,
- "length": 5,
- "value": "6"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive.swift",
- "kind": "IntegerLiteral",
- "offset": 4430,
- "length": 1,
- "value": "0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive.swift",
- "kind": "BooleanLiteral",
- "offset": 17153,
- "length": 5,
- "value": "false"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive.swift",
- "kind": "StringLiteral",
- "offset": 223,
- "length": 10,
- "value": "\"ApptentiveKit.Apptentive\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyPerson.swift",
- "kind": "StringLiteral",
- "offset": 1227,
- "length": 6,
- "value": "\"name\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyPerson.swift",
- "kind": "StringLiteral",
- "offset": 1268,
- "length": 14,
- "value": "\"emailAddress\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyPerson.swift",
- "kind": "StringLiteral",
- "offset": 1316,
- "length": 13,
- "value": "\"mParticleId\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyPerson.swift",
- "kind": "StringLiteral",
- "offset": 1362,
- "length": 12,
- "value": "\"customData\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyPerson.swift",
- "kind": "StringLiteral",
- "offset": 201,
- "length": 12,
- "value": "\"ApptentiveKit.LegacyPerson\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyIndicator.swift",
- "kind": "Array",
- "offset": 263,
- "length": 2,
- "value": "[]"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyIndicator.swift",
- "kind": "IntegerLiteral",
- "offset": 306,
- "length": 1,
- "value": "0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyIndicator.swift",
- "kind": "IntegerLiteral",
- "offset": 526,
- "length": 1,
- "value": "0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyIndicator.swift",
- "kind": "Dictionary",
- "offset": 661,
- "length": 3,
- "value": "[]"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyIndicator.swift",
- "kind": "IntegerLiteral",
- "offset": 6922,
- "length": 1,
- "value": "0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveySingleLineCell.swift",
- "kind": "FloatLiteral",
- "offset": 355,
- "length": 3,
- "value": "1.0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveySingleLineCell.swift",
- "kind": "FloatLiteral",
- "offset": 439,
- "length": 3,
- "value": "6.0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveySingleLineCell.swift",
- "kind": "FloatLiteral",
- "offset": 1048,
- "length": 4,
- "value": "16.0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveySingleLineCell.swift",
- "kind": "FloatLiteral",
- "offset": 1109,
- "length": 4,
- "value": "16.0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveySingleLineCell.swift",
- "kind": "IntegerLiteral",
- "offset": 1165,
- "length": 1,
- "value": "0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveySingleLineCell.swift",
- "kind": "IntegerLiteral",
- "offset": 1221,
- "length": 1,
- "value": "0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveySingleLineCell.swift",
- "kind": "IntegerLiteral",
- "offset": 1277,
- "length": 2,
- "value": "44"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/ApptentiveAPI.swift",
- "kind": "BooleanLiteral",
- "offset": 8342,
- "length": 4,
- "value": "true"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/ApptentiveAPI.swift",
- "kind": "BooleanLiteral",
- "offset": 9521,
- "length": 4,
- "value": "true"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/ApptentiveAPI.swift",
- "kind": "StringLiteral",
- "offset": 14484,
- "length": 16,
- "value": "\"APPTENTIVE-KEY\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/ApptentiveAPI.swift",
- "kind": "StringLiteral",
- "offset": 14542,
- "length": 22,
- "value": "\"APPTENTIVE-SIGNATURE\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/ApptentiveAPI.swift",
- "kind": "StringLiteral",
- "offset": 14597,
- "length": 15,
- "value": "\"X-API-Version\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/ApptentiveAPI.swift",
- "kind": "StringLiteral",
- "offset": 14646,
- "length": 14,
- "value": "\"Content-Type\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/ApptentiveAPI.swift",
- "kind": "StringLiteral",
- "offset": 14696,
- "length": 15,
- "value": "\"Authorization\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/ApptentiveAPI.swift",
- "kind": "StringLiteral",
- "offset": 14747,
- "length": 16,
- "value": "\"Accept-Charset\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/ApptentiveAPI.swift",
- "kind": "StringLiteral",
- "offset": 14800,
- "length": 17,
- "value": "\"Accept-Language\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/ApptentiveAPI.swift",
- "kind": "StringLiteral",
- "offset": 14846,
- "length": 8,
- "value": "\"Accept\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadataItem.swift",
- "kind": "BooleanLiteral",
- "offset": 334,
- "length": 4,
- "value": "true"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadataItem.swift",
- "kind": "StringLiteral",
- "offset": 1248,
- "length": 7,
- "value": "\"state\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadataItem.swift",
- "kind": "StringLiteral",
- "offset": 1288,
- "length": 24,
- "value": "\"conversationIdentifier\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadataItem.swift",
- "kind": "StringLiteral",
- "offset": 1350,
- "length": 29,
- "value": "\"conversationLocalIdentifier\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadataItem.swift",
- "kind": "StringLiteral",
- "offset": 1415,
- "length": 10,
- "value": "\"fileName\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadataItem.swift",
- "kind": "StringLiteral",
- "offset": 1451,
- "length": 5,
- "value": "\"JWT\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadataItem.swift",
- "kind": "IntegerLiteral",
- "offset": 1523,
- "length": 1,
- "value": "0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadataItem.swift",
- "kind": "IntegerLiteral",
- "offset": 1538,
- "length": 16,
- "value": "1"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadataItem.swift",
- "kind": "IntegerLiteral",
- "offset": 1568,
- "length": 13,
- "value": "2"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadataItem.swift",
- "kind": "IntegerLiteral",
- "offset": 1595,
- "length": 9,
- "value": "3"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadataItem.swift",
- "kind": "IntegerLiteral",
- "offset": 1618,
- "length": 8,
- "value": "4"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadataItem.swift",
- "kind": "IntegerLiteral",
- "offset": 1640,
- "length": 9,
- "value": "5"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadataItem.swift",
- "kind": "IntegerLiteral",
- "offset": 1523,
- "length": 1,
- "value": "0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadataItem.swift",
- "kind": "IntegerLiteral",
- "offset": 1538,
- "length": 16,
- "value": "1"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadataItem.swift",
- "kind": "IntegerLiteral",
- "offset": 1568,
- "length": 13,
- "value": "2"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadataItem.swift",
- "kind": "IntegerLiteral",
- "offset": 1595,
- "length": 9,
- "value": "3"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadataItem.swift",
- "kind": "IntegerLiteral",
- "offset": 1618,
- "length": 8,
- "value": "4"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadataItem.swift",
- "kind": "IntegerLiteral",
- "offset": 1640,
- "length": 9,
- "value": "5"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadataItem.swift",
- "kind": "IntegerLiteral",
- "offset": 1523,
- "length": 1,
- "value": "0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadataItem.swift",
- "kind": "IntegerLiteral",
- "offset": 1538,
- "length": 16,
- "value": "1"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadataItem.swift",
- "kind": "IntegerLiteral",
- "offset": 1568,
- "length": 13,
- "value": "2"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadataItem.swift",
- "kind": "IntegerLiteral",
- "offset": 1595,
- "length": 9,
- "value": "3"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadataItem.swift",
- "kind": "IntegerLiteral",
- "offset": 1618,
- "length": 8,
- "value": "4"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadataItem.swift",
- "kind": "IntegerLiteral",
- "offset": 1640,
- "length": 9,
- "value": "5"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadataItem.swift",
- "kind": "StringLiteral",
- "offset": 237,
- "length": 30,
- "value": "\"ApptentiveKit.LegacyConversationMetadataItem\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/HTTPRetryPolicy.swift",
- "kind": "FloatLiteral",
- "offset": 366,
- "length": 3,
- "value": "5.0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/HTTPRetryPolicy.swift",
- "kind": "FloatLiteral",
- "offset": 392,
- "length": 3,
- "value": "2.0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/HTTPRetryPolicy.swift",
- "kind": "BooleanLiteral",
- "offset": 415,
- "length": 4,
- "value": "true"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Requests\/ConversationRequest.swift",
- "kind": "StringLiteral",
- "offset": 968,
- "length": 13,
- "value": "\"app_release\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Requests\/ConversationRequest.swift",
- "kind": "StringLiteral",
- "offset": 968,
- "length": 13,
- "value": "\"app_release\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Requests\/ConversationRequest.swift",
- "kind": "StringLiteral",
- "offset": 1371,
- "length": 11,
- "value": "\"device_id\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Requests\/ConversationRequest.swift",
- "kind": "StringLiteral",
- "offset": 1407,
- "length": 11,
- "value": "\"person_id\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Requests\/ConversationRequest.swift",
- "kind": "StringLiteral",
- "offset": 1371,
- "length": 11,
- "value": "\"device_id\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Requests\/ConversationRequest.swift",
- "kind": "StringLiteral",
- "offset": 1407,
- "length": 11,
- "value": "\"person_id\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyViewModel.swift",
- "kind": "BooleanLiteral",
- "offset": 5198,
- "length": 5,
- "value": "false"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyViewModel.swift",
- "kind": "BooleanLiteral",
- "offset": 5356,
- "length": 5,
- "value": "false"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyViewModel.swift",
- "kind": "StringLiteral",
- "offset": 10811,
- "length": 8,
- "value": "\"single\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyViewModel.swift",
- "kind": "StringLiteral",
- "offset": 10851,
- "length": 7,
- "value": "\"intro\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyViewModel.swift",
- "kind": "StringLiteral",
- "offset": 10892,
- "length": 9,
- "value": "\"success\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyViewModel.swift",
- "kind": "BooleanLiteral",
- "offset": 20194,
- "length": 5,
- "value": "false"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyViewModel.swift",
- "kind": "BooleanLiteral",
- "offset": 20250,
- "length": 5,
- "value": "false"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyViewModel.swift",
- "kind": "Array",
- "offset": 21979,
- "length": 2,
- "value": "[]"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/MessageList.swift",
- "kind": "BooleanLiteral",
- "offset": 395,
- "length": 5,
- "value": "false"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/MessageList.swift",
- "kind": "Array",
- "offset": 1485,
- "length": 2,
- "value": "[]"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/MessageList.swift",
- "kind": "BooleanLiteral",
- "offset": 1577,
- "length": 5,
- "value": "false"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/MessageList.swift",
- "kind": "BooleanLiteral",
- "offset": 1601,
- "length": 5,
- "value": "false"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift",
- "kind": "StringLiteral",
- "offset": 3968,
- "length": 22,
- "value": "\"cf_bundle_identifier\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift",
- "kind": "StringLiteral",
- "offset": 4014,
- "length": 32,
- "value": "\"cf_bundle_short_version_string\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift",
- "kind": "StringLiteral",
- "offset": 4068,
- "length": 19,
- "value": "\"cf_bundle_version\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift",
- "kind": "StringLiteral",
- "offset": 4119,
- "length": 19,
- "value": "\"app_store_receipt\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift",
- "kind": "StringLiteral",
- "offset": 4167,
- "length": 7,
- "value": "\"debug\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift",
- "kind": "StringLiteral",
- "offset": 4209,
- "length": 19,
- "value": "\"overriding_styles\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift",
- "kind": "StringLiteral",
- "offset": 4261,
- "length": 19,
- "value": "\"deployment_target\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift",
- "kind": "StringLiteral",
- "offset": 4305,
- "length": 13,
- "value": "\"dt_compiler\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift",
- "kind": "StringLiteral",
- "offset": 4348,
- "length": 19,
- "value": "\"dt_platform_build\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift",
- "kind": "StringLiteral",
- "offset": 4396,
- "length": 18,
- "value": "\"dt_platform_name\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift",
- "kind": "StringLiteral",
- "offset": 4446,
- "length": 21,
- "value": "\"dt_platform_version\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift",
- "kind": "StringLiteral",
- "offset": 4492,
- "length": 14,
- "value": "\"dt_sdk_build\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift",
- "kind": "StringLiteral",
- "offset": 4530,
- "length": 13,
- "value": "\"dt_sdk_name\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift",
- "kind": "StringLiteral",
- "offset": 4565,
- "length": 10,
- "value": "\"dt_xcode\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift",
- "kind": "StringLiteral",
- "offset": 4602,
- "length": 16,
- "value": "\"dt_xcode_build\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift",
- "kind": "StringLiteral",
- "offset": 4645,
- "length": 13,
- "value": "\"sdk_version\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift",
- "kind": "StringLiteral",
- "offset": 4697,
- "length": 26,
- "value": "\"sdk_programming_language\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift",
- "kind": "StringLiteral",
- "offset": 4753,
- "length": 17,
- "value": "\"sdk_author_name\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift",
- "kind": "StringLiteral",
- "offset": 4798,
- "length": 14,
- "value": "\"sdk_platform\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift",
- "kind": "StringLiteral",
- "offset": 4851,
- "length": 26,
- "value": "\"sdk_distribution_version\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift",
- "kind": "StringLiteral",
- "offset": 4913,
- "length": 18,
- "value": "\"sdk_distribution\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift",
- "kind": "StringLiteral",
- "offset": 3968,
- "length": 22,
- "value": "\"cf_bundle_identifier\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift",
- "kind": "StringLiteral",
- "offset": 4014,
- "length": 32,
- "value": "\"cf_bundle_short_version_string\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift",
- "kind": "StringLiteral",
- "offset": 4068,
- "length": 19,
- "value": "\"cf_bundle_version\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift",
- "kind": "StringLiteral",
- "offset": 4119,
- "length": 19,
- "value": "\"app_store_receipt\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift",
- "kind": "StringLiteral",
- "offset": 4167,
- "length": 7,
- "value": "\"debug\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift",
- "kind": "StringLiteral",
- "offset": 4209,
- "length": 19,
- "value": "\"overriding_styles\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift",
- "kind": "StringLiteral",
- "offset": 4261,
- "length": 19,
- "value": "\"deployment_target\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift",
- "kind": "StringLiteral",
- "offset": 4305,
- "length": 13,
- "value": "\"dt_compiler\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift",
- "kind": "StringLiteral",
- "offset": 4348,
- "length": 19,
- "value": "\"dt_platform_build\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift",
- "kind": "StringLiteral",
- "offset": 4396,
- "length": 18,
- "value": "\"dt_platform_name\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift",
- "kind": "StringLiteral",
- "offset": 4446,
- "length": 21,
- "value": "\"dt_platform_version\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift",
- "kind": "StringLiteral",
- "offset": 4492,
- "length": 14,
- "value": "\"dt_sdk_build\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift",
- "kind": "StringLiteral",
- "offset": 4530,
- "length": 13,
- "value": "\"dt_sdk_name\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift",
- "kind": "StringLiteral",
- "offset": 4565,
- "length": 10,
- "value": "\"dt_xcode\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift",
- "kind": "StringLiteral",
- "offset": 4602,
- "length": 16,
- "value": "\"dt_xcode_build\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift",
- "kind": "StringLiteral",
- "offset": 4645,
- "length": 13,
- "value": "\"sdk_version\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift",
- "kind": "StringLiteral",
- "offset": 4697,
- "length": 26,
- "value": "\"sdk_programming_language\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift",
- "kind": "StringLiteral",
- "offset": 4753,
- "length": 17,
- "value": "\"sdk_author_name\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift",
- "kind": "StringLiteral",
- "offset": 4798,
- "length": 14,
- "value": "\"sdk_platform\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift",
- "kind": "StringLiteral",
- "offset": 4851,
- "length": 26,
- "value": "\"sdk_distribution_version\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift",
- "kind": "StringLiteral",
- "offset": 4913,
- "length": 18,
- "value": "\"sdk_distribution\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift",
- "kind": "StringLiteral",
- "offset": 5093,
- "length": 13,
- "value": "\"has_receipt\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift",
- "kind": "StringLiteral",
- "offset": 5093,
- "length": 13,
- "value": "\"has_receipt\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyViewController.swift",
- "kind": "FloatLiteral",
- "offset": 369,
- "length": 4,
- "value": "0.30"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyViewController.swift",
- "kind": "IntegerLiteral",
- "offset": 541,
- "length": 1,
- "value": "1"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyViewController.swift",
- "kind": "IntegerLiteral",
- "offset": 809,
- "length": 1,
- "value": "1"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyViewController.swift",
- "kind": "FloatLiteral",
- "offset": 3051,
- "length": 4,
- "value": "0.33"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyViewController.swift",
- "kind": "BooleanLiteral",
- "offset": 3154,
- "length": 4,
- "value": "true"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyViewController.swift",
- "kind": "BooleanLiteral",
- "offset": 3202,
- "length": 5,
- "value": "false"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyViewController.swift",
- "kind": "BooleanLiteral",
- "offset": 32176,
- "length": 5,
- "value": "false"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyViewController.swift",
- "kind": "BooleanLiteral",
- "offset": 39805,
- "length": 5,
- "value": "false"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyViewController.swift",
- "kind": "StringLiteral",
- "offset": 180,
- "length": 20,
- "value": "\"ApptentiveKit.SurveyViewController\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyViewController.swift",
- "kind": "StringLiteral",
- "offset": 180,
- "length": 20,
- "value": "\"ApptentiveKit.SurveyViewController\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyViewModel+Page.swift",
- "kind": "Array",
- "offset": 1518,
- "length": 2,
- "value": "[]"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyViewModel+Page.swift",
- "kind": "StringLiteral",
- "offset": 1938,
- "length": 9,
- "value": "\"invalid\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyViewModel+Page.swift",
- "kind": "StringLiteral",
- "offset": 1962,
- "length": 24,
- "value": "\"An error has occurred.\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyViewModel+Page.swift",
- "kind": "StringLiteral",
- "offset": 2008,
- "length": 7,
- "value": "\"Close\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyViewModel+Page.swift",
- "kind": "Array",
- "offset": 2031,
- "length": 2,
- "value": "[]"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift",
- "kind": "StringLiteral",
- "offset": 4266,
- "length": 6,
- "value": "\"$and\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift",
- "kind": "StringLiteral",
- "offset": 4375,
- "length": 5,
- "value": "\"$or\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift",
- "kind": "StringLiteral",
- "offset": 4482,
- "length": 6,
- "value": "\"$not\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift",
- "kind": "StringLiteral",
- "offset": 4266,
- "length": 6,
- "value": "\"$and\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift",
- "kind": "StringLiteral",
- "offset": 4375,
- "length": 5,
- "value": "\"$or\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift",
- "kind": "StringLiteral",
- "offset": 4482,
- "length": 6,
- "value": "\"$not\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift",
- "kind": "StringLiteral",
- "offset": 5479,
- "length": 9,
- "value": "\"$exists\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift",
- "kind": "StringLiteral",
- "offset": 5510,
- "length": 5,
- "value": "\"$ne\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift",
- "kind": "StringLiteral",
- "offset": 5534,
- "length": 5,
- "value": "\"$eq\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift",
- "kind": "StringLiteral",
- "offset": 5567,
- "length": 6,
- "value": "\"$lte\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift",
- "kind": "StringLiteral",
- "offset": 5594,
- "length": 5,
- "value": "\"$lt\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift",
- "kind": "StringLiteral",
- "offset": 5623,
- "length": 5,
- "value": "\"$gt\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift",
- "kind": "StringLiteral",
- "offset": 5659,
- "length": 6,
- "value": "\"$gte\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift",
- "kind": "StringLiteral",
- "offset": 5688,
- "length": 14,
- "value": "\"$starts_with\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift",
- "kind": "StringLiteral",
- "offset": 5723,
- "length": 12,
- "value": "\"$ends_with\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift",
- "kind": "StringLiteral",
- "offset": 5756,
- "length": 11,
- "value": "\"$contains\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift",
- "kind": "StringLiteral",
- "offset": 5786,
- "length": 9,
- "value": "\"$before\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift",
- "kind": "StringLiteral",
- "offset": 5813,
- "length": 8,
- "value": "\"$after\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift",
- "kind": "StringLiteral",
- "offset": 5479,
- "length": 9,
- "value": "\"$exists\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift",
- "kind": "StringLiteral",
- "offset": 5510,
- "length": 5,
- "value": "\"$ne\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift",
- "kind": "StringLiteral",
- "offset": 5534,
- "length": 5,
- "value": "\"$eq\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift",
- "kind": "StringLiteral",
- "offset": 5567,
- "length": 6,
- "value": "\"$lte\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift",
- "kind": "StringLiteral",
- "offset": 5594,
- "length": 5,
- "value": "\"$lt\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift",
- "kind": "StringLiteral",
- "offset": 5623,
- "length": 5,
- "value": "\"$gt\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift",
- "kind": "StringLiteral",
- "offset": 5659,
- "length": 6,
- "value": "\"$gte\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift",
- "kind": "StringLiteral",
- "offset": 5688,
- "length": 14,
- "value": "\"$starts_with\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift",
- "kind": "StringLiteral",
- "offset": 5723,
- "length": 12,
- "value": "\"$ends_with\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift",
- "kind": "StringLiteral",
- "offset": 5756,
- "length": 11,
- "value": "\"$contains\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift",
- "kind": "StringLiteral",
- "offset": 5786,
- "length": 9,
- "value": "\"$before\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift",
- "kind": "StringLiteral",
- "offset": 5813,
- "length": 8,
- "value": "\"$after\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterViewModel.swift",
- "kind": "IntegerLiteral",
- "offset": 2335,
- "length": 1,
- "value": "4"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterViewModel.swift",
- "kind": "IntegerLiteral",
- "offset": 4177,
- "length": 2,
- "value": "44"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterViewModel.swift",
- "kind": "IntegerLiteral",
- "offset": 4189,
- "length": 2,
- "value": "44"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterViewModel.swift",
- "kind": "StringLiteral",
- "offset": 34268,
- "length": 17,
- "value": "\"SELF MATCHES %@\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterViewModel.swift",
- "kind": "StringLiteral",
- "offset": 34287,
- "length": 51,
- "value": "\"[A-Z0-9a-z._%+-]+@[A-Za-z0-9.-]+\\.[A-Za-z]{2,64}\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterViewModel.swift",
- "kind": "StringLiteral",
- "offset": 34824,
- "length": 12,
- "value": "\"message_id\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterViewModel.swift",
- "kind": "StringLiteral",
- "offset": 34824,
- "length": 12,
- "value": "\"message_id\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversation.swift",
- "kind": "BooleanLiteral",
- "offset": 305,
- "length": 4,
- "value": "true"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversation.swift",
- "kind": "StringLiteral",
- "offset": 1303,
- "length": 7,
- "value": "\"token\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversation.swift",
- "kind": "StringLiteral",
- "offset": 1343,
- "length": 12,
- "value": "\"identifier\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversation.swift",
- "kind": "StringLiteral",
- "offset": 1388,
- "length": 12,
- "value": "\"engagement\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversation.swift",
- "kind": "StringLiteral",
- "offset": 1429,
- "length": 8,
- "value": "\"person\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversation.swift",
- "kind": "StringLiteral",
- "offset": 1466,
- "length": 8,
- "value": "\"device\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversation.swift",
- "kind": "StringLiteral",
- "offset": 1503,
- "length": 8,
- "value": "\"random\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversation.swift",
- "kind": "StringLiteral",
- "offset": 220,
- "length": 18,
- "value": "\"ApptentiveKit.LegacyConversation\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyViewModel+Question.swift",
- "kind": "StringLiteral",
- "offset": 1770,
- "length": 30,
- "value": "\"Should have a view model set\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyViewModel+Question.swift",
- "kind": "BooleanLiteral",
- "offset": 1559,
- "length": 5,
- "value": "false"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyOtherChoiceCell.swift",
- "kind": "IntegerLiteral",
- "offset": 1669,
- "length": 1,
- "value": "1"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyOtherChoiceCell.swift",
- "kind": "IntegerLiteral",
- "offset": 1673,
- "length": 1,
- "value": "0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyOtherChoiceCell.swift",
- "kind": "BooleanLiteral",
- "offset": 1523,
- "length": 5,
- "value": "false"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Event.swift",
- "kind": "StringLiteral",
- "offset": 3952,
- "length": 5,
- "value": "\"#%\/\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "Array",
- "offset": 4738,
- "length": 2,
- "value": "[]"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "BooleanLiteral",
- "offset": 7169,
- "length": 5,
- "value": "false"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 11908,
- "length": 13,
- "value": "\"app_release\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 11908,
- "length": 13,
- "value": "\"app_release\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 13855,
- "length": 19,
- "value": "\"client_created_at\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 13908,
- "length": 30,
- "value": "\"client_created_at_utc_offset\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 13964,
- "length": 12,
- "value": "\"session_id\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 14027,
- "length": 13,
- "value": "\"custom_data\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 14166,
- "length": 16,
- "value": "\"interaction_id\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 14207,
- "length": 6,
- "value": "\"data\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 14357,
- "length": 7,
- "value": "\"email\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 14410,
- "length": 14,
- "value": "\"mparticle_id\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 14489,
- "length": 9,
- "value": "\"os_name\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 14524,
- "length": 12,
- "value": "\"os_version\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 14560,
- "length": 10,
- "value": "\"os_build\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 14649,
- "length": 23,
- "value": "\"content_size_category\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 14698,
- "length": 12,
- "value": "\"locale_raw\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 14744,
- "length": 21,
- "value": "\"locale_country_code\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 14800,
- "length": 22,
- "value": "\"locale_language_code\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 14848,
- "length": 12,
- "value": "\"utc_offset\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 14901,
- "length": 20,
- "value": "\"integration_config\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 14959,
- "length": 15,
- "value": "\"advertiser_id\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 15054,
- "length": 22,
- "value": "\"cf_bundle_identifier\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 15100,
- "length": 32,
- "value": "\"cf_bundle_short_version_string\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 15154,
- "length": 19,
- "value": "\"cf_bundle_version\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 15205,
- "length": 19,
- "value": "\"app_store_receipt\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 15253,
- "length": 7,
- "value": "\"debug\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 15295,
- "length": 19,
- "value": "\"overriding_styles\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 15347,
- "length": 19,
- "value": "\"deployment_target\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 15391,
- "length": 13,
- "value": "\"dt_compiler\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 15434,
- "length": 19,
- "value": "\"dt_platform_build\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 15482,
- "length": 18,
- "value": "\"dt_platform_name\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 15532,
- "length": 21,
- "value": "\"dt_platform_version\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 15578,
- "length": 14,
- "value": "\"dt_sdk_build\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 15616,
- "length": 13,
- "value": "\"dt_sdk_name\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 15651,
- "length": 10,
- "value": "\"dt_xcode\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 15688,
- "length": 16,
- "value": "\"dt_xcode_build\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 15731,
- "length": 13,
- "value": "\"sdk_version\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 15783,
- "length": 26,
- "value": "\"sdk_programming_language\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 15839,
- "length": 17,
- "value": "\"sdk_author_name\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 15884,
- "length": 14,
- "value": "\"sdk_platform\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 15937,
- "length": 26,
- "value": "\"sdk_distribution_version\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 15999,
- "length": 18,
- "value": "\"sdk_distribution\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 16088,
- "length": 11,
- "value": "\"automated\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 16124,
- "length": 8,
- "value": "\"hidden\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 13855,
- "length": 19,
- "value": "\"client_created_at\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 13908,
- "length": 30,
- "value": "\"client_created_at_utc_offset\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 13964,
- "length": 12,
- "value": "\"session_id\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 14027,
- "length": 13,
- "value": "\"custom_data\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 14166,
- "length": 16,
- "value": "\"interaction_id\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 14207,
- "length": 6,
- "value": "\"data\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 14357,
- "length": 7,
- "value": "\"email\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 14410,
- "length": 14,
- "value": "\"mparticle_id\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 14489,
- "length": 9,
- "value": "\"os_name\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 14524,
- "length": 12,
- "value": "\"os_version\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 14560,
- "length": 10,
- "value": "\"os_build\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 14649,
- "length": 23,
- "value": "\"content_size_category\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 14698,
- "length": 12,
- "value": "\"locale_raw\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 14744,
- "length": 21,
- "value": "\"locale_country_code\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 14800,
- "length": 22,
- "value": "\"locale_language_code\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 14848,
- "length": 12,
- "value": "\"utc_offset\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 14901,
- "length": 20,
- "value": "\"integration_config\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 14959,
- "length": 15,
- "value": "\"advertiser_id\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 15054,
- "length": 22,
- "value": "\"cf_bundle_identifier\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 15100,
- "length": 32,
- "value": "\"cf_bundle_short_version_string\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 15154,
- "length": 19,
- "value": "\"cf_bundle_version\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 15205,
- "length": 19,
- "value": "\"app_store_receipt\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 15253,
- "length": 7,
- "value": "\"debug\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 15295,
- "length": 19,
- "value": "\"overriding_styles\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 15347,
- "length": 19,
- "value": "\"deployment_target\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 15391,
- "length": 13,
- "value": "\"dt_compiler\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 15434,
- "length": 19,
- "value": "\"dt_platform_build\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 15482,
- "length": 18,
- "value": "\"dt_platform_name\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 15532,
- "length": 21,
- "value": "\"dt_platform_version\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 15578,
- "length": 14,
- "value": "\"dt_sdk_build\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 15616,
- "length": 13,
- "value": "\"dt_sdk_name\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 15651,
- "length": 10,
- "value": "\"dt_xcode\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 15688,
- "length": 16,
- "value": "\"dt_xcode_build\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 15731,
- "length": 13,
- "value": "\"sdk_version\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 15783,
- "length": 26,
- "value": "\"sdk_programming_language\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 15839,
- "length": 17,
- "value": "\"sdk_author_name\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 15884,
- "length": 14,
- "value": "\"sdk_platform\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 15937,
- "length": 26,
- "value": "\"sdk_distribution_version\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 15999,
- "length": 18,
- "value": "\"sdk_distribution\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 16088,
- "length": 11,
- "value": "\"automated\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 16124,
- "length": 8,
- "value": "\"hidden\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 16384,
- "length": 8,
- "value": "\"file[]\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Configuration.swift",
- "kind": "StringLiteral",
- "offset": 595,
- "length": 22,
- "value": "\"support_display_name\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Configuration.swift",
- "kind": "StringLiteral",
- "offset": 646,
- "length": 23,
- "value": "\"support_display_email\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Configuration.swift",
- "kind": "StringLiteral",
- "offset": 701,
- "length": 19,
- "value": "\"support_image_url\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Configuration.swift",
- "kind": "StringLiteral",
- "offset": 749,
- "length": 15,
- "value": "\"hide_branding\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Configuration.swift",
- "kind": "StringLiteral",
- "offset": 794,
- "length": 16,
- "value": "\"message_center\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Configuration.swift",
- "kind": "StringLiteral",
- "offset": 846,
- "length": 24,
- "value": "\"message_center_enabled\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Configuration.swift",
- "kind": "StringLiteral",
- "offset": 900,
- "length": 17,
- "value": "\"metrics_enabled\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Configuration.swift",
- "kind": "StringLiteral",
- "offset": 957,
- "length": 23,
- "value": "\"apptimize_integration\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Configuration.swift",
- "kind": "StringLiteral",
- "offset": 1017,
- "length": 15,
- "value": "\"collect_ad_id\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Configuration.swift",
- "kind": "StringLiteral",
- "offset": 595,
- "length": 22,
- "value": "\"support_display_name\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Configuration.swift",
- "kind": "StringLiteral",
- "offset": 646,
- "length": 23,
- "value": "\"support_display_email\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Configuration.swift",
- "kind": "StringLiteral",
- "offset": 701,
- "length": 19,
- "value": "\"support_image_url\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Configuration.swift",
- "kind": "StringLiteral",
- "offset": 749,
- "length": 15,
- "value": "\"hide_branding\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Configuration.swift",
- "kind": "StringLiteral",
- "offset": 794,
- "length": 16,
- "value": "\"message_center\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Configuration.swift",
- "kind": "StringLiteral",
- "offset": 846,
- "length": 24,
- "value": "\"message_center_enabled\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Configuration.swift",
- "kind": "StringLiteral",
- "offset": 900,
- "length": 17,
- "value": "\"metrics_enabled\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Configuration.swift",
- "kind": "StringLiteral",
- "offset": 957,
- "length": 23,
- "value": "\"apptimize_integration\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Configuration.swift",
- "kind": "StringLiteral",
- "offset": 1017,
- "length": 15,
- "value": "\"collect_ad_id\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Configuration.swift",
- "kind": "StringLiteral",
- "offset": 1402,
- "length": 9,
- "value": "\"fg_poll\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Configuration.swift",
- "kind": "StringLiteral",
- "offset": 1457,
- "length": 9,
- "value": "\"bg_poll\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Configuration.swift",
- "kind": "StringLiteral",
- "offset": 1499,
- "length": 16,
- "value": "\"email_required\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Configuration.swift",
- "kind": "StringLiteral",
- "offset": 1553,
- "length": 20,
- "value": "\"notification_popup\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Configuration.swift",
- "kind": "StringLiteral",
- "offset": 1402,
- "length": 9,
- "value": "\"fg_poll\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Configuration.swift",
- "kind": "StringLiteral",
- "offset": 1457,
- "length": 9,
- "value": "\"bg_poll\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Configuration.swift",
- "kind": "StringLiteral",
- "offset": 1499,
- "length": 16,
- "value": "\"email_required\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Configuration.swift",
- "kind": "StringLiteral",
- "offset": 1553,
- "length": 20,
- "value": "\"notification_popup\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Configuration.swift",
- "kind": "StringLiteral",
- "offset": 1746,
- "length": 9,
- "value": "\"enabled\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Configuration.swift",
- "kind": "StringLiteral",
- "offset": 1746,
- "length": 9,
- "value": "\"enabled\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyV11Configuration.swift",
- "kind": "StringLiteral",
- "offset": 1293,
- "length": 13,
- "value": "\"submit_text\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyV11Configuration.swift",
- "kind": "StringLiteral",
- "offset": 1338,
- "length": 18,
- "value": "\"validation_error\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyV11Configuration.swift",
- "kind": "StringLiteral",
- "offset": 1385,
- "length": 13,
- "value": "\"description\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyV11Configuration.swift",
- "kind": "StringLiteral",
- "offset": 1430,
- "length": 17,
- "value": "\"success_message\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyV11Configuration.swift",
- "kind": "StringLiteral",
- "offset": 1482,
- "length": 22,
- "value": "\"show_success_message\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyV11Configuration.swift",
- "kind": "StringLiteral",
- "offset": 1533,
- "length": 15,
- "value": "\"required_text\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyV11Configuration.swift",
- "kind": "StringLiteral",
- "offset": 1609,
- "length": 21,
- "value": "\"close_confirm_title\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyV11Configuration.swift",
- "kind": "StringLiteral",
- "offset": 1671,
- "length": 23,
- "value": "\"close_confirm_message\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyV11Configuration.swift",
- "kind": "StringLiteral",
- "offset": 1743,
- "length": 26,
- "value": "\"close_confirm_close_text\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyV11Configuration.swift",
- "kind": "StringLiteral",
- "offset": 1817,
- "length": 25,
- "value": "\"close_confirm_back_text\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyV11Configuration.swift",
- "kind": "StringLiteral",
- "offset": 1877,
- "length": 22,
- "value": "\"terms_and_conditions\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyV11Configuration.swift",
- "kind": "StringLiteral",
- "offset": 1293,
- "length": 13,
- "value": "\"submit_text\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyV11Configuration.swift",
- "kind": "StringLiteral",
- "offset": 1338,
- "length": 18,
- "value": "\"validation_error\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyV11Configuration.swift",
- "kind": "StringLiteral",
- "offset": 1385,
- "length": 13,
- "value": "\"description\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyV11Configuration.swift",
- "kind": "StringLiteral",
- "offset": 1430,
- "length": 17,
- "value": "\"success_message\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyV11Configuration.swift",
- "kind": "StringLiteral",
- "offset": 1482,
- "length": 22,
- "value": "\"show_success_message\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyV11Configuration.swift",
- "kind": "StringLiteral",
- "offset": 1533,
- "length": 15,
- "value": "\"required_text\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyV11Configuration.swift",
- "kind": "StringLiteral",
- "offset": 1609,
- "length": 21,
- "value": "\"close_confirm_title\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyV11Configuration.swift",
- "kind": "StringLiteral",
- "offset": 1671,
- "length": 23,
- "value": "\"close_confirm_message\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyV11Configuration.swift",
- "kind": "StringLiteral",
- "offset": 1743,
- "length": 26,
- "value": "\"close_confirm_close_text\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyV11Configuration.swift",
- "kind": "StringLiteral",
- "offset": 1817,
- "length": 25,
- "value": "\"close_confirm_back_text\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyV11Configuration.swift",
- "kind": "StringLiteral",
- "offset": 1877,
- "length": 22,
- "value": "\"terms_and_conditions\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/AppRelease.swift",
- "kind": "StringLiteral",
- "offset": 350,
- "length": 5,
- "value": "\"ios\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/AppRelease.swift",
- "kind": "IntegerLiteral",
- "offset": 622,
- "length": 1,
- "value": "0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/AppRelease.swift",
- "kind": "IntegerLiteral",
- "offset": 638,
- "length": 1,
- "value": "0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/AppRelease.swift",
- "kind": "BooleanLiteral",
- "offset": 677,
- "length": 4,
- "value": "true"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/AppRelease.swift",
- "kind": "IntegerLiteral",
- "offset": 883,
- "length": 1,
- "value": "0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/AppRelease.swift",
- "kind": "IntegerLiteral",
- "offset": 899,
- "length": 1,
- "value": "0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/AppRelease.swift",
- "kind": "BooleanLiteral",
- "offset": 936,
- "length": 4,
- "value": "true"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/AppRelease.swift",
- "kind": "BooleanLiteral",
- "offset": 1091,
- "length": 5,
- "value": "false"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/AppRelease.swift",
- "kind": "BooleanLiteral",
- "offset": 1176,
- "length": 5,
- "value": "false"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/AppRelease.swift",
- "kind": "BooleanLiteral",
- "offset": 1288,
- "length": 5,
- "value": "false"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/AppRelease.swift",
- "kind": "BooleanLiteral",
- "offset": 2200,
- "length": 5,
- "value": "false"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/AppRelease.swift",
- "kind": "BooleanLiteral",
- "offset": 2347,
- "length": 5,
- "value": "false"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+NotificationName.swift",
- "kind": "StringLiteral",
- "offset": 266,
- "length": 32,
- "value": "\"com.apptentive.payloadEnqueued\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+NotificationName.swift",
- "kind": "StringLiteral",
- "offset": 350,
- "length": 31,
- "value": "\"com.apptentive.payloadSending\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+NotificationName.swift",
- "kind": "StringLiteral",
- "offset": 430,
- "length": 28,
- "value": "\"com.apptentive.payloadSent\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+NotificationName.swift",
- "kind": "StringLiteral",
- "offset": 509,
- "length": 30,
- "value": "\"com.apptentive.payloadFailed\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+NotificationName.swift",
- "kind": "StringLiteral",
- "offset": 704,
- "length": 39,
- "value": "\"com.apptentive.apptentiveEventEngaged\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/Default UI\/MessageCenterViewController.swift",
- "kind": "StringLiteral",
- "offset": 812,
- "length": 21,
- "value": "\"MessageCellReceived\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/Default UI\/MessageCenterViewController.swift",
- "kind": "StringLiteral",
- "offset": 862,
- "length": 17,
- "value": "\"MessageSentCell\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/Default UI\/MessageCenterViewController.swift",
- "kind": "StringLiteral",
- "offset": 913,
- "length": 22,
- "value": "\"AutomatedMessageCell\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/Default UI\/MessageCenterViewController.swift",
- "kind": "BooleanLiteral",
- "offset": 24568,
- "length": 5,
- "value": "false"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/Default UI\/MessageCenterViewController.swift",
- "kind": "IntegerLiteral",
- "offset": 24669,
- "length": 6,
- "value": "0xFFFF"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/Default UI\/MessageCenterViewController.swift",
- "kind": "StringLiteral",
- "offset": 220,
- "length": 27,
- "value": "\"ApptentiveKit.MessageCenterViewController\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/Default UI\/MessageCenterViewController.swift",
- "kind": "StringLiteral",
- "offset": 220,
- "length": 27,
- "value": "\"ApptentiveKit.MessageCenterViewController\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Dialog\/DialogViewModel.swift",
- "kind": "StringLiteral",
- "offset": 6309,
- "length": 24,
- "value": "\"invoked_interaction_id\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Dialog\/DialogViewModel.swift",
- "kind": "StringLiteral",
- "offset": 6358,
- "length": 11,
- "value": "\"action_id\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Dialog\/DialogViewModel.swift",
- "kind": "StringLiteral",
- "offset": 6309,
- "length": 24,
- "value": "\"invoked_interaction_id\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Dialog\/DialogViewModel.swift",
- "kind": "StringLiteral",
- "offset": 6358,
- "length": 11,
- "value": "\"action_id\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Dialog\/UI\/DialogView.swift",
- "kind": "IntegerLiteral",
- "offset": 1277,
- "length": 2,
- "value": "15"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Dialog\/UI\/DialogView.swift",
- "kind": "IntegerLiteral",
- "offset": 1381,
- "length": 1,
- "value": "0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Dialog\/UI\/DialogView.swift",
- "kind": "BooleanLiteral",
- "offset": 1654,
- "length": 5,
- "value": "false"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Dialog\/UI\/DialogView.swift",
- "kind": "BooleanLiteral",
- "offset": 2617,
- "length": 5,
- "value": "false"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyEngagement.swift",
- "kind": "BooleanLiteral",
- "offset": 292,
- "length": 4,
- "value": "true"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyEngagement.swift",
- "kind": "StringLiteral",
- "offset": 969,
- "length": 14,
- "value": "\"interactions\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyEngagement.swift",
- "kind": "StringLiteral",
- "offset": 1016,
- "length": 12,
- "value": "\"codePoints\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyEngagement.swift",
- "kind": "StringLiteral",
- "offset": 209,
- "length": 16,
- "value": "\"ApptentiveKit.LegacyEngagement\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyRandom.swift",
- "kind": "StringLiteral",
- "offset": 848,
- "length": 15,
- "value": "\"random_values\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyRandom.swift",
- "kind": "StringLiteral",
- "offset": 201,
- "length": 12,
- "value": "\"ApptentiveKit.LegacyRandom\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyDevice.swift",
- "kind": "StringLiteral",
- "offset": 833,
- "length": 12,
- "value": "\"customData\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyDevice.swift",
- "kind": "StringLiteral",
- "offset": 201,
- "length": 12,
- "value": "\"ApptentiveKit.LegacyDevice\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Targeting\/Criteria+Logging.swift",
- "kind": "IntegerLiteral",
- "offset": 4400,
- "length": 1,
- "value": "0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/Default UI\/EditProfileViewController.swift",
- "kind": "StringLiteral",
- "offset": 183,
- "length": 25,
- "value": "\"ApptentiveKit.EditProfileViewController\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadata.swift",
- "kind": "BooleanLiteral",
- "offset": 322,
- "length": 4,
- "value": "true"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadata.swift",
- "kind": "StringLiteral",
- "offset": 229,
- "length": 26,
- "value": "\"ApptentiveKit.LegacyConversationMetadata\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/ApptentiveImageView.swift",
- "kind": "StringLiteral",
- "offset": 197,
- "length": 19,
- "value": "\"ApptentiveKit.ApptentiveImageView\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/ApptentiveImageView.swift",
- "kind": "StringLiteral",
- "offset": 197,
- "length": 19,
- "value": "\"ApptentiveKit.ApptentiveImageView\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/PersonContent.swift",
- "kind": "StringLiteral",
- "offset": 1018,
- "length": 7,
- "value": "\"email\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/PersonContent.swift",
- "kind": "StringLiteral",
- "offset": 1053,
- "length": 14,
- "value": "\"mparticle_id\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/PersonContent.swift",
- "kind": "StringLiteral",
- "offset": 1094,
- "length": 13,
- "value": "\"custom_data\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/PersonContent.swift",
- "kind": "StringLiteral",
- "offset": 1018,
- "length": 7,
- "value": "\"email\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/PersonContent.swift",
- "kind": "StringLiteral",
- "offset": 1053,
- "length": 14,
- "value": "\"mparticle_id\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/PersonContent.swift",
- "kind": "StringLiteral",
- "offset": 1094,
- "length": 13,
- "value": "\"custom_data\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/MessageContent.swift",
- "kind": "StringLiteral",
- "offset": 1026,
- "length": 13,
- "value": "\"custom_data\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/MessageContent.swift",
- "kind": "StringLiteral",
- "offset": 1067,
- "length": 11,
- "value": "\"automated\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/MessageContent.swift",
- "kind": "StringLiteral",
- "offset": 1103,
- "length": 8,
- "value": "\"hidden\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/MessageContent.swift",
- "kind": "StringLiteral",
- "offset": 1026,
- "length": 13,
- "value": "\"custom_data\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/MessageContent.swift",
- "kind": "StringLiteral",
- "offset": 1067,
- "length": 11,
- "value": "\"automated\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/MessageContent.swift",
- "kind": "StringLiteral",
- "offset": 1103,
- "length": 8,
- "value": "\"hidden\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift",
- "kind": "IntegerLiteral",
- "offset": 17565,
- "length": 5,
- "value": "15411"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift",
- "kind": "IntegerLiteral",
- "offset": 19768,
- "length": 1,
- "value": "0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift",
- "kind": "IntegerLiteral",
- "offset": 19842,
- "length": 1,
- "value": "1"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift",
- "kind": "IntegerLiteral",
- "offset": 19912,
- "length": 1,
- "value": "2"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift",
- "kind": "IntegerLiteral",
- "offset": 19979,
- "length": 1,
- "value": "3"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift",
- "kind": "IntegerLiteral",
- "offset": 20050,
- "length": 1,
- "value": "4"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift",
- "kind": "IntegerLiteral",
- "offset": 20138,
- "length": 1,
- "value": "5"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift",
- "kind": "IntegerLiteral",
- "offset": 20213,
- "length": 1,
- "value": "6"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift",
- "kind": "IntegerLiteral",
- "offset": 20265,
- "length": 1,
- "value": "7"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift",
- "kind": "IntegerLiteral",
- "offset": 20321,
- "length": 1,
- "value": "8"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift",
- "kind": "IntegerLiteral",
- "offset": 20393,
- "length": 1,
- "value": "9"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift",
- "kind": "IntegerLiteral",
- "offset": 20476,
- "length": 2,
- "value": "10"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift",
- "kind": "IntegerLiteral",
- "offset": 20614,
- "length": 2,
- "value": "11"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift",
- "kind": "IntegerLiteral",
- "offset": 19768,
- "length": 1,
- "value": "0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift",
- "kind": "IntegerLiteral",
- "offset": 19842,
- "length": 1,
- "value": "1"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift",
- "kind": "IntegerLiteral",
- "offset": 19912,
- "length": 1,
- "value": "2"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift",
- "kind": "IntegerLiteral",
- "offset": 19979,
- "length": 1,
- "value": "3"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift",
- "kind": "IntegerLiteral",
- "offset": 20050,
- "length": 1,
- "value": "4"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift",
- "kind": "IntegerLiteral",
- "offset": 20138,
- "length": 1,
- "value": "5"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift",
- "kind": "IntegerLiteral",
- "offset": 20213,
- "length": 1,
- "value": "6"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift",
- "kind": "IntegerLiteral",
- "offset": 20265,
- "length": 1,
- "value": "7"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift",
- "kind": "IntegerLiteral",
- "offset": 20321,
- "length": 1,
- "value": "8"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift",
- "kind": "IntegerLiteral",
- "offset": 20393,
- "length": 1,
- "value": "9"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift",
- "kind": "IntegerLiteral",
- "offset": 20476,
- "length": 2,
- "value": "10"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift",
- "kind": "IntegerLiteral",
- "offset": 20614,
- "length": 2,
- "value": "11"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift",
- "kind": "BooleanLiteral",
- "offset": 21594,
- "length": 4,
- "value": "true"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift",
- "kind": "BooleanLiteral",
- "offset": 22983,
- "length": 5,
- "value": "false"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift",
- "kind": "StringLiteral",
- "offset": 20752,
- "length": 23,
- "value": "\"ApptentiveKit.ApptentiveConfiguration\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift",
- "kind": "IntegerLiteral",
- "offset": 24347,
- "length": 1,
- "value": "0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift",
- "kind": "IntegerLiteral",
- "offset": 24425,
- "length": 1,
- "value": "1"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift",
- "kind": "IntegerLiteral",
- "offset": 24521,
- "length": 1,
- "value": "2"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift",
- "kind": "IntegerLiteral",
- "offset": 24584,
- "length": 1,
- "value": "3"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift",
- "kind": "IntegerLiteral",
- "offset": 24347,
- "length": 1,
- "value": "0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift",
- "kind": "IntegerLiteral",
- "offset": 24425,
- "length": 1,
- "value": "1"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift",
- "kind": "IntegerLiteral",
- "offset": 24521,
- "length": 1,
- "value": "2"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift",
- "kind": "IntegerLiteral",
- "offset": 24584,
- "length": 1,
- "value": "3"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift",
- "kind": "IntegerLiteral",
- "offset": 24834,
- "length": 1,
- "value": "0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift",
- "kind": "IntegerLiteral",
- "offset": 24892,
- "length": 1,
- "value": "1"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift",
- "kind": "IntegerLiteral",
- "offset": 24940,
- "length": 1,
- "value": "2"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift",
- "kind": "IntegerLiteral",
- "offset": 24989,
- "length": 1,
- "value": "3"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift",
- "kind": "IntegerLiteral",
- "offset": 25044,
- "length": 1,
- "value": "4"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift",
- "kind": "IntegerLiteral",
- "offset": 25128,
- "length": 1,
- "value": "5"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift",
- "kind": "IntegerLiteral",
- "offset": 25193,
- "length": 1,
- "value": "6"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift",
- "kind": "IntegerLiteral",
- "offset": 24834,
- "length": 1,
- "value": "0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift",
- "kind": "IntegerLiteral",
- "offset": 24892,
- "length": 1,
- "value": "1"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift",
- "kind": "IntegerLiteral",
- "offset": 24940,
- "length": 1,
- "value": "2"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift",
- "kind": "IntegerLiteral",
- "offset": 24989,
- "length": 1,
- "value": "3"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift",
- "kind": "IntegerLiteral",
- "offset": 25044,
- "length": 1,
- "value": "4"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift",
- "kind": "IntegerLiteral",
- "offset": 25128,
- "length": 1,
- "value": "5"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift",
- "kind": "IntegerLiteral",
- "offset": 25193,
- "length": 1,
- "value": "6"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift",
- "kind": "StringLiteral",
- "offset": 25745,
- "length": 18,
- "value": "\"ApptentiveKit.TermsAndConditions\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/DeviceContent.swift",
- "kind": "StringLiteral",
- "offset": 2478,
- "length": 9,
- "value": "\"os_name\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/DeviceContent.swift",
- "kind": "StringLiteral",
- "offset": 2513,
- "length": 12,
- "value": "\"os_version\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/DeviceContent.swift",
- "kind": "StringLiteral",
- "offset": 2549,
- "length": 10,
- "value": "\"os_build\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/DeviceContent.swift",
- "kind": "StringLiteral",
- "offset": 2638,
- "length": 23,
- "value": "\"content_size_category\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/DeviceContent.swift",
- "kind": "StringLiteral",
- "offset": 2687,
- "length": 12,
- "value": "\"locale_raw\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/DeviceContent.swift",
- "kind": "StringLiteral",
- "offset": 2733,
- "length": 21,
- "value": "\"locale_country_code\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/DeviceContent.swift",
- "kind": "StringLiteral",
- "offset": 2789,
- "length": 22,
- "value": "\"locale_language_code\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/DeviceContent.swift",
- "kind": "StringLiteral",
- "offset": 2852,
- "length": 20,
- "value": "\"integration_config\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/DeviceContent.swift",
- "kind": "StringLiteral",
- "offset": 2910,
- "length": 15,
- "value": "\"advertiser_id\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/DeviceContent.swift",
- "kind": "StringLiteral",
- "offset": 2952,
- "length": 13,
- "value": "\"custom_data\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/DeviceContent.swift",
- "kind": "StringLiteral",
- "offset": 2478,
- "length": 9,
- "value": "\"os_name\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/DeviceContent.swift",
- "kind": "StringLiteral",
- "offset": 2513,
- "length": 12,
- "value": "\"os_version\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/DeviceContent.swift",
- "kind": "StringLiteral",
- "offset": 2549,
- "length": 10,
- "value": "\"os_build\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/DeviceContent.swift",
- "kind": "StringLiteral",
- "offset": 2638,
- "length": 23,
- "value": "\"content_size_category\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/DeviceContent.swift",
- "kind": "StringLiteral",
- "offset": 2687,
- "length": 12,
- "value": "\"locale_raw\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/DeviceContent.swift",
- "kind": "StringLiteral",
- "offset": 2733,
- "length": 21,
- "value": "\"locale_country_code\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/DeviceContent.swift",
- "kind": "StringLiteral",
- "offset": 2789,
- "length": 22,
- "value": "\"locale_language_code\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/DeviceContent.swift",
- "kind": "StringLiteral",
- "offset": 2852,
- "length": 20,
- "value": "\"integration_config\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/DeviceContent.swift",
- "kind": "StringLiteral",
- "offset": 2910,
- "length": 15,
- "value": "\"advertiser_id\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/DeviceContent.swift",
- "kind": "StringLiteral",
- "offset": 2952,
- "length": 13,
- "value": "\"custom_data\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Environment.swift",
- "kind": "StringLiteral",
- "offset": 6445,
- "length": 14,
- "value": "\"Distribution\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Environment.swift",
- "kind": "StringLiteral",
- "offset": 6476,
- "length": 7,
- "value": "\"plist\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Environment.swift",
- "kind": "Array",
- "offset": 6635,
- "length": 2,
- "value": "[]"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Environment.swift",
- "kind": "StringLiteral",
- "offset": 6718,
- "length": 28,
- "value": "\"CFBundleShortVersionString\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Environment.swift",
- "kind": "StringLiteral",
- "offset": 6810,
- "length": 65,
- "value": "\"Unable to read SDK version from ApptentiveKit's Info.plist file\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Environment.swift",
- "kind": "StringLiteral",
- "offset": 6896,
- "length": 13,
- "value": "\"Unavailable\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Environment.swift",
- "kind": "StringLiteral",
- "offset": 6991,
- "length": 28,
- "value": "\"CFBundleShortVersionString\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Environment.swift",
- "kind": "StringLiteral",
- "offset": 7140,
- "length": 133,
- "value": "\"ApptentiveKit framework is damaged! Version in Info.plist (\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Environment.swift",
- "kind": "StringLiteral",
- "offset": 7225,
- "length": 1,
- "value": "\") does not match SDK version (\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Environment.swift",
- "kind": "StringLiteral",
- "offset": 7271,
- "length": 1,
- "value": "\")\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/PayloadSender.swift",
- "kind": "StringLiteral",
- "offset": 267,
- "length": 7,
- "value": "\"error\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/PayloadSender.swift",
- "kind": "StringLiteral",
- "offset": 303,
- "length": 9,
- "value": "\"payload\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/PayloadSender.swift",
- "kind": "BooleanLiteral",
- "offset": 1759,
- "length": 5,
- "value": "false"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/PayloadSender.swift",
- "kind": "BooleanLiteral",
- "offset": 4250,
- "length": 4,
- "value": "true"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/PayloadSender.swift",
- "kind": "BooleanLiteral",
- "offset": 4373,
- "length": 5,
- "value": "false"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/PayloadSender.swift",
- "kind": "BooleanLiteral",
- "offset": 4474,
- "length": 5,
- "value": "false"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/PayloadSender.swift",
- "kind": "BooleanLiteral",
- "offset": 4612,
- "length": 5,
- "value": "false"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/PayloadSender.swift",
- "kind": "BooleanLiteral",
- "offset": 4929,
- "length": 4,
- "value": "true"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/MessageManager.swift",
- "kind": "IntegerLiteral",
- "offset": 1392,
- "length": 2,
- "value": "44"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/MessageManager.swift",
- "kind": "IntegerLiteral",
- "offset": 1404,
- "length": 2,
- "value": "44"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/MessageManager.swift",
- "kind": "BooleanLiteral",
- "offset": 2594,
- "length": 4,
- "value": "true"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/MessageManager.swift",
- "kind": "BooleanLiteral",
- "offset": 2907,
- "length": 5,
- "value": "false"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/EventContent.swift",
- "kind": "StringLiteral",
- "offset": 2625,
- "length": 16,
- "value": "\"interaction_id\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/EventContent.swift",
- "kind": "StringLiteral",
- "offset": 2666,
- "length": 6,
- "value": "\"data\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/EventContent.swift",
- "kind": "StringLiteral",
- "offset": 2704,
- "length": 13,
- "value": "\"custom_data\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/EventContent.swift",
- "kind": "StringLiteral",
- "offset": 2625,
- "length": 16,
- "value": "\"interaction_id\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/EventContent.swift",
- "kind": "StringLiteral",
- "offset": 2666,
- "length": 6,
- "value": "\"data\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/EventContent.swift",
- "kind": "StringLiteral",
- "offset": 2704,
- "length": 13,
- "value": "\"custom_data\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Dialog\/UI\/DialogButton.swift",
- "kind": "IntegerLiteral",
- "offset": 648,
- "length": 1,
- "value": "0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Dialog\/UI\/DialogButton.swift",
- "kind": "IntegerLiteral",
- "offset": 750,
- "length": 1,
- "value": "0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 1305,
- "length": 13,
- "value": "\"description\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 1349,
- "length": 17,
- "value": "\"success_message\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 1407,
- "length": 22,
- "value": "\"show_success_message\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 1456,
- "length": 13,
- "value": "\"submit_text\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 1494,
- "length": 11,
- "value": "\"next_text\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 1537,
- "length": 18,
- "value": "\"validation_error\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 1584,
- "length": 15,
- "value": "\"required_text\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 1638,
- "length": 21,
- "value": "\"close_confirm_title\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 1700,
- "length": 23,
- "value": "\"close_confirm_message\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 1773,
- "length": 26,
- "value": "\"close_confirm_close_text\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 1848,
- "length": 25,
- "value": "\"close_confirm_back_text\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 1908,
- "length": 22,
- "value": "\"terms_and_conditions\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 1959,
- "length": 15,
- "value": "\"question_sets\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 1999,
- "length": 11,
- "value": "\"render_as\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 2043,
- "length": 19,
- "value": "\"intro_button_text\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 2097,
- "length": 21,
- "value": "\"success_button_text\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 2149,
- "length": 17,
- "value": "\"disclaimer_text\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 1305,
- "length": 13,
- "value": "\"description\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 1349,
- "length": 17,
- "value": "\"success_message\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 1407,
- "length": 22,
- "value": "\"show_success_message\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 1456,
- "length": 13,
- "value": "\"submit_text\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 1494,
- "length": 11,
- "value": "\"next_text\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 1537,
- "length": 18,
- "value": "\"validation_error\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 1584,
- "length": 15,
- "value": "\"required_text\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 1638,
- "length": 21,
- "value": "\"close_confirm_title\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 1700,
- "length": 23,
- "value": "\"close_confirm_message\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 1773,
- "length": 26,
- "value": "\"close_confirm_close_text\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 1848,
- "length": 25,
- "value": "\"close_confirm_back_text\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 1908,
- "length": 22,
- "value": "\"terms_and_conditions\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 1959,
- "length": 15,
- "value": "\"question_sets\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 1999,
- "length": 11,
- "value": "\"render_as\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 2043,
- "length": 19,
- "value": "\"intro_button_text\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 2097,
- "length": 21,
- "value": "\"success_button_text\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 2149,
- "length": 17,
- "value": "\"disclaimer_text\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 2861,
- "length": 7,
- "value": "\"value\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 2953,
- "length": 15,
- "value": "\"error_message\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 3029,
- "length": 16,
- "value": "\"answer_choices\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 3079,
- "length": 16,
- "value": "\"min_selections\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 3129,
- "length": 16,
- "value": "\"max_selections\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 3208,
- "length": 15,
- "value": "\"freeform_hint\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 3253,
- "length": 5,
- "value": "\"min\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 3287,
- "length": 5,
- "value": "\"max\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 3325,
- "length": 11,
- "value": "\"min_label\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 3369,
- "length": 11,
- "value": "\"max_label\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 2861,
- "length": 7,
- "value": "\"value\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 2953,
- "length": 15,
- "value": "\"error_message\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 3029,
- "length": 16,
- "value": "\"answer_choices\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 3079,
- "length": 16,
- "value": "\"min_selections\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 3129,
- "length": 16,
- "value": "\"max_selections\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 3208,
- "length": 15,
- "value": "\"freeform_hint\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 3253,
- "length": 5,
- "value": "\"min\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 3287,
- "length": 5,
- "value": "\"max\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 3325,
- "length": 11,
- "value": "\"min_label\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 3369,
- "length": 11,
- "value": "\"max_label\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 3464,
- "length": 13,
- "value": "\"multichoice\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 3506,
- "length": 13,
- "value": "\"multiselect\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 3548,
- "length": 12,
- "value": "\"singleline\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 3464,
- "length": 13,
- "value": "\"multichoice\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 3506,
- "length": 13,
- "value": "\"multiselect\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 3548,
- "length": 12,
- "value": "\"singleline\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 3929,
- "length": 6,
- "value": "\"hint\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 3929,
- "length": 6,
- "value": "\"hint\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 4030,
- "length": 15,
- "value": "\"select_option\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 4075,
- "length": 14,
- "value": "\"select_other\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 4030,
- "length": 15,
- "value": "\"select_option\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 4075,
- "length": 14,
- "value": "\"select_other\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 4496,
- "length": 13,
- "value": "\"button_text\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 4496,
- "length": 13,
- "value": "\"button_text\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 5584,
- "length": 22,
- "value": "\"next_question_set_id\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 5584,
- "length": 22,
- "value": "\"next_question_set_id\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/EngagementManifest.swift",
- "kind": "StringLiteral",
- "offset": 1227,
- "length": 16,
- "value": "\"interaction_id\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/EngagementManifest.swift",
- "kind": "StringLiteral",
- "offset": 1227,
- "length": 16,
- "value": "\"interaction_id\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/AttachmentManager.swift",
- "kind": "StringLiteral",
- "offset": 575,
- "length": 3,
- "value": "\"#\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 921,
- "length": 19,
- "value": "\"automated_message\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 970,
- "length": 16,
- "value": "\"error_messages\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 921,
- "length": 19,
- "value": "\"automated_message\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 970,
- "length": 16,
- "value": "\"error_messages\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 1398,
- "length": 11,
- "value": "\"hint_text\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 1440,
- "length": 13,
- "value": "\"send_button\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 1483,
- "length": 12,
- "value": "\"send_start\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 1522,
- "length": 9,
- "value": "\"send_ok\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 1560,
- "length": 11,
- "value": "\"send_fail\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 1601,
- "length": 12,
- "value": "\"close_text\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 1650,
- "length": 20,
- "value": "\"close_confirm_body\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 1709,
- "length": 22,
- "value": "\"close_discard_button\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 1769,
- "length": 21,
- "value": "\"close_cancel_button\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 1398,
- "length": 11,
- "value": "\"hint_text\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 1440,
- "length": 13,
- "value": "\"send_button\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 1483,
- "length": 12,
- "value": "\"send_start\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 1522,
- "length": 9,
- "value": "\"send_ok\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 1560,
- "length": 11,
- "value": "\"send_fail\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 1601,
- "length": 12,
- "value": "\"close_text\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 1650,
- "length": 20,
- "value": "\"close_confirm_body\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 1709,
- "length": 22,
- "value": "\"close_discard_button\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 1769,
- "length": 21,
- "value": "\"close_cancel_button\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 1976,
- "length": 17,
- "value": "\"http_error_body\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 2030,
- "length": 20,
- "value": "\"network_error_body\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 1976,
- "length": 17,
- "value": "\"http_error_body\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 2030,
- "length": 20,
- "value": "\"network_error_body\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 2260,
- "length": 11,
- "value": "\"image_url\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 2260,
- "length": 11,
- "value": "\"image_url\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 2649,
- "length": 11,
- "value": "\"name_hint\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 2690,
- "length": 12,
- "value": "\"email_hint\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 2733,
- "length": 13,
- "value": "\"skip_button\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 2777,
- "length": 13,
- "value": "\"save_button\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 2827,
- "length": 19,
- "value": "\"email_explanation\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 2649,
- "length": 11,
- "value": "\"name_hint\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 2690,
- "length": 12,
- "value": "\"email_hint\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 2733,
- "length": 13,
- "value": "\"skip_button\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 2777,
- "length": 13,
- "value": "\"save_button\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 2827,
- "length": 19,
- "value": "\"email_explanation\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 3059,
- "length": 11,
- "value": "\"name_hint\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 3100,
- "length": 12,
- "value": "\"email_hint\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 3143,
- "length": 13,
- "value": "\"skip_button\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 3187,
- "length": 13,
- "value": "\"save_button\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 3059,
- "length": 11,
- "value": "\"name_hint\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 3100,
- "length": 12,
- "value": "\"email_hint\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 3143,
- "length": 13,
- "value": "\"skip_button\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 3187,
- "length": 13,
- "value": "\"save_button\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/HTTPClient.swift",
- "kind": "StringLiteral",
- "offset": 6937,
- "length": 5,
- "value": "\"GET\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/HTTPClient.swift",
- "kind": "StringLiteral",
- "offset": 6958,
- "length": 5,
- "value": "\"PUT\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/HTTPClient.swift",
- "kind": "StringLiteral",
- "offset": 6980,
- "length": 6,
- "value": "\"POST\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/HTTPClient.swift",
- "kind": "StringLiteral",
- "offset": 7005,
- "length": 8,
- "value": "\"DELETE\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/HTTPClient.swift",
- "kind": "StringLiteral",
- "offset": 6937,
- "length": 5,
- "value": "\"GET\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/HTTPClient.swift",
- "kind": "StringLiteral",
- "offset": 6958,
- "length": 5,
- "value": "\"PUT\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/HTTPClient.swift",
- "kind": "StringLiteral",
- "offset": 6980,
- "length": 6,
- "value": "\"POST\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/HTTPClient.swift",
- "kind": "StringLiteral",
- "offset": 7005,
- "length": 8,
- "value": "\"DELETE\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/HTTPClient.swift",
- "kind": "StringLiteral",
- "offset": 7464,
- "length": 32,
- "value": "\"application\/json;charset=UTF-8\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Interaction.swift",
- "kind": "StringLiteral",
- "offset": 2862,
- "length": 13,
- "value": "\"api_version\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Interaction.swift",
- "kind": "StringLiteral",
- "offset": 2862,
- "length": 13,
- "value": "\"api_version\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/EnjoymentDialog\/EnjoymentDialogConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 390,
- "length": 10,
- "value": "\"yes_text\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/EnjoymentDialog\/EnjoymentDialogConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 423,
- "length": 9,
- "value": "\"no_text\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/EnjoymentDialog\/EnjoymentDialogConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 390,
- "length": 10,
- "value": "\"yes_text\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/EnjoymentDialog\/EnjoymentDialogConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 423,
- "length": 9,
- "value": "\"no_text\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "BooleanLiteral",
- "offset": 676,
- "length": 5,
- "value": "false"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "IntegerLiteral",
- "offset": 856,
- "length": 1,
- "value": "0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "StringLiteral",
- "offset": 2126,
- "length": 20,
- "value": "\"person.crop.circle\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "StringLiteral",
- "offset": 2591,
- "length": 7,
- "value": "\"xmark\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "StringLiteral",
- "offset": 3334,
- "length": 23,
- "value": "\"paperclip.circle.fill\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "StringLiteral",
- "offset": 3556,
- "length": 24,
- "value": "\"paperplane.circle.fill\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "StringLiteral",
- "offset": 3758,
- "length": 19,
- "value": "\"messageSentBubble\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "IntegerLiteral",
- "offset": 3897,
- "length": 1,
- "value": "9"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "IntegerLiteral",
- "offset": 3906,
- "length": 1,
- "value": "9"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "IntegerLiteral",
- "offset": 3917,
- "length": 2,
- "value": "18"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "IntegerLiteral",
- "offset": 3928,
- "length": 2,
- "value": "18"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "StringLiteral",
- "offset": 4112,
- "length": 23,
- "value": "\"messageReceivedBubble\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "IntegerLiteral",
- "offset": 4255,
- "length": 1,
- "value": "9"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "IntegerLiteral",
- "offset": 4264,
- "length": 2,
- "value": "18"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "IntegerLiteral",
- "offset": 4276,
- "length": 2,
- "value": "18"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "IntegerLiteral",
- "offset": 4287,
- "length": 1,
- "value": "9"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "StringLiteral",
- "offset": 4487,
- "length": 10,
- "value": "\"document\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "IntegerLiteral",
- "offset": 4617,
- "length": 2,
- "value": "14"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "IntegerLiteral",
- "offset": 4627,
- "length": 1,
- "value": "4"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "IntegerLiteral",
- "offset": 4638,
- "length": 1,
- "value": "4"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "IntegerLiteral",
- "offset": 4648,
- "length": 2,
- "value": "14"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "StringLiteral",
- "offset": 4890,
- "length": 19,
- "value": "\"minus.circle.fill\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "StringLiteral",
- "offset": 5011,
- "length": 19,
- "value": "\"minus.circle.fill\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "StringLiteral",
- "offset": 5400,
- "length": 8,
- "value": "\"circle\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "StringLiteral",
- "offset": 5579,
- "length": 8,
- "value": "\"square\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "StringLiteral",
- "offset": 5782,
- "length": 30,
- "value": "\"smallcircle.fill.circle.fill\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "StringLiteral",
- "offset": 6000,
- "length": 23,
- "value": "\"checkmark.square.fill\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "FloatLiteral",
- "offset": 7186,
- "length": 4,
- "value": "60.0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "FloatLiteral",
- "offset": 7193,
- "length": 5,
- "value": "255.0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "FloatLiteral",
- "offset": 7207,
- "length": 4,
- "value": "60.0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "FloatLiteral",
- "offset": 7214,
- "length": 5,
- "value": "255.0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "FloatLiteral",
- "offset": 7227,
- "length": 4,
- "value": "67.0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "FloatLiteral",
- "offset": 7234,
- "length": 5,
- "value": "255.0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "FloatLiteral",
- "offset": 7248,
- "length": 4,
- "value": "74.0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "FloatLiteral",
- "offset": 7255,
- "length": 5,
- "value": "255.0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "IntegerLiteral",
- "offset": 10494,
- "length": 1,
- "value": "0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "FloatLiteral",
- "offset": 10504,
- "length": 4,
- "value": "0.42"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "IntegerLiteral",
- "offset": 10516,
- "length": 1,
- "value": "1"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "IntegerLiteral",
- "offset": 10526,
- "length": 1,
- "value": "1"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "FloatLiteral",
- "offset": 11465,
- "length": 4,
- "value": "0.86"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "FloatLiteral",
- "offset": 11478,
- "length": 3,
- "value": "0.1"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "IntegerLiteral",
- "offset": 11489,
- "length": 1,
- "value": "0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "IntegerLiteral",
- "offset": 11499,
- "length": 1,
- "value": "1"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "IntegerLiteral",
- "offset": 11543,
- "length": 1,
- "value": "1"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "FloatLiteral",
- "offset": 11553,
- "length": 4,
- "value": "0.28"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "FloatLiteral",
- "offset": 11565,
- "length": 4,
- "value": "0.24"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "IntegerLiteral",
- "offset": 11578,
- "length": 1,
- "value": "1"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "FloatLiteral",
- "offset": 14232,
- "length": 4,
- "value": "60.0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "FloatLiteral",
- "offset": 14239,
- "length": 5,
- "value": "255.0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "FloatLiteral",
- "offset": 14253,
- "length": 4,
- "value": "60.0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "FloatLiteral",
- "offset": 14260,
- "length": 5,
- "value": "255.0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "FloatLiteral",
- "offset": 14273,
- "length": 4,
- "value": "67.0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "FloatLiteral",
- "offset": 14280,
- "length": 5,
- "value": "255.0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "FloatLiteral",
- "offset": 14294,
- "length": 4,
- "value": "74.0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "FloatLiteral",
- "offset": 14301,
- "length": 5,
- "value": "255.0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "FloatLiteral",
- "offset": 15301,
- "length": 4,
- "value": "60.0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "FloatLiteral",
- "offset": 15308,
- "length": 5,
- "value": "255.0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "FloatLiteral",
- "offset": 15322,
- "length": 4,
- "value": "60.0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "FloatLiteral",
- "offset": 15329,
- "length": 5,
- "value": "255.0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "FloatLiteral",
- "offset": 15342,
- "length": 4,
- "value": "67.0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "FloatLiteral",
- "offset": 15349,
- "length": 5,
- "value": "255.0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "FloatLiteral",
- "offset": 15363,
- "length": 4,
- "value": "74.0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "FloatLiteral",
- "offset": 15370,
- "length": 5,
- "value": "255.0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "FloatLiteral",
- "offset": 18691,
- "length": 4,
- "value": "0.86"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "FloatLiteral",
- "offset": 18704,
- "length": 3,
- "value": "0.1"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "IntegerLiteral",
- "offset": 18715,
- "length": 1,
- "value": "0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "IntegerLiteral",
- "offset": 18725,
- "length": 1,
- "value": "1"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "IntegerLiteral",
- "offset": 18769,
- "length": 1,
- "value": "1"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "FloatLiteral",
- "offset": 18779,
- "length": 4,
- "value": "0.28"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "FloatLiteral",
- "offset": 18791,
- "length": 4,
- "value": "0.24"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "IntegerLiteral",
- "offset": 18804,
- "length": 1,
- "value": "1"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "IntegerLiteral",
- "offset": 24962,
- "length": 15,
- "value": "1"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "IntegerLiteral",
- "offset": 24962,
- "length": 15,
- "value": "1"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "IntegerLiteral",
- "offset": 25309,
- "length": 1,
- "value": "2"
- }
- ]
-}
\ No newline at end of file
diff --git a/src/ios/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/Modules/ApptentiveKit.swiftmodule/arm64-apple-ios.private.swiftinterface b/src/ios/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/Modules/ApptentiveKit.swiftmodule/arm64-apple-ios.private.swiftinterface
deleted file mode 100644
index 542fbb9..0000000
--- a/src/ios/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/Modules/ApptentiveKit.swiftmodule/arm64-apple-ios.private.swiftinterface
+++ /dev/null
@@ -1,1202 +0,0 @@
-// 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 arm64-apple-ios11.0 -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name ApptentiveKit
-// swift-module-flags-ignorable: -enable-bare-slash-regex
-import CoreTelephony
-import Foundation
-import MobileCoreServices
-import OSLog
-import PhotosUI
-import QuickLook
-import QuickLookThumbnailing
-import StoreKit
-import Swift
-import UIKit
-import _Concurrency
-import _StringProcessing
-@objc @_hasMissingDesignatedInitializers @_Concurrency.MainActor(unsafe) public class DialogViewController : UIKit.UIViewController, ApptentiveKit.DialogViewModelDelegate {
- @_Concurrency.MainActor(unsafe) @objc override dynamic public func viewDidLoad()
- @_Concurrency.MainActor(unsafe) @objc override dynamic public func viewDidAppear(_ animated: Swift.Bool)
- @_Concurrency.MainActor(unsafe) public func dismiss()
- @objc deinit
-}
-extension ApptentiveKit.DialogViewModel {
- @_hasMissingDesignatedInitializers public class Action {
- final public let label: Swift.String
- final public let actionType: ApptentiveKit.DialogViewModel.Action.ActionType
- final public let buttonTapped: () -> Swift.Void
- public enum ActionType : Swift.String {
- case dismiss
- case interaction
- case yes
- case no
- public init?(rawValue: Swift.String)
- public typealias RawValue = Swift.String
- public var rawValue: Swift.String {
- get
- }
- }
- @objc deinit
- }
-}
-extension ApptentiveKit.SurveyViewModel {
- @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers public class RangeQuestion : ApptentiveKit.SurveyViewModel.Question {
- final public let minValue: Swift.Int
- final public let maxValue: Swift.Int
- final public let minText: Swift.String?
- final public let maxText: Swift.String?
- public var selectedValueIndex: Swift.Int? {
- get
- }
- public var value: Swift.Int? {
- get
- }
- public var choiceLabels: [Swift.String] {
- get
- }
- public func selectValue(at index: Swift.Int)
- public var accessibilityHintForSegment: Swift.String {
- get
- }
- @objc deinit
- }
-}
-extension ApptentiveKit.MessageCenterViewModel {
- @_hasMissingDesignatedInitializers public class Message : Swift.Equatable {
- final public let nonce: Swift.String
- final public let direction: ApptentiveKit.MessageCenterViewModel.Message.Direction
- final public let isAutomated: Swift.Bool
- final public let attachments: [ApptentiveKit.MessageCenterViewModel.Message.Attachment]
- final public let sender: ApptentiveKit.MessageCenterViewModel.Message.Sender?
- final public let body: Swift.String?
- final public let sentDate: Foundation.Date
- final public let accessibilityLabel: Swift.String?
- final public let accessibilityHint: Swift.String?
- final public let statusText: Swift.String
- public static func == (lhs: ApptentiveKit.MessageCenterViewModel.Message, rhs: ApptentiveKit.MessageCenterViewModel.Message) -> Swift.Bool
- public enum Direction : Swift.Equatable {
- case sentFromDashboard(ApptentiveKit.MessageCenterViewModel.Message.ReadStatus)
- case sentFromDevice(ApptentiveKit.MessageCenterViewModel.Message.SentStatus)
- case automated
- public static func == (a: ApptentiveKit.MessageCenterViewModel.Message.Direction, b: ApptentiveKit.MessageCenterViewModel.Message.Direction) -> Swift.Bool
- }
- public enum SentStatus : Swift.Codable, Swift.Equatable {
- case draft
- case queued
- case sending
- case sent
- case failed
- public func hash(into hasher: inout Swift.Hasher)
- public static func == (a: ApptentiveKit.MessageCenterViewModel.Message.SentStatus, b: ApptentiveKit.MessageCenterViewModel.Message.SentStatus) -> Swift.Bool
- public func encode(to encoder: Swift.Encoder) throws
- public var hashValue: Swift.Int {
- get
- }
- public init(from decoder: Swift.Decoder) throws
- }
- public enum ReadStatus : Swift.Codable, Swift.Equatable {
- case read
- case unread(messageID: Swift.String?)
- public static func == (a: ApptentiveKit.MessageCenterViewModel.Message.ReadStatus, b: ApptentiveKit.MessageCenterViewModel.Message.ReadStatus) -> Swift.Bool
- public func encode(to encoder: Swift.Encoder) throws
- public init(from decoder: Swift.Decoder) throws
- }
- public struct Sender : Swift.Equatable {
- public static func == (a: ApptentiveKit.MessageCenterViewModel.Message.Sender, b: ApptentiveKit.MessageCenterViewModel.Message.Sender) -> Swift.Bool
- }
- @objc @_hasMissingDesignatedInitializers public class Attachment : ObjectiveC.NSObject, QuickLook.QLPreviewItem {
- final public let fileExtension: Swift.String?
- public var thumbnail: UIKit.UIImage? {
- get
- }
- public var downloadProgress: Swift.Float
- public var localURL: Foundation.URL?
- public var displayName: Swift.String {
- get
- }
- @objc public var previewItemURL: Foundation.URL? {
- @objc get
- }
- @objc public var previewItemTitle: Swift.String? {
- @objc get
- }
- @objc override dynamic public var accessibilityLabel: Swift.String? {
- @objc get
- @objc set
- }
- public var removeButtonAccessibilityLabel: Swift.String {
- get
- }
- public var viewButtonAccessibilityLabel: Swift.String {
- get
- }
- @objc deinit
- }
- @objc deinit
- }
-}
-extension ApptentiveKit.Apptentive : UserNotifications.UNUserNotificationCenterDelegate {
- @objc dynamic public func setRemoteNotificationDeviceToken(_ tokenData: Foundation.Data)
- @available(*, deprecated, message: "Use the (correctly-spelled) 'setRemoteNotificationDeviceToken(_:)' method instead.")
- @objc dynamic public func setRemoteNotifcationDeviceToken(_ tokenData: Foundation.Data)
- @objc dynamic public func didReceiveRemoteNotification(_ userInfo: [Swift.AnyHashable : Any], fetchCompletionHandler completionHandler: @escaping (UIKit.UIBackgroundFetchResult) -> Swift.Void) -> Swift.Bool
- @objc dynamic public func didReceveUserNotificationResponse(_ response: UserNotifications.UNNotificationResponse, withCompletionHandler completionHandler: @escaping () -> Swift.Void) -> Swift.Bool
- @objc dynamic public func willPresent(_ notification: UserNotifications.UNNotification, withCompletionHandler completionHandler: @escaping (UserNotifications.UNNotificationPresentationOptions) -> Swift.Void) -> Swift.Bool
- @objc dynamic public func userNotificationCenter(_ center: UserNotifications.UNUserNotificationCenter, willPresent notification: UserNotifications.UNNotification, withCompletionHandler completionHandler: @escaping (UserNotifications.UNNotificationPresentationOptions) -> Swift.Void)
- @objc dynamic public func userNotificationCenter(_ center: UserNotifications.UNUserNotificationCenter, didReceive response: UserNotifications.UNNotificationResponse, withCompletionHandler completionHandler: @escaping () -> Swift.Void)
-}
-extension ApptentiveKit.SurveyViewModel {
- @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers public class ChoiceQuestion : ApptentiveKit.SurveyViewModel.Question {
- final public let choices: [ApptentiveKit.SurveyViewModel.ChoiceQuestion.Choice]
- public func toggleChoice(at index: Swift.Int)
- public var selectionStyle: ApptentiveKit.SurveyViewModel.ChoiceQuestion.SelectionStyle {
- get
- }
- public enum SelectionStyle {
- case checkbox
- case radioButton
- public static func == (a: ApptentiveKit.SurveyViewModel.ChoiceQuestion.SelectionStyle, b: ApptentiveKit.SurveyViewModel.ChoiceQuestion.SelectionStyle) -> Swift.Bool
- public func hash(into hasher: inout Swift.Hasher)
- public var hashValue: Swift.Int {
- get
- }
- }
- @_hasMissingDesignatedInitializers public class Choice {
- final public let label: Swift.String
- final public let placeholderText: Swift.String?
- final public let supportsOther: Swift.Bool
- public var isSelected: Swift.Bool {
- get
- }
- public var isMarkedAsInvalid: Swift.Bool {
- get
- }
- public var value: Swift.String? {
- get
- set
- }
- @objc deinit
- }
- @objc deinit
- }
-}
-public struct ApptentiveLogger {
- public static var shouldHideSensitiveLogs: Swift.Bool
- public var logLevel: ApptentiveKit.LogLevel
-}
-extension ApptentiveKit.ApptentiveLogger {
- public static var `default`: ApptentiveKit.ApptentiveLogger
- public static var engagement: ApptentiveKit.ApptentiveLogger
- public static var interaction: ApptentiveKit.ApptentiveLogger
- public static var network: ApptentiveKit.ApptentiveLogger
- public static var payload: ApptentiveKit.ApptentiveLogger
- public static var targeting: ApptentiveKit.ApptentiveLogger
- public static var messages: ApptentiveKit.ApptentiveLogger
- public static var attachments: ApptentiveKit.ApptentiveLogger
- public static var logLevel: ApptentiveKit.LogLevel {
- get
- set
- }
-}
-public enum LogLevel : Swift.Int, Swift.Comparable {
- case debug
- case info
- case notice
- case warning
- case error
- case critical
- case fault
- public static func < (lhs: ApptentiveKit.LogLevel, rhs: ApptentiveKit.LogLevel) -> Swift.Bool
- public init?(rawValue: Swift.Int)
- public typealias RawValue = Swift.Int
- public var rawValue: Swift.Int {
- get
- }
-}
-@objc @_hasMissingDesignatedInitializers public class Apptentive : ObjectiveC.NSObject {
- @objc public static let shared: ApptentiveKit.Apptentive
- public var interactionPresenter: ApptentiveKit.InteractionPresenter {
- get
- set
- }
- public var theme: ApptentiveKit.Apptentive.UITheme
- @objc public var personName: Swift.String? {
- @objc get
- @objc set
- }
- @objc public var personEmailAddress: Swift.String? {
- @objc get
- @objc set
- }
- @objc public var mParticleID: Swift.String? {
- @objc get
- @objc set
- }
- public var personCustomData: ApptentiveKit.CustomData {
- get
- set
- }
- public var deviceCustomData: ApptentiveKit.CustomData {
- get
- set
- }
- @objc dynamic public var unreadMessageCount: Swift.Int
- @objc public var distributionName: Swift.String? {
- @objc get
- @objc set
- }
- @objc public var distributionVersion: Swift.String? {
- @objc get
- @objc set
- }
- public enum UITheme {
- case apptentive
- case none
- public static func == (a: ApptentiveKit.Apptentive.UITheme, b: ApptentiveKit.Apptentive.UITheme) -> Swift.Bool
- public func hash(into hasher: inout Swift.Hasher)
- public var hashValue: Swift.Int {
- get
- }
- }
- public func register(with credentials: ApptentiveKit.Apptentive.AppCredentials, completion: ((Swift.Result) -> Swift.Void)? = nil)
- public struct AppCredentials : Swift.Codable, Swift.Equatable {
- public let key: Swift.String
- public let signature: Swift.String
- public init(key: Swift.String, signature: Swift.String)
- public static func == (a: ApptentiveKit.Apptentive.AppCredentials, b: ApptentiveKit.Apptentive.AppCredentials) -> Swift.Bool
- public func encode(to encoder: Swift.Encoder) throws
- public init(from decoder: Swift.Decoder) throws
- }
- public func engage(event: ApptentiveKit.Event, from viewController: UIKit.UIViewController? = nil, completion: ((Swift.Result) -> Swift.Void)? = nil)
- public func dismissAllInteractions(animated: Swift.Bool)
- public func presentMessageCenter(from viewController: UIKit.UIViewController?, completion: ((Swift.Result) -> Swift.Void)? = nil)
- public func presentMessageCenter(from viewController: UIKit.UIViewController?, with customData: ApptentiveKit.CustomData?, completion: ((Swift.Result) -> Swift.Void)? = nil)
- @objc(sendAttachmentText:) public func sendAttachment(_ text: Swift.String)
- @objc(sendAttachmentImage:) public func sendAttachment(_ image: UIKit.UIImage)
- @objc(sendAttachmentFile:withMimeType:) public func sendAttachment(_ fileData: Foundation.Data, mediaType: Swift.String)
- public func canShowInteraction(event: ApptentiveKit.Event, completion: ((Swift.Result) -> Swift.Void)? = nil)
- convenience public init(apiBaseURL: Foundation.URL)
- @objc deinit
-}
-public enum ApptentiveError : Swift.Error {
- case internalInconsistency
- case invalidCustomDataType(Any?)
- case fileExistsAtContainerDirectoryPath
- case mismatchedCredentials
-}
-public var apptentiveAssertionHandler: (_ message: @autoclosure () -> Swift.String, _ file: Swift.StaticString, _ line: Swift.UInt) -> ()
-public protocol CustomDataCompatible {
-}
-extension Swift.String : ApptentiveKit.CustomDataCompatible {
-}
-extension Swift.Double : ApptentiveKit.CustomDataCompatible {
-}
-extension Swift.Float : ApptentiveKit.CustomDataCompatible {
-}
-extension Swift.Int : ApptentiveKit.CustomDataCompatible {
-}
-extension Swift.Bool : ApptentiveKit.CustomDataCompatible {
-}
-public struct CustomData : Swift.Equatable, Swift.Codable {
- public init()
- public subscript(key: Swift.String) -> ApptentiveKit.CustomDataCompatible? {
- get
- set
- }
- public var keys: Swift.Dictionary.Keys {
- get
- }
- public func encode(to encoder: Swift.Encoder) throws
- public init(from decoder: Swift.Decoder) throws
- public static func == (lhs: ApptentiveKit.CustomData, rhs: ApptentiveKit.CustomData) -> Swift.Bool
-}
-public protocol SurveyViewModelDelegate : AnyObject {
- func surveyViewModelDidFinish(_ viewModel: ApptentiveKit.SurveyViewModel)
- func surveyViewModelValidationDidChange(_ viewModel: ApptentiveKit.SurveyViewModel)
- func surveyViewModelSelectionDidChange(_ viewModel: ApptentiveKit.SurveyViewModel)
- func surveyViewModelPageWillChange(_ viewModel: ApptentiveKit.SurveyViewModel)
- func surveyViewModelPageDidChange(_ viewModel: ApptentiveKit.SurveyViewModel)
-}
-@_hasMissingDesignatedInitializers public class SurveyViewModel {
- final public let name: Swift.String?
- final public let isRequired: Swift.Bool
- final public let pageIndicatorSegmentCount: Swift.Int
- final public let validationErrorMessage: Swift.String
- final public let disclaimerText: Swift.String?
- public struct TermsAndConditions {
- }
- final public let termsAndConditions: ApptentiveKit.SurveyViewModel.TermsAndConditions?
- public struct CloseConfirmation {
- }
- final public let closeConfirmation: ApptentiveKit.SurveyViewModel.CloseConfirmation
- weak public var delegate: ApptentiveKit.SurveyViewModelDelegate?
- public var currentPage: ApptentiveKit.SurveyViewModel.Page {
- get
- }
- public var questions: [ApptentiveKit.SurveyViewModel.Question] {
- get
- }
- public var isMarkedAsInvalid: Swift.Bool {
- get
- }
- public var thankYouMessage: Swift.String? {
- get
- }
- public var introduction: Swift.String? {
- get
- }
- public var advanceButtonText: Swift.String {
- get
- }
- public var invalidQuestionIndexes: Foundation.IndexSet {
- get
- }
- public var surveyDidSendResponse: Swift.Bool
- public var highlightFirstQuestionSegment: Swift.Bool
- public func setValue(_ value: Swift.String?, for indexPath: Foundation.IndexPath)
- public func selectValueFromRange(at indexPath: Foundation.IndexPath)
- public func openTermsAndConditions()
- public func advance()
- public var isValid: Swift.Bool {
- get
- }
- public enum DisplayMode {
- case list
- case paged
- public static func == (a: ApptentiveKit.SurveyViewModel.DisplayMode, b: ApptentiveKit.SurveyViewModel.DisplayMode) -> Swift.Bool
- public func hash(into hasher: inout Swift.Hasher)
- public var hashValue: Swift.Int {
- get
- }
- }
- public var displayMode: ApptentiveKit.SurveyViewModel.DisplayMode {
- get
- }
- public var shouldConfirmCancel: Swift.Bool {
- get
- }
- public var currentSelectedSegmentIndex: Swift.Int? {
- get
- }
- public func launch()
- public func continuePartial()
- public func cancel(partial: Swift.Bool)
- @objc deinit
-}
-extension ApptentiveKit.SurveyViewModel {
- @_hasMissingDesignatedInitializers public class Page {
- final public let id: Swift.String
- final public let description: Swift.String?
- final public let questions: [ApptentiveKit.SurveyViewModel.Question]
- final public let advanceButtonLabel: Swift.String
- final public let pageIndicatorValue: Swift.Int?
- @objc deinit
- }
-}
-public protocol MessageCenterViewModelDelegate : AnyObject {
- func messageCenterViewModelDidBeginUpdates(_: ApptentiveKit.MessageCenterViewModel)
- func messageCenterViewModel(_: ApptentiveKit.MessageCenterViewModel, didInsertSectionsWith sectionIndexes: Foundation.IndexSet)
- func messageCenterViewModel(_: ApptentiveKit.MessageCenterViewModel, didDeleteSectionsWith sectionIndexes: Foundation.IndexSet)
- func messageCenterViewModel(_: ApptentiveKit.MessageCenterViewModel, didDeleteRowsAt indexPaths: [Foundation.IndexPath])
- func messageCenterViewModel(_: ApptentiveKit.MessageCenterViewModel, didUpdateRowsAt indexPaths: [Foundation.IndexPath])
- func messageCenterViewModel(_: ApptentiveKit.MessageCenterViewModel, didInsertRowsAt indexPaths: [Foundation.IndexPath])
- func messageCenterViewModel(_: ApptentiveKit.MessageCenterViewModel, didMoveRowsAt indexPathMoves: [(Foundation.IndexPath, Foundation.IndexPath)])
- func messageCenterViewModelDidEndUpdates(_: ApptentiveKit.MessageCenterViewModel)
- func messageCenterViewModelMessageListDidLoad(_: ApptentiveKit.MessageCenterViewModel)
- func messageCenterViewModelDraftMessageDidUpdate(_: ApptentiveKit.MessageCenterViewModel)
- func messageCenterViewModel(_: ApptentiveKit.MessageCenterViewModel, didFailToRemoveAttachmentAt index: Swift.Int, with error: Swift.Error)
- func messageCenterViewModel(_: ApptentiveKit.MessageCenterViewModel, didFailToAddAttachmentWith error: Swift.Error)
- func messageCenterViewModel(_: ApptentiveKit.MessageCenterViewModel, didFailToSendMessageWith error: Swift.Error)
- func messageCenterViewModel(_: ApptentiveKit.MessageCenterViewModel, attachmentDownloadDidFinishAt index: Swift.Int, inMessageAt indexPath: Foundation.IndexPath)
- func messageCenterViewModel(_: ApptentiveKit.MessageCenterViewModel, attachmentDownloadDidFailAt index: Swift.Int, inMessageAt indexPath: Foundation.IndexPath, with error: Swift.Error)
-}
-@_hasMissingDesignatedInitializers public class MessageCenterViewModel {
- final public let headingTitle: Swift.String
- final public let branding: Swift.String?
- final public let composerTitle: Swift.String
- final public let composerSendButtonTitle: Swift.String
- final public let composerAttachButtonTitle: Swift.String
- final public let composerPlaceholderText: Swift.String
- final public let composerCloseConfirmBody: Swift.String
- final public let composerCloseDiscardButtonTitle: Swift.String
- final public let composerCloseCancelButtonTitle: Swift.String
- final public let greetingTitle: Swift.String
- final public let greetingBody: Swift.String
- final public let greetingImageURL: Foundation.URL
- final public let statusBody: Swift.String?
- public var groupedMessages: [[ApptentiveKit.MessageCenterViewModel.Message]]
- public var hasLoadedMessages: Swift.Bool
- public var thumbnailSize: CoreFoundation.CGSize {
- get
- set
- }
- final public let profileNamePlaceholder: Swift.String
- final public let profileEmailPlaceholder: Swift.String
- final public let profileCancelButtonText: Swift.String
- final public let profileSaveButtonText: Swift.String
- final public let editProfileViewTitle: Swift.String
- final public let editProfileNamePlaceholder: Swift.String
- final public let editProfileEmailPlaceholder: Swift.String
- final public let editProfileCancelButtonText: Swift.String
- final public let editProfileSaveButtonText: Swift.String
- final public let profileMode: ApptentiveKit.MessageCenterViewModel.ProfileMode
- final public let closeButtonAccessibilityLabel: Swift.String
- final public let closeButtonAccessibilityHint: Swift.String
- final public let profileButtonAccessibilityLabel: Swift.String
- final public let profileButtonAccessibilityHint: Swift.String
- final public let sendButtonAccessibilityLabel: Swift.String
- final public let sendButtonAccessibilityHint: Swift.String
- final public let attachButtonAccessibilityLabel: Swift.String
- final public let attachButtonAccessibilityHint: Swift.String
- final public let attachmentOptionsTitle: Swift.String
- final public let attachmentOptionsImagesButton: Swift.String
- final public let attachmentOptionsFilesButton: Swift.String
- final public let attachmentOptionsCancelButton: Swift.String
- final public let showAttachmentButtonAccessibilityHint: Swift.String
- final public let downloadAttachmentButtonAccessibilityHint: Swift.String
- public var emailAddress: Swift.String? {
- get
- set
- }
- public var name: Swift.String? {
- get
- set
- }
- public var profileIsValid: Swift.Bool
- public var shouldRequestProfile: Swift.Bool
- public enum ProfileMode {
- case optionalEmail
- case requiredEmail
- case hidden
- public static func == (a: ApptentiveKit.MessageCenterViewModel.ProfileMode, b: ApptentiveKit.MessageCenterViewModel.ProfileMode) -> Swift.Bool
- public func hash(into hasher: inout Swift.Hasher)
- public var hashValue: Swift.Int {
- get
- }
- }
- public var oldestUnreadMessageIndexPath: Foundation.IndexPath? {
- get
- }
- public var newestMessageIndexPath: Foundation.IndexPath? {
- get
- }
- public func commitProfileEdits()
- public func cancelProfileEdits()
- public func launch()
- public func cancel()
- public var numberOfMessageGroups: Swift.Int {
- get
- }
- public func markMessageAsRead(at indexPath: Foundation.IndexPath)
- public func numberOfMessagesInGroup(at index: Swift.Int) -> Swift.Int
- public func dateStringForMessagesInGroup(at index: Swift.Int) -> Swift.String?
- public func message(at indexPath: Foundation.IndexPath) -> ApptentiveKit.MessageCenterViewModel.Message
- public func downloadAttachment(at index: Swift.Int, inMessageAt indexPath: Foundation.IndexPath)
- public var draftMessage: ApptentiveKit.MessageCenterViewModel.Message {
- get
- }
- public var draftMessageBody: Swift.String? {
- get
- set
- }
- public var draftAttachments: [ApptentiveKit.MessageCenterViewModel.Message.Attachment] {
- get
- }
- public func addImageAttachment(_ image: UIKit.UIImage, name: Swift.String?)
- public func addFileAttachment(at sourceURL: Foundation.URL)
- public func removeAttachment(at index: Swift.Int)
- public var remainingAttachmentSlots: Swift.Int {
- get
- }
- public var canAddAttachment: Swift.Bool {
- get
- }
- public var canSendMessage: Swift.Bool {
- get
- }
- public func sendMessage()
- @objc deinit
-}
-public enum MessageCenterViewModelError : Swift.Error {
- case attachmentCountGreaterThanMax
- case unableToGetImageData
- public static func == (a: ApptentiveKit.MessageCenterViewModelError, b: ApptentiveKit.MessageCenterViewModelError) -> Swift.Bool
- public func hash(into hasher: inout Swift.Hasher)
- public var hashValue: Swift.Int {
- get
- }
-}
-extension ApptentiveKit.Apptentive {
- public var engagementManifestURL: Foundation.URL? {
- get
- }
- public func loadEngagementManifest(at url: Foundation.URL?, completion: @escaping (Swift.Result) -> Swift.Void)
- public func getInteractionList(_ completion: @escaping ([ApptentiveKit.Apptentive.InteractionListItem]) -> Swift.Void)
- public func presentInteraction(with id: Swift.String, completion: @escaping (Swift.Result) -> Swift.Void)
- public func presentInteraction(at url: Foundation.URL, completion: @escaping (Swift.Result) -> Swift.Void)
- public struct InteractionListItem {
- public let id: Swift.String
- public let displayName: Swift.String
- public let typeName: Swift.String
- }
- public func getEventList(_ completion: @escaping ([Swift.String]) -> Swift.Void)
-}
-extension ApptentiveKit.SurveyViewModel {
- @_hasMissingDesignatedInitializers public class Question {
- final public let text: Swift.String
- final public let isRequired: Swift.Bool
- final public let requiredText: Swift.String?
- final public let errorMessage: Swift.String
- final public let instructions: Swift.String?
- public var isMarkedAsInvalid: Swift.Bool {
- get
- set
- }
- public var accessibilityLabel: Swift.String {
- get
- }
- @objc deinit
- }
-}
-public struct Event : Swift.ExpressibleByStringLiteral, Swift.CustomDebugStringConvertible {
- public var customData: ApptentiveKit.CustomData
- public init(name: Swift.String)
- public init(stringLiteral value: Swift.String)
- public var debugDescription: Swift.String {
- get
- }
- public typealias ExtendedGraphemeClusterLiteralType = Swift.String
- public typealias StringLiteralType = Swift.String
- public typealias UnicodeScalarLiteralType = Swift.String
-}
-open class InteractionPresenter {
- public init()
- open func presentMessageCenter(with viewModel: ApptentiveKit.MessageCenterViewModel) throws
- open func presentSurvey(with viewModel: ApptentiveKit.SurveyViewModel) throws
- open func presentEnjoymentDialog(with viewModel: ApptentiveKit.DialogViewModel) throws
- open func presentTextModal(with viewModel: ApptentiveKit.DialogViewModel) throws
- open func presentViewController(_ viewControllerToPresent: UIKit.UIViewController, completion: (() -> Swift.Void)? = {}) throws
- public var validatedPresentingViewController: UIKit.UIViewController? {
- get
- }
- open func dismissPresentedViewController(animated: Swift.Bool)
- @objc deinit
-}
-public enum InteractionPresenterError : Swift.Error {
- case notImplemented(Swift.String, Swift.String)
- case decodingFailed(Swift.String, Swift.String)
- case noPresentingViewController
-}
-extension Foundation.NSNotification.Name {
- public static let apptentiveEventEngaged: Foundation.Notification.Name
-}
-public protocol DialogViewModelDelegate : AnyObject {
- func dismiss()
-}
-@_hasMissingDesignatedInitializers public class DialogViewModel {
- final public let title: Swift.String?
- final public let message: Swift.String?
- final public let dialogType: ApptentiveKit.DialogViewModel.DialogType
- final public let actions: [ApptentiveKit.DialogViewModel.Action]
- weak public var delegate: ApptentiveKit.DialogViewModelDelegate?
- public func buttonSelected(at position: Swift.Int)
- public func launch()
- public func cancel()
- public enum DialogType {
- case enjoymentDialog
- case textModal
- public static func == (a: ApptentiveKit.DialogViewModel.DialogType, b: ApptentiveKit.DialogViewModel.DialogType) -> Swift.Bool
- public func hash(into hasher: inout Swift.Hasher)
- public var hashValue: Swift.Int {
- get
- }
- }
- @objc deinit
-}
-@objc @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @_Concurrency.MainActor(unsafe) public class DialogView : UIKit.UIView {
- @objc @_Concurrency.MainActor(unsafe) dynamic public var titleTextColor: UIKit.UIColor
- @objc @_Concurrency.MainActor(unsafe) dynamic public var messageTextColor: UIKit.UIColor
- @objc @_Concurrency.MainActor(unsafe) dynamic public var titleFont: UIKit.UIFont
- @objc @_Concurrency.MainActor(unsafe) dynamic public var messageFont: UIKit.UIFont
- @objc @_Concurrency.MainActor(unsafe) dynamic public var headerImage: UIKit.UIImage?
- @objc @_Concurrency.MainActor(unsafe) dynamic public var cornerRadius: CoreFoundation.CGFloat
- @objc @_Concurrency.MainActor(unsafe) dynamic public var buttonSpacing: CoreFoundation.CGFloat
- @objc @_Concurrency.MainActor(unsafe) dynamic public var buttonInset: UIKit.UIEdgeInsets
- @objc @_Concurrency.MainActor(unsafe) dynamic public var separatorsAreHidden: Swift.Bool
- @objc @_Concurrency.MainActor(unsafe) dynamic public var separatorColor: UIKit.UIColor
- @_Concurrency.MainActor(unsafe) @objc override dynamic public func didMoveToWindow()
- @_Concurrency.MainActor(unsafe) @objc override dynamic public func layoutSubviews()
- @objc deinit
-}
-extension ApptentiveKit.SurveyViewModel {
- @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers public class FreeformQuestion : ApptentiveKit.SurveyViewModel.Question {
- final public let placeholderText: Swift.String?
- final public let allowMultipleLines: Swift.Bool
- public var value: Swift.String? {
- get
- set
- }
- @objc deinit
- }
-}
-extension ApptentiveKit.Apptentive {
- @available(*, deprecated, message: "Use the 'register(with:completion:)' method on the 'shared' instance instead.")
- @objc(registerWithConfiguration:) dynamic public class func register(with configuration: ApptentiveKit.ApptentiveConfiguration)
- @available(swift, deprecated: 1.0, message: "Use the 'register(with:completion:) method that takes an 'AppCredentials' argument.")
- @objc(registerWithConfiguration:completion:) dynamic public func register(with configuration: ApptentiveKit.ApptentiveConfiguration, completion: ((Swift.Bool) -> Swift.Void)? = nil)
- @available(*, deprecated, message: "Use the 'shared' static property instead.")
- @objc dynamic public class func sharedConnection() -> ApptentiveKit.Apptentive
- @available(*, deprecated, message: "This property is ignored. SKStoreReviewController will be used for all ratings.")
- @objc dynamic public var appID: Swift.String? {
- @objc get
- @objc set
- }
- @available(*, deprecated, message: "This property is ignored. The info button no longer exists.")
- @objc dynamic public var showInfoButton: Swift.Bool {
- @objc get
- @objc set
- }
- @available(*, deprecated, message: "This feature is not implemented.")
- @objc dynamic public var surveyTermsAndConditions: ApptentiveKit.TermsAndConditions? {
- @objc get
- @objc set
- }
- @available(*, deprecated, message: "This property is not available for reading.")
- @objc dynamic public var apptentiveKey: Swift.String {
- @objc get
- }
- @available(*, deprecated, message: "This property is not available for reading.")
- @objc dynamic public var apptentiveSignature: Swift.String {
- @objc get
- }
- @objc(engage:fromViewController:) dynamic public func engage(_ event: Swift.String, fromViewController viewController: UIKit.UIViewController?)
- @objc(engage:fromViewController:completion:) dynamic public func engage(_ event: Swift.String, fromViewController viewController: UIKit.UIViewController?, completion: ((Swift.Bool) -> Swift.Void)? = nil)
- @available(swift, deprecated: 1.0, message: "Create an 'Event' object and subscript its 'customData' property.")
- @objc(engage:withCustomData:fromViewController:) dynamic public func engage(event: Swift.String, withCustomData customData: [Swift.AnyHashable : Any]?, from viewController: UIKit.UIViewController?)
- @available(swift, deprecated: 1.0, message: "Create an 'Event' object and subscript its 'customData' property.")
- @objc(engage:withCustomData:fromViewController:completion:) dynamic public func engage(event: Swift.String, withCustomData customData: [Swift.AnyHashable : Any]?, from viewController: UIKit.UIViewController?, completion: ((Swift.Bool) -> Swift.Void)? = nil)
- @available(*, deprecated, message: "Event extended data are no longer supported. Event will be engaged without extended data.")
- @objc(engage:withCustomData:withExtendedData:fromViewController:) dynamic public func engage(event: Swift.String, withCustomData customData: [Swift.AnyHashable : Any]?, withExtendedData extendedData: [[Swift.AnyHashable : Any]]?, from viewController: UIKit.UIViewController?)
- @available(*, deprecated, message: "Event extended data are no longer supported. Event will be engaged without extended data.")
- @objc(engage:withCustomData:withExtendedData:fromViewController:completion:) dynamic public func engage(event: Swift.String, withCustomData customData: [Swift.AnyHashable : Any]?, withExtendedData extendedData: [[Swift.AnyHashable : Any]]?, from viewController: UIKit.UIViewController?, completion: ((Swift.Bool) -> Swift.Void)? = nil)
- @available(swift, deprecated: 1.0, message: "Use the 'canShowInteraction(event:completion:)' method instead.")
- @objc dynamic public func queryCanShowInteraction(forEvent event: Swift.String, completion: @escaping (Swift.Bool) -> Swift.Void)
- @available(*, deprecated, message: "Extended event data are no longer supported.")
- @objc(extendedDataDate:) dynamic public class func extendedData(date: Foundation.Date) -> [Swift.AnyHashable : Any]
- @available(*, deprecated, message: "Extended event data are no longer supported.")
- @objc(extendedDataLocationForLatitude:longitude:) dynamic public class func extendedData(latitude: Swift.Double, longitude: Swift.Double) -> [Swift.AnyHashable : Any]
- @available(*, deprecated, message: "Extended event data are no longer supported.")
- @objc(extendedDataCommerceWithTransactionID:affiliation:revenue:shipping:tax:currency:commerceItems:) dynamic public class func extendedData(transactionID: Swift.String?, affiliation: Swift.String?, revenue: Foundation.NSNumber?, shipping: Foundation.NSNumber?, tax: Foundation.NSNumber?, currency: Swift.String?, commerceItems: [[Swift.AnyHashable : Any]]?) -> [Swift.AnyHashable : Any]
- @available(*, deprecated, message: "Extended event data are no longer supported.")
- @objc(extendedDataCommerceItemWithItemID:name:category:price:quantity:currency:) dynamic public class func extendedData(itemID: Swift.String?, name: Swift.String?, category: Swift.String?, price: Foundation.NSNumber?, quantity: Foundation.NSNumber?, currency: Swift.String?) -> [Swift.AnyHashable : Any]
- @available(*, deprecated, message: "This feature is not implemented and will always result in false.")
- @objc dynamic public func queryCanShowMessageCenter(completion: @escaping (Swift.Bool) -> Swift.Void)
- @objc(presentMessageCenterFromViewController:) dynamic public func presentMessageCenterCompat(from viewController: UIKit.UIViewController?)
- @available(swift, deprecated: 1.0, message: "Use the method whose completion handler takes a Result parameter.")
- @objc(presentMessageCenterFromViewController:completion:) dynamic public func presentMessageCenterCompat(from viewController: UIKit.UIViewController?, completion: ((Swift.Bool) -> Swift.Void)? = nil)
- @objc(presentMessageCenterFromViewController:withCustomData:) dynamic public func presentMessageCenterCompat(from viewController: UIKit.UIViewController?, withCustomData customData: [Swift.AnyHashable : Any]?)
- @available(swift, deprecated: 1.0, message: "Use the method whose completion handler takes a Result parameter.")
- @objc(presentMessageCenterFromViewController:withCustomData:completion:) dynamic public func presentMessageCenterCompat(from viewController: UIKit.UIViewController?, withCustomData customData: [Swift.AnyHashable : Any]?, completion: ((Swift.Bool) -> Swift.Void)? = nil)
- @available(*, deprecated, message: "This feature is not implemented and this method will always result in false.")
- @objc dynamic public func dismissMessageCenter(animated: Swift.Bool, completion: (() -> Swift.Void)? = nil)
- @available(*, deprecated, message: "This feature is not implemented and this property will return an empty view.")
- @objc dynamic public func unreadMessageCountAccessoryView(apptentiveHeart: Swift.Bool) -> UIKit.UIView
- @available(*, deprecated, message: "This method is no longer implemented and will trigger an assertion failure.")
- @objc dynamic public func openAppStore()
- @available(*, deprecated, message: "Use the 'setRemoteNotificationToken()' method instead.")
- @objc dynamic public func setPushProvider(_ pushProvider: ApptentiveKit.ApptentivePushProvider, deviceToken: Foundation.Data)
- @available(*, deprecated, message: "This method is deprecated in favor of didReceveUserNotificationResponse(_:from:withCompletionHandler:).")
- @objc dynamic public func didReceveUserNotificationResponse(_ response: UserNotifications.UNNotificationResponse, from _: UIKit.UIViewController?, withCompletionHandler completionHandler: @escaping () -> Swift.Void) -> Swift.Bool
- @available(*, deprecated, message: "Advertising identifier collection is not implemented.")
- @objc dynamic public var advertisingIdentifier: Foundation.UUID? {
- @objc get
- @objc set
- }
- @available(*, deprecated, message: "mParticleId has been renamed to mParticleID.")
- @objc dynamic public var mParticleId: Swift.String? {
- @objc get
- @objc set
- }
- @available(swift, deprecated: 1.0, message: "Subscript the 'personCustomData' property instead.")
- @objc dynamic public func removeCustomPersonData(withKey key: Swift.String)
- @available(swift, deprecated: 1.0, message: "Subscript the 'deviceCustomData' property instead.")
- @objc dynamic public func removeCustomDeviceData(withKey key: Swift.String)
- @available(swift, deprecated: 1.0, message: "Subscript the 'deviceCustomData' property instead.")
- @objc(addCustomDeviceDataString:withKey:) dynamic public func addCustomDeviceData(_ string: Swift.String, withKey key: Swift.String)
- @available(swift, deprecated: 1.0, message: "Subscript the 'deviceCustomData' property instead.")
- @objc(addCustomDeviceDataNumber:withKey:) dynamic public func addCustomDeviceData(_ number: Foundation.NSNumber, withKey key: Swift.String)
- @available(swift, deprecated: 1.0, message: "Subscript the 'deviceCustomData' property instead.")
- @objc(addCustomDeviceDataBool:withKey:) dynamic public func addCustomDeviceData(_ boolValue: Swift.Bool, withKey key: Swift.String)
- @available(swift, deprecated: 1.0, message: "Subscript the 'personCustomData' property instead.")
- @objc(addCustomPersonDataString:withKey:) dynamic public func addCustomPersonData(_ string: Swift.String, withKey key: Swift.String)
- @available(swift, deprecated: 1.0, message: "Subscript the 'personCustomData' property instead.")
- @objc(addCustomPersonDataNumber:withKey:) dynamic public func addCustomPersonData(_ number: Foundation.NSNumber, withKey key: Swift.String)
- @available(swift, deprecated: 1.0, message: "Subscript the 'personCustomData' property instead.")
- @objc(addCustomPersonDataBool:withKey:) dynamic public func addCustomPersonData(_ boolValue: Swift.Bool, withKey key: Swift.String)
- @available(*, deprecated, message: "Set style overrides defined in UIKit+Apptentive.swift extensions.")
- @objc dynamic public var styleSheet: Any? {
- @objc get
- @objc set
- }
- @available(*, deprecated, message: "This method is not currently implemented and will trigger an assertion failure.")
- @objc dynamic public func checkSDKConfiguration()
- @available(*, deprecated, message: "This method is not currently implemented and will trigger an assertion failure.")
- @objc dynamic public func logIn(withToken token: Swift.String, completion: @escaping (Swift.Bool, Swift.Error) -> Swift.Void)
- @available(*, deprecated, message: "This method is not currently implemented and will trigger an assertion failure.")
- @objc dynamic public func logOut()
- @available(*, deprecated, message: "Multiple users on the same device is not currently supported.")
- @objc dynamic public var authenticationFailureCallback: ApptentiveKit.ApptentiveAuthenticationFailureCallback? {
- @objc get
- @objc set
- }
- @available(*, deprecated, message: "This feature is no longer supported.")
- @objc dynamic public var preInteractionCallback: ApptentiveKit.ApptentiveInteractionCallback? {
- @objc get
- @objc set
- }
- @available(*, deprecated, message: "This method is not currently implemented and will trigger an assertion failure.")
- @objc dynamic public func updateToken(_ token: Swift.String, completion: ((Swift.Bool) -> Swift.Void)? = nil)
- @available(swift, deprecated: 1.0, message: "Set the 'logLevel' property on 'ApptentiveLogger' or one of it's static log properties.")
- @objc dynamic public var logLevel: ApptentiveKit.ApptentiveLogLevel {
- @objc get
- @objc set
- }
-}
-extension UIKit.UIButton {
- @available(swift, deprecated: 1.0, message: "Set the 'apptentiveStyle' property to 'ApptentiveButtonStyle.pill'.")
- @objc @_Concurrency.MainActor(unsafe) public static let apptentivePillRadius: CoreFoundation.CGFloat
- @available(swift, deprecated: 1.0, message: "Use the 'apptentiveStyle' property.")
- @objc @_Concurrency.MainActor(unsafe) public static var apptentiveCornerRadius: CoreFoundation.CGFloat {
- @objc get
- @objc set
- }
-}
-extension UIKit.UITableView {
- @available(swift, deprecated: 1.0, message: "Use the 'apptentive' property on 'UITableView.Style'.")
- @objc @_Concurrency.MainActor(unsafe) public static var apptentiveStyle: Swift.Int {
- @objc get
- @objc set
- }
-}
-extension UIKit.UIViewController {
- @available(swift, deprecated: 1.0, message: "Use the 'apptentive' property on 'UIModalPresentationStyle'.")
- @objc @_Concurrency.MainActor(unsafe) dynamic public var apptentiveModalPresentationStyle: UIKit.UIModalPresentationStyle {
- @objc get
- @objc set
- }
-}
-@available(*, deprecated, message: "Multiple users on the same device is not currently supported.")
-public typealias ApptentiveAuthenticationFailureCallback = (ApptentiveKit.ApptentiveAuthenticationFailureReason, Swift.String) -> Swift.Void
-@available(*, deprecated, message: "This feature is no longer supported.")
-public typealias ApptentiveInteractionCallback = (Swift.String, [Swift.AnyHashable : Any]?) -> Swift.Bool
-@available(*, deprecated, message: "Multiple users on the same device is not currently supported.")
-@objc public enum ApptentiveAuthenticationFailureReason : Swift.Int {
- case unknown = 0
- case invalidAlgorithm = 1
- case malformedToken = 2
- case invalidToken = 3
- case missingSubClaim = 4
- case mismatchedSubClaim = 5
- case invalidSubClaim = 6
- case expiredToken = 7
- case revokedToken = 8
- case missingAppKey = 9
- case missingAppSignature = 10
- case invalidKeySignaturePair = 11
- public init?(rawValue: Swift.Int)
- public typealias RawValue = Swift.Int
- public var rawValue: Swift.Int {
- get
- }
-}
-@objc @available(swift, deprecated: 1.0, message: "Set the properties from this class on the 'Apptentive' object directly.")
-public class ApptentiveConfiguration : ObjectiveC.NSObject {
- @objc final public let apptentiveKey: Swift.String
- @objc final public let apptentiveSignature: Swift.String
- @available(swift, deprecated: 1.0, message: "Set the 'logLevel' property on 'ApptentiveLogger' or one of its static log properties.")
- @objc public var logLevel: ApptentiveKit.ApptentiveLogLevel
- @available(swift, deprecated: 1.0, message: "Set the 'shouldHideSensitiveLogs' property on 'ApptentiveLogger' or one of its static log properties.")
- @objc public var shouldSanitizeLogMessages: Swift.Bool
- @available(*, deprecated, message: "This property is ignored. Use the designated initializer for 'Apptentive' to set this.")
- @objc public var baseURL: Foundation.URL?
- @available(swift, deprecated: 1.0, message: "Set the 'distributionName' property on 'Apptentive' directly before calling 'register(with:completion)'.")
- @objc public var distributionName: Swift.String?
- @available(swift, deprecated: 1.0, message: "Set the 'distributionVersion' property on 'Apptentive' directly before calling 'register(with:completion)'.")
- @objc public var distributionVersion: Swift.String?
- @available(*, deprecated, message: "This property is ignored. An 'SKStoreReviewController' will be used for all ratings.")
- @objc public var appID: Swift.String?
- @available(*, deprecated, message: "This property is ignored. The info button no longer exists.")
- @objc public var showInfoButton: Swift.Bool
- @available(*, deprecated, message: "This property is ignored. Configure survey terms and conditions in the Apptentive Dashboard.")
- @objc public var surveyTermsAndConditions: ApptentiveKit.TermsAndConditions?
- @objc(initWithApptentiveKey:apptentiveSignature:) required public init?(apptentiveKey: Swift.String, apptentiveSignature: Swift.String)
- @objc public static func configuration(apptentiveKey key: Swift.String, apptentiveSignature signature: Swift.String) -> ApptentiveKit.ApptentiveConfiguration
- @objc deinit
-}
-@available(*, deprecated, message: "Selecting a push notification provider is no longer supported.")
-@objc public enum ApptentivePushProvider : Swift.Int {
- case apptentive = 0
- case urbanAirship = 1
- case amazonSNS = 2
- case parse = 3
- public init?(rawValue: Swift.Int)
- public typealias RawValue = Swift.Int
- public var rawValue: Swift.Int {
- get
- }
-}
-@available(*, deprecated, message: "Use the 'LogLevel' enumeration to set the 'logLevel' property on 'ApptentiveLogger' or one of it's static log properties.")
-@objc public enum ApptentiveLogLevel : Swift.UInt {
- case undefined = 0
- case crit = 1
- case error = 2
- case warn = 3
- case info = 4
- case debug = 5
- case verbose = 6
- public init?(rawValue: Swift.UInt)
- public typealias RawValue = Swift.UInt
- public var rawValue: Swift.UInt {
- get
- }
-}
-@objc @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.")
-public class TermsAndConditions : ObjectiveC.NSObject {
- @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.")
- public init(bodyText: Swift.String?, linkText: Swift.String?, linkURL: Foundation.URL?)
- final public let bodyText: Swift.String?
- final public let linkText: Swift.String?
- final public let linkURL: Foundation.URL?
- @objc deinit
-}
-@available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.")
-public protocol ApptentiveStyle {
- @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.")
- func font(for textStyle: ApptentiveKit.ApptentiveStyleIdentifier) -> UIKit.UIFont
- @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.")
- func color(for style: ApptentiveKit.ApptentiveStyleIdentifier) -> UIKit.UIColor
-}
-@available(*, deprecated, message: "This enumeration is provided for compatibility but this feature is not implemented.")
-public enum ApptentiveStyleIdentifier {
- case body
- case headerTitle
- case headerMessage
- case messageDate
- case messageSender
- case messageStatus
- case messageCenterStatus
- case surveyInstructions
- case doneButton
- case button
- case submitButton
- case textInput
- case headerBackground
- case footerBackground
- case failure
- case separator
- case background
- case collectionBackground
- case textInputBackground
- case textInputPlaceholder
- case messageBackground
- case replyBackground
- case contextBackground
- public static func == (a: ApptentiveKit.ApptentiveStyleIdentifier, b: ApptentiveKit.ApptentiveStyleIdentifier) -> Swift.Bool
- public func hash(into hasher: inout Swift.Hasher)
- public var hashValue: Swift.Int {
- get
- }
-}
-@_hasMissingDesignatedInitializers @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.")
-public class ApptentiveStyleSheet : ApptentiveKit.ApptentiveStyle {
- @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.")
- public func font(for textStyle: ApptentiveKit.ApptentiveStyleIdentifier) -> UIKit.UIFont
- @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.")
- public func color(for style: ApptentiveKit.ApptentiveStyleIdentifier) -> UIKit.UIColor
- @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.")
- convenience public init?(contentsOf stylePropertyListURL: Foundation.URL)
- @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.")
- public var fontFamily: Swift.String
- @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.")
- public var lightFaceAttribute: Swift.String?
- @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.")
- public var regularFaceAttribute: Swift.String?
- @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.")
- public var mediumFaceAttribute: Swift.String?
- @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.")
- public var boldFaceAttribute: Swift.String?
- @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.")
- public var primaryColor: UIKit.UIColor
- @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.")
- public var secondaryColor: UIKit.UIColor
- @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.")
- public var failureColor: UIKit.UIColor
- @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.")
- public var backgroundColor: UIKit.UIColor
- @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.")
- public var separatorColor: UIKit.UIColor
- @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.")
- public var collectionBackgroundColor: UIKit.UIColor
- @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.")
- public var placeholderColor: UIKit.UIColor
- @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.")
- public var sizeAdjustment: CoreFoundation.CGFloat
- @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.")
- public func setFontDescriptor(_ fontDescriptor: UIKit.UIFontDescriptor, forStyle style: Swift.String)
- @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.")
- public func setColor(_ color: UIKit.UIColor, forStyle style: Swift.String)
- @objc deinit
-}
-@objc @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @_Concurrency.MainActor(unsafe) public class DialogButton : UIKit.UIButton {
- @objc @_Concurrency.MainActor(unsafe) dynamic public var titleFont: UIKit.UIFont
- @objc @_Concurrency.MainActor(unsafe) dynamic public var cornerRadius: CoreFoundation.CGFloat
- @objc @_Concurrency.MainActor(unsafe) dynamic public var borderWidth: CoreFoundation.CGFloat
- @objc @_Concurrency.MainActor(unsafe) dynamic public var borderColor: UIKit.UIColor
- @_Concurrency.MainActor(unsafe) @objc override dynamic public var intrinsicContentSize: CoreFoundation.CGSize {
- @objc get
- }
- @_Concurrency.MainActor(unsafe) @objc override dynamic public func layoutSubviews()
- @_Concurrency.MainActor(unsafe) @objc override dynamic public func tintColorDidChange()
- @_Concurrency.MainActor(unsafe) @objc override dynamic public func didMoveToWindow()
- @objc deinit
-}
-@objc @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @_Concurrency.MainActor(unsafe) public class DismissButton : ApptentiveKit.DialogButton {
- @objc deinit
-}
-@objc @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @_Concurrency.MainActor(unsafe) public class InteractionButton : ApptentiveKit.DialogButton {
- @objc deinit
-}
-@objc @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @_Concurrency.MainActor(unsafe) public class YesButton : ApptentiveKit.DialogButton {
- @objc deinit
-}
-@objc @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @_Concurrency.MainActor(unsafe) public class NoButton : ApptentiveKit.DialogButton {
- @objc deinit
-}
-public struct Sysctl {
- public enum Error : Swift.Error {
- case unknown
- case malformedUTF8
- case invalidSize
- case posixError(Darwin.POSIXErrorCode)
- }
- public static func data(for keys: [Swift.Int32]) throws -> [Swift.Int8]
- public static func keys(for name: Swift.String) throws -> [Swift.Int32]
- public static func value(ofType: T.Type, forKeys keys: [Swift.Int32]) throws -> T
- public static func value(ofType type: T.Type, forKeys keys: Swift.Int32...) throws -> T
- public static func value(ofType type: T.Type, forName name: Swift.String) throws -> T
- public static func string(for keys: [Swift.Int32]) throws -> Swift.String
- public static func string(for keys: Swift.Int32...) throws -> Swift.String
- public static func string(for name: Swift.String) throws -> Swift.String
- public static var hostName: Swift.String {
- get
- }
- public static var machine: Swift.String {
- get
- }
- public static var model: Swift.String {
- get
- }
- public static var activeCPUs: Swift.Int32 {
- get
- }
- public static var osRelease: Swift.String {
- get
- }
- public static var osType: Swift.String {
- get
- }
- public static var osVersion: Swift.String {
- get
- }
- public static var version: Swift.String {
- get
- }
-}
-@objc @_inheritsConvenienceInitializers @_Concurrency.MainActor(unsafe) public class ApptentiveNavigationController : UIKit.UINavigationController {
- @_Concurrency.MainActor(unsafe) @objc override dynamic public var preferredStatusBarStyle: UIKit.UIStatusBarStyle {
- @objc get
- }
- @objc @_Concurrency.MainActor(unsafe) public static var prefersLargeHeader: Swift.Bool
- @available(iOS 5.0, *)
- @_Concurrency.MainActor(unsafe) @objc override dynamic public init(navigationBarClass: Swift.AnyClass?, toolbarClass: Swift.AnyClass?)
- @_Concurrency.MainActor(unsafe) @objc override dynamic public init(rootViewController: UIKit.UIViewController)
- @_Concurrency.MainActor(unsafe) @objc override dynamic public init(nibName nibNameOrNil: Swift.String?, bundle nibBundleOrNil: Foundation.Bundle?)
- @_Concurrency.MainActor(unsafe) @objc required dynamic public init?(coder aDecoder: Foundation.NSCoder)
- @objc deinit
-}
-extension UIKit.UITableView {
- @_Concurrency.MainActor(unsafe) public static var apptentiveQuestionSeparatorHeight: CoreFoundation.CGFloat
-}
-extension UIKit.UITableView.Style {
- public static var apptentive: UIKit.UITableView.Style
-}
-extension UIKit.UIModalPresentationStyle {
- public static var apptentive: UIKit.UIModalPresentationStyle
-}
-extension UIKit.UIBarButtonItem {
- @objc @_Concurrency.MainActor(unsafe) public static var apptentiveClose: UIKit.UIBarButtonItem
- @objc @_Concurrency.MainActor(unsafe) public static var apptentiveProfileEdit: UIKit.UIBarButtonItem
-}
-extension UIKit.UIButton {
- @_Concurrency.MainActor(unsafe) public static var apptentiveClose: UIKit.UIButton?
- public enum ApptentiveButtonStyle {
- case pill
- case radius(CoreFoundation.CGFloat)
- }
- @_Concurrency.MainActor(unsafe) public static var apptentiveStyle: UIKit.UIButton.ApptentiveButtonStyle
-}
-extension UIKit.UIImage {
- @objc public static var apptentiveMessageAttachmentButton: UIKit.UIImage?
- @objc public static var apptentiveMessageSendButton: UIKit.UIImage?
- @objc public static var apptentiveSentMessageBubble: UIKit.UIImage?
- @objc public static var apptentiveReceivedMessageBubble: UIKit.UIImage?
- @objc public static var apptentiveAttachmentPlaceholder: UIKit.UIImage?
- @objc public static var apptentiveAttachmentRemoveButton: UIKit.UIImage?
- @objc public static var apptentiveHeaderLogo: UIKit.UIImage?
- @objc public static var apptentiveRadioButton: UIKit.UIImage?
- @objc public static var apptentiveCheckbox: UIKit.UIImage?
- @objc public static var apptentiveRadioButtonSelected: UIKit.UIImage?
- @objc public static var apptentiveCheckboxSelected: UIKit.UIImage?
-}
-extension UIKit.UIColor {
- @objc public static var apptentiveMessageCenterTextInputBackground: UIKit.UIColor
- @objc public static var apptentiveMessageCenterTextInputPlaceholder: UIKit.UIColor
- @available(*, deprecated, message: "This property has been renamed to 'apptentiveMessageTextInputPlaceholder'.")
- @objc public static var apptentiveMessageTextViewPlaceholder: UIKit.UIColor {
- @objc get
- @objc set
- }
- @objc public static var apptentiveMessageCenterTextInput: UIKit.UIColor
- @objc public static var apptentivetextInputTint: UIKit.UIColor
- @objc public static var apptentiveMessageCenterTextInputBorder: UIKit.UIColor
- @available(*, deprecated, message: "This property has been renamed to 'apptentiveMessageCenterTextInputBorder'.")
- @objc public static var apptentiveMessageCenterTextViewBorder: UIKit.UIColor {
- @objc get
- @objc set
- }
- @objc public static var apptentiveMessageCenterAttachmentButton: UIKit.UIColor
- @objc public static var apptentiveMessageTextInputPlaceholder: UIKit.UIColor
- @objc public static var apptentiveMessageCenterStatus: UIKit.UIColor
- @objc public static var apptentiveMessageCenterGreetingBody: UIKit.UIColor
- @objc public static var apptentiveMessageCenterGreetingTitle: UIKit.UIColor
- @objc public static var apptentiveMessageBubbleInbound: UIKit.UIColor
- @objc public static var apptentiveMessageBubbleOutbound: UIKit.UIColor
- @objc public static var apptentiveMessageLabelInbound: UIKit.UIColor
- @objc public static var apptentiveMessageLabelOutbound: UIKit.UIColor
- @objc public static var apptentiveQuestionLabel: UIKit.UIColor
- @objc public static var apptentiveInstructionsLabel: UIKit.UIColor
- @objc public static var apptentiveChoiceLabel: UIKit.UIColor
- @objc public static var apptentiveError: UIKit.UIColor
- @objc public static var apptentiveSecondaryLabel: UIKit.UIColor
- @objc public static var apptentiveRangeControlBorder: UIKit.UIColor
- @objc public static var apptentiveSurveyIntroduction: UIKit.UIColor
- @objc public static var apptentiveTextInputBorder: UIKit.UIColor
- @objc public static var apptentiveTextInputBackground: UIKit.UIColor
- @objc public static var apptentiveTextInput: UIKit.UIColor
- @objc public static var apptentiveTextInputPlaceholder: UIKit.UIColor
- @objc public static var apptentiveMinMaxLabel: UIKit.UIColor
- @objc public static var apptentiveGroupedBackground: UIKit.UIColor
- @objc public static var apptentiveSecondaryGroupedBackground: UIKit.UIColor
- @objc public static var apptentiveSeparator: UIKit.UIColor
- @objc public static var apptentiveImageSelected: UIKit.UIColor
- @objc public static var apptentiveImageNotSelected: UIKit.UIColor
- @objc public static var apptentiveSubmitButton: UIKit.UIColor
- @objc public static var apptentiveBranchedSurveyFooter: UIKit.UIColor
- @available(*, deprecated, message: "This property has been renamed to 'apptentiveSubmitStatusLabel'.")
- public static var apptentiveSubmitLabel: UIKit.UIColor
- @objc public static var apptentiveSubmitStatusLabel: UIKit.UIColor
- @objc public static var apptentiveTermsOfServiceLabel: UIKit.UIColor
- @objc public static var apptentiveSubmitButtonTitle: UIKit.UIColor
- @objc public static var apptentiveSubmitButtonBorder: UIKit.UIColor
- @objc public static var apptentiveQuestionSeparator: UIKit.UIColor
- public static var apptentiveUnselectedSurveyIndicatorSegment: UIKit.UIColor
- public static var apptentiveSelectedSurveyIndicatorSegment: UIKit.UIColor
- @objc public static var apptentiveMessageCenterBackground: UIKit.UIColor
- @objc public static var apptentiveMessageCenterAttachmentDeleteButton: UIKit.UIColor
- @objc public static var apptentiveMessageCenterComposeBoxBackground: UIKit.UIColor
- @objc public static var apptentiveMessageCenterComposeBoxSeparator: UIKit.UIColor
- @objc public static var apptentiveTextInputBorderSelected: UIKit.UIColor
- @objc public static var apptentiveDisclaimerLabel: UIKit.UIColor
-}
-extension UIKit.UIFont {
- @objc public static var apptentiveMessageCenterTextInputPlaceholder: UIKit.UIFont
- @objc public static var apptentiveMessageCenterTextInput: UIKit.UIFont
- @objc public static var apptentiveTextInputPlaceholder: UIKit.UIFont
- @objc public static var apptentiveMessageCenterStatus: UIKit.UIFont
- @objc public static var apptentiveMessageCenterGreetingTitle: UIKit.UIFont
- @objc public static var apptentiveMessageCenterGreetingBody: UIKit.UIFont
- @objc public static var apptentiveMessageCenterAttachmentLabel: UIKit.UIFont
- @objc public static var apptentiveQuestionLabel: UIKit.UIFont
- @objc public static var apptentiveTermsOfServiceLabel: UIKit.UIFont
- @objc public static var apptentiveChoiceLabel: UIKit.UIFont
- @objc public static var apptentiveMessageLabel: UIKit.UIFont
- @objc public static var apptentiveMinMaxLabel: UIKit.UIFont
- @objc public static var apptentiveSenderLabel: UIKit.UIFont
- @objc public static var apptentiveMessageDateLabel: UIKit.UIFont
- @objc public static var apptentiveInstructionsLabel: UIKit.UIFont
- @objc public static var apptentiveSurveyIntroductionLabel: UIKit.UIFont
- @available(*, deprecated, message: "This property has been renamed to 'apptentiveSubmitStatusLabel'.")
- public static var apptentiveSubmitLabel: UIKit.UIFont
- @objc public static var apptentiveSubmitStatusLabel: UIKit.UIFont
- @objc public static var apptentiveDisclaimerLabel: UIKit.UIFont
- @objc public static var apptentiveSubmitButtonTitle: UIKit.UIFont
- @objc public static var apptentiveTextInput: UIKit.UIFont
-}
-extension UIKit.UIToolbar {
- @objc public enum ToolbarMode : Swift.Int {
- case alwaysShown
- case hiddenWhenEmpty
- public init?(rawValue: Swift.Int)
- public typealias RawValue = Swift.Int
- public var rawValue: Swift.Int {
- get
- }
- }
- @objc @_Concurrency.MainActor(unsafe) public static var apptentiveMode: UIKit.UIToolbar.ToolbarMode
-}
-extension CoreFoundation.CGFloat {
- public static var apptentiveButtonBorderWidth: CoreFoundation.CGFloat
-}
-extension ApptentiveKit.DialogViewModel.Action.ActionType : Swift.Equatable {}
-extension ApptentiveKit.DialogViewModel.Action.ActionType : Swift.Hashable {}
-extension ApptentiveKit.DialogViewModel.Action.ActionType : Swift.RawRepresentable {}
-extension ApptentiveKit.MessageCenterViewModel.Message.SentStatus : Swift.Hashable {}
-extension ApptentiveKit.SurveyViewModel.ChoiceQuestion.SelectionStyle : Swift.Equatable {}
-extension ApptentiveKit.SurveyViewModel.ChoiceQuestion.SelectionStyle : Swift.Hashable {}
-extension ApptentiveKit.LogLevel : Swift.Hashable {}
-extension ApptentiveKit.LogLevel : Swift.RawRepresentable {}
-extension ApptentiveKit.Apptentive.UITheme : Swift.Equatable {}
-extension ApptentiveKit.Apptentive.UITheme : Swift.Hashable {}
-extension ApptentiveKit.SurveyViewModel.DisplayMode : Swift.Equatable {}
-extension ApptentiveKit.SurveyViewModel.DisplayMode : Swift.Hashable {}
-extension ApptentiveKit.MessageCenterViewModel.ProfileMode : Swift.Equatable {}
-extension ApptentiveKit.MessageCenterViewModel.ProfileMode : Swift.Hashable {}
-extension ApptentiveKit.MessageCenterViewModelError : Swift.Equatable {}
-extension ApptentiveKit.MessageCenterViewModelError : Swift.Hashable {}
-extension ApptentiveKit.DialogViewModel.DialogType : Swift.Equatable {}
-extension ApptentiveKit.DialogViewModel.DialogType : Swift.Hashable {}
-@available(*, deprecated, message: "Multiple users on the same device is not currently supported.")
-extension ApptentiveKit.ApptentiveAuthenticationFailureReason : Swift.Equatable {}
-@available(*, deprecated, message: "Multiple users on the same device is not currently supported.")
-extension ApptentiveKit.ApptentiveAuthenticationFailureReason : Swift.Hashable {}
-@available(*, deprecated, message: "Multiple users on the same device is not currently supported.")
-extension ApptentiveKit.ApptentiveAuthenticationFailureReason : Swift.RawRepresentable {}
-@available(*, deprecated, message: "Selecting a push notification provider is no longer supported.")
-extension ApptentiveKit.ApptentivePushProvider : Swift.Equatable {}
-@available(*, deprecated, message: "Selecting a push notification provider is no longer supported.")
-extension ApptentiveKit.ApptentivePushProvider : Swift.Hashable {}
-@available(*, deprecated, message: "Selecting a push notification provider is no longer supported.")
-extension ApptentiveKit.ApptentivePushProvider : Swift.RawRepresentable {}
-@available(*, deprecated, message: "Use the 'LogLevel' enumeration to set the 'logLevel' property on 'ApptentiveLogger' or one of it's static log properties.")
-extension ApptentiveKit.ApptentiveLogLevel : Swift.Equatable {}
-@available(*, deprecated, message: "Use the 'LogLevel' enumeration to set the 'logLevel' property on 'ApptentiveLogger' or one of it's static log properties.")
-extension ApptentiveKit.ApptentiveLogLevel : Swift.Hashable {}
-@available(*, deprecated, message: "Use the 'LogLevel' enumeration to set the 'logLevel' property on 'ApptentiveLogger' or one of it's static log properties.")
-extension ApptentiveKit.ApptentiveLogLevel : Swift.RawRepresentable {}
-@available(*, deprecated, message: "This enumeration is provided for compatibility but this feature is not implemented.")
-extension ApptentiveKit.ApptentiveStyleIdentifier : Swift.Equatable {}
-@available(*, deprecated, message: "This enumeration is provided for compatibility but this feature is not implemented.")
-extension ApptentiveKit.ApptentiveStyleIdentifier : Swift.Hashable {}
-extension UIKit.UIToolbar.ToolbarMode : Swift.Equatable {}
-extension UIKit.UIToolbar.ToolbarMode : Swift.Hashable {}
-extension UIKit.UIToolbar.ToolbarMode : Swift.RawRepresentable {}
diff --git a/src/ios/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/Modules/ApptentiveKit.swiftmodule/arm64-apple-ios.swiftdoc b/src/ios/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/Modules/ApptentiveKit.swiftmodule/arm64-apple-ios.swiftdoc
deleted file mode 100644
index f8340f6..0000000
Binary files a/src/ios/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/Modules/ApptentiveKit.swiftmodule/arm64-apple-ios.swiftdoc and /dev/null differ
diff --git a/src/ios/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/Modules/ApptentiveKit.swiftmodule/arm64-apple-ios.swiftinterface b/src/ios/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/Modules/ApptentiveKit.swiftmodule/arm64-apple-ios.swiftinterface
deleted file mode 100644
index 542fbb9..0000000
--- a/src/ios/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/Modules/ApptentiveKit.swiftmodule/arm64-apple-ios.swiftinterface
+++ /dev/null
@@ -1,1202 +0,0 @@
-// 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 arm64-apple-ios11.0 -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name ApptentiveKit
-// swift-module-flags-ignorable: -enable-bare-slash-regex
-import CoreTelephony
-import Foundation
-import MobileCoreServices
-import OSLog
-import PhotosUI
-import QuickLook
-import QuickLookThumbnailing
-import StoreKit
-import Swift
-import UIKit
-import _Concurrency
-import _StringProcessing
-@objc @_hasMissingDesignatedInitializers @_Concurrency.MainActor(unsafe) public class DialogViewController : UIKit.UIViewController, ApptentiveKit.DialogViewModelDelegate {
- @_Concurrency.MainActor(unsafe) @objc override dynamic public func viewDidLoad()
- @_Concurrency.MainActor(unsafe) @objc override dynamic public func viewDidAppear(_ animated: Swift.Bool)
- @_Concurrency.MainActor(unsafe) public func dismiss()
- @objc deinit
-}
-extension ApptentiveKit.DialogViewModel {
- @_hasMissingDesignatedInitializers public class Action {
- final public let label: Swift.String
- final public let actionType: ApptentiveKit.DialogViewModel.Action.ActionType
- final public let buttonTapped: () -> Swift.Void
- public enum ActionType : Swift.String {
- case dismiss
- case interaction
- case yes
- case no
- public init?(rawValue: Swift.String)
- public typealias RawValue = Swift.String
- public var rawValue: Swift.String {
- get
- }
- }
- @objc deinit
- }
-}
-extension ApptentiveKit.SurveyViewModel {
- @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers public class RangeQuestion : ApptentiveKit.SurveyViewModel.Question {
- final public let minValue: Swift.Int
- final public let maxValue: Swift.Int
- final public let minText: Swift.String?
- final public let maxText: Swift.String?
- public var selectedValueIndex: Swift.Int? {
- get
- }
- public var value: Swift.Int? {
- get
- }
- public var choiceLabels: [Swift.String] {
- get
- }
- public func selectValue(at index: Swift.Int)
- public var accessibilityHintForSegment: Swift.String {
- get
- }
- @objc deinit
- }
-}
-extension ApptentiveKit.MessageCenterViewModel {
- @_hasMissingDesignatedInitializers public class Message : Swift.Equatable {
- final public let nonce: Swift.String
- final public let direction: ApptentiveKit.MessageCenterViewModel.Message.Direction
- final public let isAutomated: Swift.Bool
- final public let attachments: [ApptentiveKit.MessageCenterViewModel.Message.Attachment]
- final public let sender: ApptentiveKit.MessageCenterViewModel.Message.Sender?
- final public let body: Swift.String?
- final public let sentDate: Foundation.Date
- final public let accessibilityLabel: Swift.String?
- final public let accessibilityHint: Swift.String?
- final public let statusText: Swift.String
- public static func == (lhs: ApptentiveKit.MessageCenterViewModel.Message, rhs: ApptentiveKit.MessageCenterViewModel.Message) -> Swift.Bool
- public enum Direction : Swift.Equatable {
- case sentFromDashboard(ApptentiveKit.MessageCenterViewModel.Message.ReadStatus)
- case sentFromDevice(ApptentiveKit.MessageCenterViewModel.Message.SentStatus)
- case automated
- public static func == (a: ApptentiveKit.MessageCenterViewModel.Message.Direction, b: ApptentiveKit.MessageCenterViewModel.Message.Direction) -> Swift.Bool
- }
- public enum SentStatus : Swift.Codable, Swift.Equatable {
- case draft
- case queued
- case sending
- case sent
- case failed
- public func hash(into hasher: inout Swift.Hasher)
- public static func == (a: ApptentiveKit.MessageCenterViewModel.Message.SentStatus, b: ApptentiveKit.MessageCenterViewModel.Message.SentStatus) -> Swift.Bool
- public func encode(to encoder: Swift.Encoder) throws
- public var hashValue: Swift.Int {
- get
- }
- public init(from decoder: Swift.Decoder) throws
- }
- public enum ReadStatus : Swift.Codable, Swift.Equatable {
- case read
- case unread(messageID: Swift.String?)
- public static func == (a: ApptentiveKit.MessageCenterViewModel.Message.ReadStatus, b: ApptentiveKit.MessageCenterViewModel.Message.ReadStatus) -> Swift.Bool
- public func encode(to encoder: Swift.Encoder) throws
- public init(from decoder: Swift.Decoder) throws
- }
- public struct Sender : Swift.Equatable {
- public static func == (a: ApptentiveKit.MessageCenterViewModel.Message.Sender, b: ApptentiveKit.MessageCenterViewModel.Message.Sender) -> Swift.Bool
- }
- @objc @_hasMissingDesignatedInitializers public class Attachment : ObjectiveC.NSObject, QuickLook.QLPreviewItem {
- final public let fileExtension: Swift.String?
- public var thumbnail: UIKit.UIImage? {
- get
- }
- public var downloadProgress: Swift.Float
- public var localURL: Foundation.URL?
- public var displayName: Swift.String {
- get
- }
- @objc public var previewItemURL: Foundation.URL? {
- @objc get
- }
- @objc public var previewItemTitle: Swift.String? {
- @objc get
- }
- @objc override dynamic public var accessibilityLabel: Swift.String? {
- @objc get
- @objc set
- }
- public var removeButtonAccessibilityLabel: Swift.String {
- get
- }
- public var viewButtonAccessibilityLabel: Swift.String {
- get
- }
- @objc deinit
- }
- @objc deinit
- }
-}
-extension ApptentiveKit.Apptentive : UserNotifications.UNUserNotificationCenterDelegate {
- @objc dynamic public func setRemoteNotificationDeviceToken(_ tokenData: Foundation.Data)
- @available(*, deprecated, message: "Use the (correctly-spelled) 'setRemoteNotificationDeviceToken(_:)' method instead.")
- @objc dynamic public func setRemoteNotifcationDeviceToken(_ tokenData: Foundation.Data)
- @objc dynamic public func didReceiveRemoteNotification(_ userInfo: [Swift.AnyHashable : Any], fetchCompletionHandler completionHandler: @escaping (UIKit.UIBackgroundFetchResult) -> Swift.Void) -> Swift.Bool
- @objc dynamic public func didReceveUserNotificationResponse(_ response: UserNotifications.UNNotificationResponse, withCompletionHandler completionHandler: @escaping () -> Swift.Void) -> Swift.Bool
- @objc dynamic public func willPresent(_ notification: UserNotifications.UNNotification, withCompletionHandler completionHandler: @escaping (UserNotifications.UNNotificationPresentationOptions) -> Swift.Void) -> Swift.Bool
- @objc dynamic public func userNotificationCenter(_ center: UserNotifications.UNUserNotificationCenter, willPresent notification: UserNotifications.UNNotification, withCompletionHandler completionHandler: @escaping (UserNotifications.UNNotificationPresentationOptions) -> Swift.Void)
- @objc dynamic public func userNotificationCenter(_ center: UserNotifications.UNUserNotificationCenter, didReceive response: UserNotifications.UNNotificationResponse, withCompletionHandler completionHandler: @escaping () -> Swift.Void)
-}
-extension ApptentiveKit.SurveyViewModel {
- @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers public class ChoiceQuestion : ApptentiveKit.SurveyViewModel.Question {
- final public let choices: [ApptentiveKit.SurveyViewModel.ChoiceQuestion.Choice]
- public func toggleChoice(at index: Swift.Int)
- public var selectionStyle: ApptentiveKit.SurveyViewModel.ChoiceQuestion.SelectionStyle {
- get
- }
- public enum SelectionStyle {
- case checkbox
- case radioButton
- public static func == (a: ApptentiveKit.SurveyViewModel.ChoiceQuestion.SelectionStyle, b: ApptentiveKit.SurveyViewModel.ChoiceQuestion.SelectionStyle) -> Swift.Bool
- public func hash(into hasher: inout Swift.Hasher)
- public var hashValue: Swift.Int {
- get
- }
- }
- @_hasMissingDesignatedInitializers public class Choice {
- final public let label: Swift.String
- final public let placeholderText: Swift.String?
- final public let supportsOther: Swift.Bool
- public var isSelected: Swift.Bool {
- get
- }
- public var isMarkedAsInvalid: Swift.Bool {
- get
- }
- public var value: Swift.String? {
- get
- set
- }
- @objc deinit
- }
- @objc deinit
- }
-}
-public struct ApptentiveLogger {
- public static var shouldHideSensitiveLogs: Swift.Bool
- public var logLevel: ApptentiveKit.LogLevel
-}
-extension ApptentiveKit.ApptentiveLogger {
- public static var `default`: ApptentiveKit.ApptentiveLogger
- public static var engagement: ApptentiveKit.ApptentiveLogger
- public static var interaction: ApptentiveKit.ApptentiveLogger
- public static var network: ApptentiveKit.ApptentiveLogger
- public static var payload: ApptentiveKit.ApptentiveLogger
- public static var targeting: ApptentiveKit.ApptentiveLogger
- public static var messages: ApptentiveKit.ApptentiveLogger
- public static var attachments: ApptentiveKit.ApptentiveLogger
- public static var logLevel: ApptentiveKit.LogLevel {
- get
- set
- }
-}
-public enum LogLevel : Swift.Int, Swift.Comparable {
- case debug
- case info
- case notice
- case warning
- case error
- case critical
- case fault
- public static func < (lhs: ApptentiveKit.LogLevel, rhs: ApptentiveKit.LogLevel) -> Swift.Bool
- public init?(rawValue: Swift.Int)
- public typealias RawValue = Swift.Int
- public var rawValue: Swift.Int {
- get
- }
-}
-@objc @_hasMissingDesignatedInitializers public class Apptentive : ObjectiveC.NSObject {
- @objc public static let shared: ApptentiveKit.Apptentive
- public var interactionPresenter: ApptentiveKit.InteractionPresenter {
- get
- set
- }
- public var theme: ApptentiveKit.Apptentive.UITheme
- @objc public var personName: Swift.String? {
- @objc get
- @objc set
- }
- @objc public var personEmailAddress: Swift.String? {
- @objc get
- @objc set
- }
- @objc public var mParticleID: Swift.String? {
- @objc get
- @objc set
- }
- public var personCustomData: ApptentiveKit.CustomData {
- get
- set
- }
- public var deviceCustomData: ApptentiveKit.CustomData {
- get
- set
- }
- @objc dynamic public var unreadMessageCount: Swift.Int
- @objc public var distributionName: Swift.String? {
- @objc get
- @objc set
- }
- @objc public var distributionVersion: Swift.String? {
- @objc get
- @objc set
- }
- public enum UITheme {
- case apptentive
- case none
- public static func == (a: ApptentiveKit.Apptentive.UITheme, b: ApptentiveKit.Apptentive.UITheme) -> Swift.Bool
- public func hash(into hasher: inout Swift.Hasher)
- public var hashValue: Swift.Int {
- get
- }
- }
- public func register(with credentials: ApptentiveKit.Apptentive.AppCredentials, completion: ((Swift.Result) -> Swift.Void)? = nil)
- public struct AppCredentials : Swift.Codable, Swift.Equatable {
- public let key: Swift.String
- public let signature: Swift.String
- public init(key: Swift.String, signature: Swift.String)
- public static func == (a: ApptentiveKit.Apptentive.AppCredentials, b: ApptentiveKit.Apptentive.AppCredentials) -> Swift.Bool
- public func encode(to encoder: Swift.Encoder) throws
- public init(from decoder: Swift.Decoder) throws
- }
- public func engage(event: ApptentiveKit.Event, from viewController: UIKit.UIViewController? = nil, completion: ((Swift.Result) -> Swift.Void)? = nil)
- public func dismissAllInteractions(animated: Swift.Bool)
- public func presentMessageCenter(from viewController: UIKit.UIViewController?, completion: ((Swift.Result) -> Swift.Void)? = nil)
- public func presentMessageCenter(from viewController: UIKit.UIViewController?, with customData: ApptentiveKit.CustomData?, completion: ((Swift.Result) -> Swift.Void)? = nil)
- @objc(sendAttachmentText:) public func sendAttachment(_ text: Swift.String)
- @objc(sendAttachmentImage:) public func sendAttachment(_ image: UIKit.UIImage)
- @objc(sendAttachmentFile:withMimeType:) public func sendAttachment(_ fileData: Foundation.Data, mediaType: Swift.String)
- public func canShowInteraction(event: ApptentiveKit.Event, completion: ((Swift.Result) -> Swift.Void)? = nil)
- convenience public init(apiBaseURL: Foundation.URL)
- @objc deinit
-}
-public enum ApptentiveError : Swift.Error {
- case internalInconsistency
- case invalidCustomDataType(Any?)
- case fileExistsAtContainerDirectoryPath
- case mismatchedCredentials
-}
-public var apptentiveAssertionHandler: (_ message: @autoclosure () -> Swift.String, _ file: Swift.StaticString, _ line: Swift.UInt) -> ()
-public protocol CustomDataCompatible {
-}
-extension Swift.String : ApptentiveKit.CustomDataCompatible {
-}
-extension Swift.Double : ApptentiveKit.CustomDataCompatible {
-}
-extension Swift.Float : ApptentiveKit.CustomDataCompatible {
-}
-extension Swift.Int : ApptentiveKit.CustomDataCompatible {
-}
-extension Swift.Bool : ApptentiveKit.CustomDataCompatible {
-}
-public struct CustomData : Swift.Equatable, Swift.Codable {
- public init()
- public subscript(key: Swift.String) -> ApptentiveKit.CustomDataCompatible? {
- get
- set
- }
- public var keys: Swift.Dictionary.Keys {
- get
- }
- public func encode(to encoder: Swift.Encoder) throws
- public init(from decoder: Swift.Decoder) throws
- public static func == (lhs: ApptentiveKit.CustomData, rhs: ApptentiveKit.CustomData) -> Swift.Bool
-}
-public protocol SurveyViewModelDelegate : AnyObject {
- func surveyViewModelDidFinish(_ viewModel: ApptentiveKit.SurveyViewModel)
- func surveyViewModelValidationDidChange(_ viewModel: ApptentiveKit.SurveyViewModel)
- func surveyViewModelSelectionDidChange(_ viewModel: ApptentiveKit.SurveyViewModel)
- func surveyViewModelPageWillChange(_ viewModel: ApptentiveKit.SurveyViewModel)
- func surveyViewModelPageDidChange(_ viewModel: ApptentiveKit.SurveyViewModel)
-}
-@_hasMissingDesignatedInitializers public class SurveyViewModel {
- final public let name: Swift.String?
- final public let isRequired: Swift.Bool
- final public let pageIndicatorSegmentCount: Swift.Int
- final public let validationErrorMessage: Swift.String
- final public let disclaimerText: Swift.String?
- public struct TermsAndConditions {
- }
- final public let termsAndConditions: ApptentiveKit.SurveyViewModel.TermsAndConditions?
- public struct CloseConfirmation {
- }
- final public let closeConfirmation: ApptentiveKit.SurveyViewModel.CloseConfirmation
- weak public var delegate: ApptentiveKit.SurveyViewModelDelegate?
- public var currentPage: ApptentiveKit.SurveyViewModel.Page {
- get
- }
- public var questions: [ApptentiveKit.SurveyViewModel.Question] {
- get
- }
- public var isMarkedAsInvalid: Swift.Bool {
- get
- }
- public var thankYouMessage: Swift.String? {
- get
- }
- public var introduction: Swift.String? {
- get
- }
- public var advanceButtonText: Swift.String {
- get
- }
- public var invalidQuestionIndexes: Foundation.IndexSet {
- get
- }
- public var surveyDidSendResponse: Swift.Bool
- public var highlightFirstQuestionSegment: Swift.Bool
- public func setValue(_ value: Swift.String?, for indexPath: Foundation.IndexPath)
- public func selectValueFromRange(at indexPath: Foundation.IndexPath)
- public func openTermsAndConditions()
- public func advance()
- public var isValid: Swift.Bool {
- get
- }
- public enum DisplayMode {
- case list
- case paged
- public static func == (a: ApptentiveKit.SurveyViewModel.DisplayMode, b: ApptentiveKit.SurveyViewModel.DisplayMode) -> Swift.Bool
- public func hash(into hasher: inout Swift.Hasher)
- public var hashValue: Swift.Int {
- get
- }
- }
- public var displayMode: ApptentiveKit.SurveyViewModel.DisplayMode {
- get
- }
- public var shouldConfirmCancel: Swift.Bool {
- get
- }
- public var currentSelectedSegmentIndex: Swift.Int? {
- get
- }
- public func launch()
- public func continuePartial()
- public func cancel(partial: Swift.Bool)
- @objc deinit
-}
-extension ApptentiveKit.SurveyViewModel {
- @_hasMissingDesignatedInitializers public class Page {
- final public let id: Swift.String
- final public let description: Swift.String?
- final public let questions: [ApptentiveKit.SurveyViewModel.Question]
- final public let advanceButtonLabel: Swift.String
- final public let pageIndicatorValue: Swift.Int?
- @objc deinit
- }
-}
-public protocol MessageCenterViewModelDelegate : AnyObject {
- func messageCenterViewModelDidBeginUpdates(_: ApptentiveKit.MessageCenterViewModel)
- func messageCenterViewModel(_: ApptentiveKit.MessageCenterViewModel, didInsertSectionsWith sectionIndexes: Foundation.IndexSet)
- func messageCenterViewModel(_: ApptentiveKit.MessageCenterViewModel, didDeleteSectionsWith sectionIndexes: Foundation.IndexSet)
- func messageCenterViewModel(_: ApptentiveKit.MessageCenterViewModel, didDeleteRowsAt indexPaths: [Foundation.IndexPath])
- func messageCenterViewModel(_: ApptentiveKit.MessageCenterViewModel, didUpdateRowsAt indexPaths: [Foundation.IndexPath])
- func messageCenterViewModel(_: ApptentiveKit.MessageCenterViewModel, didInsertRowsAt indexPaths: [Foundation.IndexPath])
- func messageCenterViewModel(_: ApptentiveKit.MessageCenterViewModel, didMoveRowsAt indexPathMoves: [(Foundation.IndexPath, Foundation.IndexPath)])
- func messageCenterViewModelDidEndUpdates(_: ApptentiveKit.MessageCenterViewModel)
- func messageCenterViewModelMessageListDidLoad(_: ApptentiveKit.MessageCenterViewModel)
- func messageCenterViewModelDraftMessageDidUpdate(_: ApptentiveKit.MessageCenterViewModel)
- func messageCenterViewModel(_: ApptentiveKit.MessageCenterViewModel, didFailToRemoveAttachmentAt index: Swift.Int, with error: Swift.Error)
- func messageCenterViewModel(_: ApptentiveKit.MessageCenterViewModel, didFailToAddAttachmentWith error: Swift.Error)
- func messageCenterViewModel(_: ApptentiveKit.MessageCenterViewModel, didFailToSendMessageWith error: Swift.Error)
- func messageCenterViewModel(_: ApptentiveKit.MessageCenterViewModel, attachmentDownloadDidFinishAt index: Swift.Int, inMessageAt indexPath: Foundation.IndexPath)
- func messageCenterViewModel(_: ApptentiveKit.MessageCenterViewModel, attachmentDownloadDidFailAt index: Swift.Int, inMessageAt indexPath: Foundation.IndexPath, with error: Swift.Error)
-}
-@_hasMissingDesignatedInitializers public class MessageCenterViewModel {
- final public let headingTitle: Swift.String
- final public let branding: Swift.String?
- final public let composerTitle: Swift.String
- final public let composerSendButtonTitle: Swift.String
- final public let composerAttachButtonTitle: Swift.String
- final public let composerPlaceholderText: Swift.String
- final public let composerCloseConfirmBody: Swift.String
- final public let composerCloseDiscardButtonTitle: Swift.String
- final public let composerCloseCancelButtonTitle: Swift.String
- final public let greetingTitle: Swift.String
- final public let greetingBody: Swift.String
- final public let greetingImageURL: Foundation.URL
- final public let statusBody: Swift.String?
- public var groupedMessages: [[ApptentiveKit.MessageCenterViewModel.Message]]
- public var hasLoadedMessages: Swift.Bool
- public var thumbnailSize: CoreFoundation.CGSize {
- get
- set
- }
- final public let profileNamePlaceholder: Swift.String
- final public let profileEmailPlaceholder: Swift.String
- final public let profileCancelButtonText: Swift.String
- final public let profileSaveButtonText: Swift.String
- final public let editProfileViewTitle: Swift.String
- final public let editProfileNamePlaceholder: Swift.String
- final public let editProfileEmailPlaceholder: Swift.String
- final public let editProfileCancelButtonText: Swift.String
- final public let editProfileSaveButtonText: Swift.String
- final public let profileMode: ApptentiveKit.MessageCenterViewModel.ProfileMode
- final public let closeButtonAccessibilityLabel: Swift.String
- final public let closeButtonAccessibilityHint: Swift.String
- final public let profileButtonAccessibilityLabel: Swift.String
- final public let profileButtonAccessibilityHint: Swift.String
- final public let sendButtonAccessibilityLabel: Swift.String
- final public let sendButtonAccessibilityHint: Swift.String
- final public let attachButtonAccessibilityLabel: Swift.String
- final public let attachButtonAccessibilityHint: Swift.String
- final public let attachmentOptionsTitle: Swift.String
- final public let attachmentOptionsImagesButton: Swift.String
- final public let attachmentOptionsFilesButton: Swift.String
- final public let attachmentOptionsCancelButton: Swift.String
- final public let showAttachmentButtonAccessibilityHint: Swift.String
- final public let downloadAttachmentButtonAccessibilityHint: Swift.String
- public var emailAddress: Swift.String? {
- get
- set
- }
- public var name: Swift.String? {
- get
- set
- }
- public var profileIsValid: Swift.Bool
- public var shouldRequestProfile: Swift.Bool
- public enum ProfileMode {
- case optionalEmail
- case requiredEmail
- case hidden
- public static func == (a: ApptentiveKit.MessageCenterViewModel.ProfileMode, b: ApptentiveKit.MessageCenterViewModel.ProfileMode) -> Swift.Bool
- public func hash(into hasher: inout Swift.Hasher)
- public var hashValue: Swift.Int {
- get
- }
- }
- public var oldestUnreadMessageIndexPath: Foundation.IndexPath? {
- get
- }
- public var newestMessageIndexPath: Foundation.IndexPath? {
- get
- }
- public func commitProfileEdits()
- public func cancelProfileEdits()
- public func launch()
- public func cancel()
- public var numberOfMessageGroups: Swift.Int {
- get
- }
- public func markMessageAsRead(at indexPath: Foundation.IndexPath)
- public func numberOfMessagesInGroup(at index: Swift.Int) -> Swift.Int
- public func dateStringForMessagesInGroup(at index: Swift.Int) -> Swift.String?
- public func message(at indexPath: Foundation.IndexPath) -> ApptentiveKit.MessageCenterViewModel.Message
- public func downloadAttachment(at index: Swift.Int, inMessageAt indexPath: Foundation.IndexPath)
- public var draftMessage: ApptentiveKit.MessageCenterViewModel.Message {
- get
- }
- public var draftMessageBody: Swift.String? {
- get
- set
- }
- public var draftAttachments: [ApptentiveKit.MessageCenterViewModel.Message.Attachment] {
- get
- }
- public func addImageAttachment(_ image: UIKit.UIImage, name: Swift.String?)
- public func addFileAttachment(at sourceURL: Foundation.URL)
- public func removeAttachment(at index: Swift.Int)
- public var remainingAttachmentSlots: Swift.Int {
- get
- }
- public var canAddAttachment: Swift.Bool {
- get
- }
- public var canSendMessage: Swift.Bool {
- get
- }
- public func sendMessage()
- @objc deinit
-}
-public enum MessageCenterViewModelError : Swift.Error {
- case attachmentCountGreaterThanMax
- case unableToGetImageData
- public static func == (a: ApptentiveKit.MessageCenterViewModelError, b: ApptentiveKit.MessageCenterViewModelError) -> Swift.Bool
- public func hash(into hasher: inout Swift.Hasher)
- public var hashValue: Swift.Int {
- get
- }
-}
-extension ApptentiveKit.Apptentive {
- public var engagementManifestURL: Foundation.URL? {
- get
- }
- public func loadEngagementManifest(at url: Foundation.URL?, completion: @escaping (Swift.Result) -> Swift.Void)
- public func getInteractionList(_ completion: @escaping ([ApptentiveKit.Apptentive.InteractionListItem]) -> Swift.Void)
- public func presentInteraction(with id: Swift.String, completion: @escaping (Swift.Result) -> Swift.Void)
- public func presentInteraction(at url: Foundation.URL, completion: @escaping (Swift.Result) -> Swift.Void)
- public struct InteractionListItem {
- public let id: Swift.String
- public let displayName: Swift.String
- public let typeName: Swift.String
- }
- public func getEventList(_ completion: @escaping ([Swift.String]) -> Swift.Void)
-}
-extension ApptentiveKit.SurveyViewModel {
- @_hasMissingDesignatedInitializers public class Question {
- final public let text: Swift.String
- final public let isRequired: Swift.Bool
- final public let requiredText: Swift.String?
- final public let errorMessage: Swift.String
- final public let instructions: Swift.String?
- public var isMarkedAsInvalid: Swift.Bool {
- get
- set
- }
- public var accessibilityLabel: Swift.String {
- get
- }
- @objc deinit
- }
-}
-public struct Event : Swift.ExpressibleByStringLiteral, Swift.CustomDebugStringConvertible {
- public var customData: ApptentiveKit.CustomData
- public init(name: Swift.String)
- public init(stringLiteral value: Swift.String)
- public var debugDescription: Swift.String {
- get
- }
- public typealias ExtendedGraphemeClusterLiteralType = Swift.String
- public typealias StringLiteralType = Swift.String
- public typealias UnicodeScalarLiteralType = Swift.String
-}
-open class InteractionPresenter {
- public init()
- open func presentMessageCenter(with viewModel: ApptentiveKit.MessageCenterViewModel) throws
- open func presentSurvey(with viewModel: ApptentiveKit.SurveyViewModel) throws
- open func presentEnjoymentDialog(with viewModel: ApptentiveKit.DialogViewModel) throws
- open func presentTextModal(with viewModel: ApptentiveKit.DialogViewModel) throws
- open func presentViewController(_ viewControllerToPresent: UIKit.UIViewController, completion: (() -> Swift.Void)? = {}) throws
- public var validatedPresentingViewController: UIKit.UIViewController? {
- get
- }
- open func dismissPresentedViewController(animated: Swift.Bool)
- @objc deinit
-}
-public enum InteractionPresenterError : Swift.Error {
- case notImplemented(Swift.String, Swift.String)
- case decodingFailed(Swift.String, Swift.String)
- case noPresentingViewController
-}
-extension Foundation.NSNotification.Name {
- public static let apptentiveEventEngaged: Foundation.Notification.Name
-}
-public protocol DialogViewModelDelegate : AnyObject {
- func dismiss()
-}
-@_hasMissingDesignatedInitializers public class DialogViewModel {
- final public let title: Swift.String?
- final public let message: Swift.String?
- final public let dialogType: ApptentiveKit.DialogViewModel.DialogType
- final public let actions: [ApptentiveKit.DialogViewModel.Action]
- weak public var delegate: ApptentiveKit.DialogViewModelDelegate?
- public func buttonSelected(at position: Swift.Int)
- public func launch()
- public func cancel()
- public enum DialogType {
- case enjoymentDialog
- case textModal
- public static func == (a: ApptentiveKit.DialogViewModel.DialogType, b: ApptentiveKit.DialogViewModel.DialogType) -> Swift.Bool
- public func hash(into hasher: inout Swift.Hasher)
- public var hashValue: Swift.Int {
- get
- }
- }
- @objc deinit
-}
-@objc @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @_Concurrency.MainActor(unsafe) public class DialogView : UIKit.UIView {
- @objc @_Concurrency.MainActor(unsafe) dynamic public var titleTextColor: UIKit.UIColor
- @objc @_Concurrency.MainActor(unsafe) dynamic public var messageTextColor: UIKit.UIColor
- @objc @_Concurrency.MainActor(unsafe) dynamic public var titleFont: UIKit.UIFont
- @objc @_Concurrency.MainActor(unsafe) dynamic public var messageFont: UIKit.UIFont
- @objc @_Concurrency.MainActor(unsafe) dynamic public var headerImage: UIKit.UIImage?
- @objc @_Concurrency.MainActor(unsafe) dynamic public var cornerRadius: CoreFoundation.CGFloat
- @objc @_Concurrency.MainActor(unsafe) dynamic public var buttonSpacing: CoreFoundation.CGFloat
- @objc @_Concurrency.MainActor(unsafe) dynamic public var buttonInset: UIKit.UIEdgeInsets
- @objc @_Concurrency.MainActor(unsafe) dynamic public var separatorsAreHidden: Swift.Bool
- @objc @_Concurrency.MainActor(unsafe) dynamic public var separatorColor: UIKit.UIColor
- @_Concurrency.MainActor(unsafe) @objc override dynamic public func didMoveToWindow()
- @_Concurrency.MainActor(unsafe) @objc override dynamic public func layoutSubviews()
- @objc deinit
-}
-extension ApptentiveKit.SurveyViewModel {
- @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers public class FreeformQuestion : ApptentiveKit.SurveyViewModel.Question {
- final public let placeholderText: Swift.String?
- final public let allowMultipleLines: Swift.Bool
- public var value: Swift.String? {
- get
- set
- }
- @objc deinit
- }
-}
-extension ApptentiveKit.Apptentive {
- @available(*, deprecated, message: "Use the 'register(with:completion:)' method on the 'shared' instance instead.")
- @objc(registerWithConfiguration:) dynamic public class func register(with configuration: ApptentiveKit.ApptentiveConfiguration)
- @available(swift, deprecated: 1.0, message: "Use the 'register(with:completion:) method that takes an 'AppCredentials' argument.")
- @objc(registerWithConfiguration:completion:) dynamic public func register(with configuration: ApptentiveKit.ApptentiveConfiguration, completion: ((Swift.Bool) -> Swift.Void)? = nil)
- @available(*, deprecated, message: "Use the 'shared' static property instead.")
- @objc dynamic public class func sharedConnection() -> ApptentiveKit.Apptentive
- @available(*, deprecated, message: "This property is ignored. SKStoreReviewController will be used for all ratings.")
- @objc dynamic public var appID: Swift.String? {
- @objc get
- @objc set
- }
- @available(*, deprecated, message: "This property is ignored. The info button no longer exists.")
- @objc dynamic public var showInfoButton: Swift.Bool {
- @objc get
- @objc set
- }
- @available(*, deprecated, message: "This feature is not implemented.")
- @objc dynamic public var surveyTermsAndConditions: ApptentiveKit.TermsAndConditions? {
- @objc get
- @objc set
- }
- @available(*, deprecated, message: "This property is not available for reading.")
- @objc dynamic public var apptentiveKey: Swift.String {
- @objc get
- }
- @available(*, deprecated, message: "This property is not available for reading.")
- @objc dynamic public var apptentiveSignature: Swift.String {
- @objc get
- }
- @objc(engage:fromViewController:) dynamic public func engage(_ event: Swift.String, fromViewController viewController: UIKit.UIViewController?)
- @objc(engage:fromViewController:completion:) dynamic public func engage(_ event: Swift.String, fromViewController viewController: UIKit.UIViewController?, completion: ((Swift.Bool) -> Swift.Void)? = nil)
- @available(swift, deprecated: 1.0, message: "Create an 'Event' object and subscript its 'customData' property.")
- @objc(engage:withCustomData:fromViewController:) dynamic public func engage(event: Swift.String, withCustomData customData: [Swift.AnyHashable : Any]?, from viewController: UIKit.UIViewController?)
- @available(swift, deprecated: 1.0, message: "Create an 'Event' object and subscript its 'customData' property.")
- @objc(engage:withCustomData:fromViewController:completion:) dynamic public func engage(event: Swift.String, withCustomData customData: [Swift.AnyHashable : Any]?, from viewController: UIKit.UIViewController?, completion: ((Swift.Bool) -> Swift.Void)? = nil)
- @available(*, deprecated, message: "Event extended data are no longer supported. Event will be engaged without extended data.")
- @objc(engage:withCustomData:withExtendedData:fromViewController:) dynamic public func engage(event: Swift.String, withCustomData customData: [Swift.AnyHashable : Any]?, withExtendedData extendedData: [[Swift.AnyHashable : Any]]?, from viewController: UIKit.UIViewController?)
- @available(*, deprecated, message: "Event extended data are no longer supported. Event will be engaged without extended data.")
- @objc(engage:withCustomData:withExtendedData:fromViewController:completion:) dynamic public func engage(event: Swift.String, withCustomData customData: [Swift.AnyHashable : Any]?, withExtendedData extendedData: [[Swift.AnyHashable : Any]]?, from viewController: UIKit.UIViewController?, completion: ((Swift.Bool) -> Swift.Void)? = nil)
- @available(swift, deprecated: 1.0, message: "Use the 'canShowInteraction(event:completion:)' method instead.")
- @objc dynamic public func queryCanShowInteraction(forEvent event: Swift.String, completion: @escaping (Swift.Bool) -> Swift.Void)
- @available(*, deprecated, message: "Extended event data are no longer supported.")
- @objc(extendedDataDate:) dynamic public class func extendedData(date: Foundation.Date) -> [Swift.AnyHashable : Any]
- @available(*, deprecated, message: "Extended event data are no longer supported.")
- @objc(extendedDataLocationForLatitude:longitude:) dynamic public class func extendedData(latitude: Swift.Double, longitude: Swift.Double) -> [Swift.AnyHashable : Any]
- @available(*, deprecated, message: "Extended event data are no longer supported.")
- @objc(extendedDataCommerceWithTransactionID:affiliation:revenue:shipping:tax:currency:commerceItems:) dynamic public class func extendedData(transactionID: Swift.String?, affiliation: Swift.String?, revenue: Foundation.NSNumber?, shipping: Foundation.NSNumber?, tax: Foundation.NSNumber?, currency: Swift.String?, commerceItems: [[Swift.AnyHashable : Any]]?) -> [Swift.AnyHashable : Any]
- @available(*, deprecated, message: "Extended event data are no longer supported.")
- @objc(extendedDataCommerceItemWithItemID:name:category:price:quantity:currency:) dynamic public class func extendedData(itemID: Swift.String?, name: Swift.String?, category: Swift.String?, price: Foundation.NSNumber?, quantity: Foundation.NSNumber?, currency: Swift.String?) -> [Swift.AnyHashable : Any]
- @available(*, deprecated, message: "This feature is not implemented and will always result in false.")
- @objc dynamic public func queryCanShowMessageCenter(completion: @escaping (Swift.Bool) -> Swift.Void)
- @objc(presentMessageCenterFromViewController:) dynamic public func presentMessageCenterCompat(from viewController: UIKit.UIViewController?)
- @available(swift, deprecated: 1.0, message: "Use the method whose completion handler takes a Result parameter.")
- @objc(presentMessageCenterFromViewController:completion:) dynamic public func presentMessageCenterCompat(from viewController: UIKit.UIViewController?, completion: ((Swift.Bool) -> Swift.Void)? = nil)
- @objc(presentMessageCenterFromViewController:withCustomData:) dynamic public func presentMessageCenterCompat(from viewController: UIKit.UIViewController?, withCustomData customData: [Swift.AnyHashable : Any]?)
- @available(swift, deprecated: 1.0, message: "Use the method whose completion handler takes a Result parameter.")
- @objc(presentMessageCenterFromViewController:withCustomData:completion:) dynamic public func presentMessageCenterCompat(from viewController: UIKit.UIViewController?, withCustomData customData: [Swift.AnyHashable : Any]?, completion: ((Swift.Bool) -> Swift.Void)? = nil)
- @available(*, deprecated, message: "This feature is not implemented and this method will always result in false.")
- @objc dynamic public func dismissMessageCenter(animated: Swift.Bool, completion: (() -> Swift.Void)? = nil)
- @available(*, deprecated, message: "This feature is not implemented and this property will return an empty view.")
- @objc dynamic public func unreadMessageCountAccessoryView(apptentiveHeart: Swift.Bool) -> UIKit.UIView
- @available(*, deprecated, message: "This method is no longer implemented and will trigger an assertion failure.")
- @objc dynamic public func openAppStore()
- @available(*, deprecated, message: "Use the 'setRemoteNotificationToken()' method instead.")
- @objc dynamic public func setPushProvider(_ pushProvider: ApptentiveKit.ApptentivePushProvider, deviceToken: Foundation.Data)
- @available(*, deprecated, message: "This method is deprecated in favor of didReceveUserNotificationResponse(_:from:withCompletionHandler:).")
- @objc dynamic public func didReceveUserNotificationResponse(_ response: UserNotifications.UNNotificationResponse, from _: UIKit.UIViewController?, withCompletionHandler completionHandler: @escaping () -> Swift.Void) -> Swift.Bool
- @available(*, deprecated, message: "Advertising identifier collection is not implemented.")
- @objc dynamic public var advertisingIdentifier: Foundation.UUID? {
- @objc get
- @objc set
- }
- @available(*, deprecated, message: "mParticleId has been renamed to mParticleID.")
- @objc dynamic public var mParticleId: Swift.String? {
- @objc get
- @objc set
- }
- @available(swift, deprecated: 1.0, message: "Subscript the 'personCustomData' property instead.")
- @objc dynamic public func removeCustomPersonData(withKey key: Swift.String)
- @available(swift, deprecated: 1.0, message: "Subscript the 'deviceCustomData' property instead.")
- @objc dynamic public func removeCustomDeviceData(withKey key: Swift.String)
- @available(swift, deprecated: 1.0, message: "Subscript the 'deviceCustomData' property instead.")
- @objc(addCustomDeviceDataString:withKey:) dynamic public func addCustomDeviceData(_ string: Swift.String, withKey key: Swift.String)
- @available(swift, deprecated: 1.0, message: "Subscript the 'deviceCustomData' property instead.")
- @objc(addCustomDeviceDataNumber:withKey:) dynamic public func addCustomDeviceData(_ number: Foundation.NSNumber, withKey key: Swift.String)
- @available(swift, deprecated: 1.0, message: "Subscript the 'deviceCustomData' property instead.")
- @objc(addCustomDeviceDataBool:withKey:) dynamic public func addCustomDeviceData(_ boolValue: Swift.Bool, withKey key: Swift.String)
- @available(swift, deprecated: 1.0, message: "Subscript the 'personCustomData' property instead.")
- @objc(addCustomPersonDataString:withKey:) dynamic public func addCustomPersonData(_ string: Swift.String, withKey key: Swift.String)
- @available(swift, deprecated: 1.0, message: "Subscript the 'personCustomData' property instead.")
- @objc(addCustomPersonDataNumber:withKey:) dynamic public func addCustomPersonData(_ number: Foundation.NSNumber, withKey key: Swift.String)
- @available(swift, deprecated: 1.0, message: "Subscript the 'personCustomData' property instead.")
- @objc(addCustomPersonDataBool:withKey:) dynamic public func addCustomPersonData(_ boolValue: Swift.Bool, withKey key: Swift.String)
- @available(*, deprecated, message: "Set style overrides defined in UIKit+Apptentive.swift extensions.")
- @objc dynamic public var styleSheet: Any? {
- @objc get
- @objc set
- }
- @available(*, deprecated, message: "This method is not currently implemented and will trigger an assertion failure.")
- @objc dynamic public func checkSDKConfiguration()
- @available(*, deprecated, message: "This method is not currently implemented and will trigger an assertion failure.")
- @objc dynamic public func logIn(withToken token: Swift.String, completion: @escaping (Swift.Bool, Swift.Error) -> Swift.Void)
- @available(*, deprecated, message: "This method is not currently implemented and will trigger an assertion failure.")
- @objc dynamic public func logOut()
- @available(*, deprecated, message: "Multiple users on the same device is not currently supported.")
- @objc dynamic public var authenticationFailureCallback: ApptentiveKit.ApptentiveAuthenticationFailureCallback? {
- @objc get
- @objc set
- }
- @available(*, deprecated, message: "This feature is no longer supported.")
- @objc dynamic public var preInteractionCallback: ApptentiveKit.ApptentiveInteractionCallback? {
- @objc get
- @objc set
- }
- @available(*, deprecated, message: "This method is not currently implemented and will trigger an assertion failure.")
- @objc dynamic public func updateToken(_ token: Swift.String, completion: ((Swift.Bool) -> Swift.Void)? = nil)
- @available(swift, deprecated: 1.0, message: "Set the 'logLevel' property on 'ApptentiveLogger' or one of it's static log properties.")
- @objc dynamic public var logLevel: ApptentiveKit.ApptentiveLogLevel {
- @objc get
- @objc set
- }
-}
-extension UIKit.UIButton {
- @available(swift, deprecated: 1.0, message: "Set the 'apptentiveStyle' property to 'ApptentiveButtonStyle.pill'.")
- @objc @_Concurrency.MainActor(unsafe) public static let apptentivePillRadius: CoreFoundation.CGFloat
- @available(swift, deprecated: 1.0, message: "Use the 'apptentiveStyle' property.")
- @objc @_Concurrency.MainActor(unsafe) public static var apptentiveCornerRadius: CoreFoundation.CGFloat {
- @objc get
- @objc set
- }
-}
-extension UIKit.UITableView {
- @available(swift, deprecated: 1.0, message: "Use the 'apptentive' property on 'UITableView.Style'.")
- @objc @_Concurrency.MainActor(unsafe) public static var apptentiveStyle: Swift.Int {
- @objc get
- @objc set
- }
-}
-extension UIKit.UIViewController {
- @available(swift, deprecated: 1.0, message: "Use the 'apptentive' property on 'UIModalPresentationStyle'.")
- @objc @_Concurrency.MainActor(unsafe) dynamic public var apptentiveModalPresentationStyle: UIKit.UIModalPresentationStyle {
- @objc get
- @objc set
- }
-}
-@available(*, deprecated, message: "Multiple users on the same device is not currently supported.")
-public typealias ApptentiveAuthenticationFailureCallback = (ApptentiveKit.ApptentiveAuthenticationFailureReason, Swift.String) -> Swift.Void
-@available(*, deprecated, message: "This feature is no longer supported.")
-public typealias ApptentiveInteractionCallback = (Swift.String, [Swift.AnyHashable : Any]?) -> Swift.Bool
-@available(*, deprecated, message: "Multiple users on the same device is not currently supported.")
-@objc public enum ApptentiveAuthenticationFailureReason : Swift.Int {
- case unknown = 0
- case invalidAlgorithm = 1
- case malformedToken = 2
- case invalidToken = 3
- case missingSubClaim = 4
- case mismatchedSubClaim = 5
- case invalidSubClaim = 6
- case expiredToken = 7
- case revokedToken = 8
- case missingAppKey = 9
- case missingAppSignature = 10
- case invalidKeySignaturePair = 11
- public init?(rawValue: Swift.Int)
- public typealias RawValue = Swift.Int
- public var rawValue: Swift.Int {
- get
- }
-}
-@objc @available(swift, deprecated: 1.0, message: "Set the properties from this class on the 'Apptentive' object directly.")
-public class ApptentiveConfiguration : ObjectiveC.NSObject {
- @objc final public let apptentiveKey: Swift.String
- @objc final public let apptentiveSignature: Swift.String
- @available(swift, deprecated: 1.0, message: "Set the 'logLevel' property on 'ApptentiveLogger' or one of its static log properties.")
- @objc public var logLevel: ApptentiveKit.ApptentiveLogLevel
- @available(swift, deprecated: 1.0, message: "Set the 'shouldHideSensitiveLogs' property on 'ApptentiveLogger' or one of its static log properties.")
- @objc public var shouldSanitizeLogMessages: Swift.Bool
- @available(*, deprecated, message: "This property is ignored. Use the designated initializer for 'Apptentive' to set this.")
- @objc public var baseURL: Foundation.URL?
- @available(swift, deprecated: 1.0, message: "Set the 'distributionName' property on 'Apptentive' directly before calling 'register(with:completion)'.")
- @objc public var distributionName: Swift.String?
- @available(swift, deprecated: 1.0, message: "Set the 'distributionVersion' property on 'Apptentive' directly before calling 'register(with:completion)'.")
- @objc public var distributionVersion: Swift.String?
- @available(*, deprecated, message: "This property is ignored. An 'SKStoreReviewController' will be used for all ratings.")
- @objc public var appID: Swift.String?
- @available(*, deprecated, message: "This property is ignored. The info button no longer exists.")
- @objc public var showInfoButton: Swift.Bool
- @available(*, deprecated, message: "This property is ignored. Configure survey terms and conditions in the Apptentive Dashboard.")
- @objc public var surveyTermsAndConditions: ApptentiveKit.TermsAndConditions?
- @objc(initWithApptentiveKey:apptentiveSignature:) required public init?(apptentiveKey: Swift.String, apptentiveSignature: Swift.String)
- @objc public static func configuration(apptentiveKey key: Swift.String, apptentiveSignature signature: Swift.String) -> ApptentiveKit.ApptentiveConfiguration
- @objc deinit
-}
-@available(*, deprecated, message: "Selecting a push notification provider is no longer supported.")
-@objc public enum ApptentivePushProvider : Swift.Int {
- case apptentive = 0
- case urbanAirship = 1
- case amazonSNS = 2
- case parse = 3
- public init?(rawValue: Swift.Int)
- public typealias RawValue = Swift.Int
- public var rawValue: Swift.Int {
- get
- }
-}
-@available(*, deprecated, message: "Use the 'LogLevel' enumeration to set the 'logLevel' property on 'ApptentiveLogger' or one of it's static log properties.")
-@objc public enum ApptentiveLogLevel : Swift.UInt {
- case undefined = 0
- case crit = 1
- case error = 2
- case warn = 3
- case info = 4
- case debug = 5
- case verbose = 6
- public init?(rawValue: Swift.UInt)
- public typealias RawValue = Swift.UInt
- public var rawValue: Swift.UInt {
- get
- }
-}
-@objc @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.")
-public class TermsAndConditions : ObjectiveC.NSObject {
- @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.")
- public init(bodyText: Swift.String?, linkText: Swift.String?, linkURL: Foundation.URL?)
- final public let bodyText: Swift.String?
- final public let linkText: Swift.String?
- final public let linkURL: Foundation.URL?
- @objc deinit
-}
-@available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.")
-public protocol ApptentiveStyle {
- @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.")
- func font(for textStyle: ApptentiveKit.ApptentiveStyleIdentifier) -> UIKit.UIFont
- @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.")
- func color(for style: ApptentiveKit.ApptentiveStyleIdentifier) -> UIKit.UIColor
-}
-@available(*, deprecated, message: "This enumeration is provided for compatibility but this feature is not implemented.")
-public enum ApptentiveStyleIdentifier {
- case body
- case headerTitle
- case headerMessage
- case messageDate
- case messageSender
- case messageStatus
- case messageCenterStatus
- case surveyInstructions
- case doneButton
- case button
- case submitButton
- case textInput
- case headerBackground
- case footerBackground
- case failure
- case separator
- case background
- case collectionBackground
- case textInputBackground
- case textInputPlaceholder
- case messageBackground
- case replyBackground
- case contextBackground
- public static func == (a: ApptentiveKit.ApptentiveStyleIdentifier, b: ApptentiveKit.ApptentiveStyleIdentifier) -> Swift.Bool
- public func hash(into hasher: inout Swift.Hasher)
- public var hashValue: Swift.Int {
- get
- }
-}
-@_hasMissingDesignatedInitializers @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.")
-public class ApptentiveStyleSheet : ApptentiveKit.ApptentiveStyle {
- @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.")
- public func font(for textStyle: ApptentiveKit.ApptentiveStyleIdentifier) -> UIKit.UIFont
- @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.")
- public func color(for style: ApptentiveKit.ApptentiveStyleIdentifier) -> UIKit.UIColor
- @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.")
- convenience public init?(contentsOf stylePropertyListURL: Foundation.URL)
- @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.")
- public var fontFamily: Swift.String
- @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.")
- public var lightFaceAttribute: Swift.String?
- @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.")
- public var regularFaceAttribute: Swift.String?
- @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.")
- public var mediumFaceAttribute: Swift.String?
- @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.")
- public var boldFaceAttribute: Swift.String?
- @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.")
- public var primaryColor: UIKit.UIColor
- @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.")
- public var secondaryColor: UIKit.UIColor
- @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.")
- public var failureColor: UIKit.UIColor
- @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.")
- public var backgroundColor: UIKit.UIColor
- @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.")
- public var separatorColor: UIKit.UIColor
- @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.")
- public var collectionBackgroundColor: UIKit.UIColor
- @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.")
- public var placeholderColor: UIKit.UIColor
- @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.")
- public var sizeAdjustment: CoreFoundation.CGFloat
- @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.")
- public func setFontDescriptor(_ fontDescriptor: UIKit.UIFontDescriptor, forStyle style: Swift.String)
- @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.")
- public func setColor(_ color: UIKit.UIColor, forStyle style: Swift.String)
- @objc deinit
-}
-@objc @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @_Concurrency.MainActor(unsafe) public class DialogButton : UIKit.UIButton {
- @objc @_Concurrency.MainActor(unsafe) dynamic public var titleFont: UIKit.UIFont
- @objc @_Concurrency.MainActor(unsafe) dynamic public var cornerRadius: CoreFoundation.CGFloat
- @objc @_Concurrency.MainActor(unsafe) dynamic public var borderWidth: CoreFoundation.CGFloat
- @objc @_Concurrency.MainActor(unsafe) dynamic public var borderColor: UIKit.UIColor
- @_Concurrency.MainActor(unsafe) @objc override dynamic public var intrinsicContentSize: CoreFoundation.CGSize {
- @objc get
- }
- @_Concurrency.MainActor(unsafe) @objc override dynamic public func layoutSubviews()
- @_Concurrency.MainActor(unsafe) @objc override dynamic public func tintColorDidChange()
- @_Concurrency.MainActor(unsafe) @objc override dynamic public func didMoveToWindow()
- @objc deinit
-}
-@objc @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @_Concurrency.MainActor(unsafe) public class DismissButton : ApptentiveKit.DialogButton {
- @objc deinit
-}
-@objc @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @_Concurrency.MainActor(unsafe) public class InteractionButton : ApptentiveKit.DialogButton {
- @objc deinit
-}
-@objc @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @_Concurrency.MainActor(unsafe) public class YesButton : ApptentiveKit.DialogButton {
- @objc deinit
-}
-@objc @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @_Concurrency.MainActor(unsafe) public class NoButton : ApptentiveKit.DialogButton {
- @objc deinit
-}
-public struct Sysctl {
- public enum Error : Swift.Error {
- case unknown
- case malformedUTF8
- case invalidSize
- case posixError(Darwin.POSIXErrorCode)
- }
- public static func data(for keys: [Swift.Int32]) throws -> [Swift.Int8]
- public static func keys(for name: Swift.String) throws -> [Swift.Int32]
- public static func value(ofType: T.Type, forKeys keys: [Swift.Int32]) throws -> T
- public static func value(ofType type: T.Type, forKeys keys: Swift.Int32...) throws -> T
- public static func value(ofType type: T.Type, forName name: Swift.String) throws -> T
- public static func string(for keys: [Swift.Int32]) throws -> Swift.String
- public static func string(for keys: Swift.Int32...) throws -> Swift.String
- public static func string(for name: Swift.String) throws -> Swift.String
- public static var hostName: Swift.String {
- get
- }
- public static var machine: Swift.String {
- get
- }
- public static var model: Swift.String {
- get
- }
- public static var activeCPUs: Swift.Int32 {
- get
- }
- public static var osRelease: Swift.String {
- get
- }
- public static var osType: Swift.String {
- get
- }
- public static var osVersion: Swift.String {
- get
- }
- public static var version: Swift.String {
- get
- }
-}
-@objc @_inheritsConvenienceInitializers @_Concurrency.MainActor(unsafe) public class ApptentiveNavigationController : UIKit.UINavigationController {
- @_Concurrency.MainActor(unsafe) @objc override dynamic public var preferredStatusBarStyle: UIKit.UIStatusBarStyle {
- @objc get
- }
- @objc @_Concurrency.MainActor(unsafe) public static var prefersLargeHeader: Swift.Bool
- @available(iOS 5.0, *)
- @_Concurrency.MainActor(unsafe) @objc override dynamic public init(navigationBarClass: Swift.AnyClass?, toolbarClass: Swift.AnyClass?)
- @_Concurrency.MainActor(unsafe) @objc override dynamic public init(rootViewController: UIKit.UIViewController)
- @_Concurrency.MainActor(unsafe) @objc override dynamic public init(nibName nibNameOrNil: Swift.String?, bundle nibBundleOrNil: Foundation.Bundle?)
- @_Concurrency.MainActor(unsafe) @objc required dynamic public init?(coder aDecoder: Foundation.NSCoder)
- @objc deinit
-}
-extension UIKit.UITableView {
- @_Concurrency.MainActor(unsafe) public static var apptentiveQuestionSeparatorHeight: CoreFoundation.CGFloat
-}
-extension UIKit.UITableView.Style {
- public static var apptentive: UIKit.UITableView.Style
-}
-extension UIKit.UIModalPresentationStyle {
- public static var apptentive: UIKit.UIModalPresentationStyle
-}
-extension UIKit.UIBarButtonItem {
- @objc @_Concurrency.MainActor(unsafe) public static var apptentiveClose: UIKit.UIBarButtonItem
- @objc @_Concurrency.MainActor(unsafe) public static var apptentiveProfileEdit: UIKit.UIBarButtonItem
-}
-extension UIKit.UIButton {
- @_Concurrency.MainActor(unsafe) public static var apptentiveClose: UIKit.UIButton?
- public enum ApptentiveButtonStyle {
- case pill
- case radius(CoreFoundation.CGFloat)
- }
- @_Concurrency.MainActor(unsafe) public static var apptentiveStyle: UIKit.UIButton.ApptentiveButtonStyle
-}
-extension UIKit.UIImage {
- @objc public static var apptentiveMessageAttachmentButton: UIKit.UIImage?
- @objc public static var apptentiveMessageSendButton: UIKit.UIImage?
- @objc public static var apptentiveSentMessageBubble: UIKit.UIImage?
- @objc public static var apptentiveReceivedMessageBubble: UIKit.UIImage?
- @objc public static var apptentiveAttachmentPlaceholder: UIKit.UIImage?
- @objc public static var apptentiveAttachmentRemoveButton: UIKit.UIImage?
- @objc public static var apptentiveHeaderLogo: UIKit.UIImage?
- @objc public static var apptentiveRadioButton: UIKit.UIImage?
- @objc public static var apptentiveCheckbox: UIKit.UIImage?
- @objc public static var apptentiveRadioButtonSelected: UIKit.UIImage?
- @objc public static var apptentiveCheckboxSelected: UIKit.UIImage?
-}
-extension UIKit.UIColor {
- @objc public static var apptentiveMessageCenterTextInputBackground: UIKit.UIColor
- @objc public static var apptentiveMessageCenterTextInputPlaceholder: UIKit.UIColor
- @available(*, deprecated, message: "This property has been renamed to 'apptentiveMessageTextInputPlaceholder'.")
- @objc public static var apptentiveMessageTextViewPlaceholder: UIKit.UIColor {
- @objc get
- @objc set
- }
- @objc public static var apptentiveMessageCenterTextInput: UIKit.UIColor
- @objc public static var apptentivetextInputTint: UIKit.UIColor
- @objc public static var apptentiveMessageCenterTextInputBorder: UIKit.UIColor
- @available(*, deprecated, message: "This property has been renamed to 'apptentiveMessageCenterTextInputBorder'.")
- @objc public static var apptentiveMessageCenterTextViewBorder: UIKit.UIColor {
- @objc get
- @objc set
- }
- @objc public static var apptentiveMessageCenterAttachmentButton: UIKit.UIColor
- @objc public static var apptentiveMessageTextInputPlaceholder: UIKit.UIColor
- @objc public static var apptentiveMessageCenterStatus: UIKit.UIColor
- @objc public static var apptentiveMessageCenterGreetingBody: UIKit.UIColor
- @objc public static var apptentiveMessageCenterGreetingTitle: UIKit.UIColor
- @objc public static var apptentiveMessageBubbleInbound: UIKit.UIColor
- @objc public static var apptentiveMessageBubbleOutbound: UIKit.UIColor
- @objc public static var apptentiveMessageLabelInbound: UIKit.UIColor
- @objc public static var apptentiveMessageLabelOutbound: UIKit.UIColor
- @objc public static var apptentiveQuestionLabel: UIKit.UIColor
- @objc public static var apptentiveInstructionsLabel: UIKit.UIColor
- @objc public static var apptentiveChoiceLabel: UIKit.UIColor
- @objc public static var apptentiveError: UIKit.UIColor
- @objc public static var apptentiveSecondaryLabel: UIKit.UIColor
- @objc public static var apptentiveRangeControlBorder: UIKit.UIColor
- @objc public static var apptentiveSurveyIntroduction: UIKit.UIColor
- @objc public static var apptentiveTextInputBorder: UIKit.UIColor
- @objc public static var apptentiveTextInputBackground: UIKit.UIColor
- @objc public static var apptentiveTextInput: UIKit.UIColor
- @objc public static var apptentiveTextInputPlaceholder: UIKit.UIColor
- @objc public static var apptentiveMinMaxLabel: UIKit.UIColor
- @objc public static var apptentiveGroupedBackground: UIKit.UIColor
- @objc public static var apptentiveSecondaryGroupedBackground: UIKit.UIColor
- @objc public static var apptentiveSeparator: UIKit.UIColor
- @objc public static var apptentiveImageSelected: UIKit.UIColor
- @objc public static var apptentiveImageNotSelected: UIKit.UIColor
- @objc public static var apptentiveSubmitButton: UIKit.UIColor
- @objc public static var apptentiveBranchedSurveyFooter: UIKit.UIColor
- @available(*, deprecated, message: "This property has been renamed to 'apptentiveSubmitStatusLabel'.")
- public static var apptentiveSubmitLabel: UIKit.UIColor
- @objc public static var apptentiveSubmitStatusLabel: UIKit.UIColor
- @objc public static var apptentiveTermsOfServiceLabel: UIKit.UIColor
- @objc public static var apptentiveSubmitButtonTitle: UIKit.UIColor
- @objc public static var apptentiveSubmitButtonBorder: UIKit.UIColor
- @objc public static var apptentiveQuestionSeparator: UIKit.UIColor
- public static var apptentiveUnselectedSurveyIndicatorSegment: UIKit.UIColor
- public static var apptentiveSelectedSurveyIndicatorSegment: UIKit.UIColor
- @objc public static var apptentiveMessageCenterBackground: UIKit.UIColor
- @objc public static var apptentiveMessageCenterAttachmentDeleteButton: UIKit.UIColor
- @objc public static var apptentiveMessageCenterComposeBoxBackground: UIKit.UIColor
- @objc public static var apptentiveMessageCenterComposeBoxSeparator: UIKit.UIColor
- @objc public static var apptentiveTextInputBorderSelected: UIKit.UIColor
- @objc public static var apptentiveDisclaimerLabel: UIKit.UIColor
-}
-extension UIKit.UIFont {
- @objc public static var apptentiveMessageCenterTextInputPlaceholder: UIKit.UIFont
- @objc public static var apptentiveMessageCenterTextInput: UIKit.UIFont
- @objc public static var apptentiveTextInputPlaceholder: UIKit.UIFont
- @objc public static var apptentiveMessageCenterStatus: UIKit.UIFont
- @objc public static var apptentiveMessageCenterGreetingTitle: UIKit.UIFont
- @objc public static var apptentiveMessageCenterGreetingBody: UIKit.UIFont
- @objc public static var apptentiveMessageCenterAttachmentLabel: UIKit.UIFont
- @objc public static var apptentiveQuestionLabel: UIKit.UIFont
- @objc public static var apptentiveTermsOfServiceLabel: UIKit.UIFont
- @objc public static var apptentiveChoiceLabel: UIKit.UIFont
- @objc public static var apptentiveMessageLabel: UIKit.UIFont
- @objc public static var apptentiveMinMaxLabel: UIKit.UIFont
- @objc public static var apptentiveSenderLabel: UIKit.UIFont
- @objc public static var apptentiveMessageDateLabel: UIKit.UIFont
- @objc public static var apptentiveInstructionsLabel: UIKit.UIFont
- @objc public static var apptentiveSurveyIntroductionLabel: UIKit.UIFont
- @available(*, deprecated, message: "This property has been renamed to 'apptentiveSubmitStatusLabel'.")
- public static var apptentiveSubmitLabel: UIKit.UIFont
- @objc public static var apptentiveSubmitStatusLabel: UIKit.UIFont
- @objc public static var apptentiveDisclaimerLabel: UIKit.UIFont
- @objc public static var apptentiveSubmitButtonTitle: UIKit.UIFont
- @objc public static var apptentiveTextInput: UIKit.UIFont
-}
-extension UIKit.UIToolbar {
- @objc public enum ToolbarMode : Swift.Int {
- case alwaysShown
- case hiddenWhenEmpty
- public init?(rawValue: Swift.Int)
- public typealias RawValue = Swift.Int
- public var rawValue: Swift.Int {
- get
- }
- }
- @objc @_Concurrency.MainActor(unsafe) public static var apptentiveMode: UIKit.UIToolbar.ToolbarMode
-}
-extension CoreFoundation.CGFloat {
- public static var apptentiveButtonBorderWidth: CoreFoundation.CGFloat
-}
-extension ApptentiveKit.DialogViewModel.Action.ActionType : Swift.Equatable {}
-extension ApptentiveKit.DialogViewModel.Action.ActionType : Swift.Hashable {}
-extension ApptentiveKit.DialogViewModel.Action.ActionType : Swift.RawRepresentable {}
-extension ApptentiveKit.MessageCenterViewModel.Message.SentStatus : Swift.Hashable {}
-extension ApptentiveKit.SurveyViewModel.ChoiceQuestion.SelectionStyle : Swift.Equatable {}
-extension ApptentiveKit.SurveyViewModel.ChoiceQuestion.SelectionStyle : Swift.Hashable {}
-extension ApptentiveKit.LogLevel : Swift.Hashable {}
-extension ApptentiveKit.LogLevel : Swift.RawRepresentable {}
-extension ApptentiveKit.Apptentive.UITheme : Swift.Equatable {}
-extension ApptentiveKit.Apptentive.UITheme : Swift.Hashable {}
-extension ApptentiveKit.SurveyViewModel.DisplayMode : Swift.Equatable {}
-extension ApptentiveKit.SurveyViewModel.DisplayMode : Swift.Hashable {}
-extension ApptentiveKit.MessageCenterViewModel.ProfileMode : Swift.Equatable {}
-extension ApptentiveKit.MessageCenterViewModel.ProfileMode : Swift.Hashable {}
-extension ApptentiveKit.MessageCenterViewModelError : Swift.Equatable {}
-extension ApptentiveKit.MessageCenterViewModelError : Swift.Hashable {}
-extension ApptentiveKit.DialogViewModel.DialogType : Swift.Equatable {}
-extension ApptentiveKit.DialogViewModel.DialogType : Swift.Hashable {}
-@available(*, deprecated, message: "Multiple users on the same device is not currently supported.")
-extension ApptentiveKit.ApptentiveAuthenticationFailureReason : Swift.Equatable {}
-@available(*, deprecated, message: "Multiple users on the same device is not currently supported.")
-extension ApptentiveKit.ApptentiveAuthenticationFailureReason : Swift.Hashable {}
-@available(*, deprecated, message: "Multiple users on the same device is not currently supported.")
-extension ApptentiveKit.ApptentiveAuthenticationFailureReason : Swift.RawRepresentable {}
-@available(*, deprecated, message: "Selecting a push notification provider is no longer supported.")
-extension ApptentiveKit.ApptentivePushProvider : Swift.Equatable {}
-@available(*, deprecated, message: "Selecting a push notification provider is no longer supported.")
-extension ApptentiveKit.ApptentivePushProvider : Swift.Hashable {}
-@available(*, deprecated, message: "Selecting a push notification provider is no longer supported.")
-extension ApptentiveKit.ApptentivePushProvider : Swift.RawRepresentable {}
-@available(*, deprecated, message: "Use the 'LogLevel' enumeration to set the 'logLevel' property on 'ApptentiveLogger' or one of it's static log properties.")
-extension ApptentiveKit.ApptentiveLogLevel : Swift.Equatable {}
-@available(*, deprecated, message: "Use the 'LogLevel' enumeration to set the 'logLevel' property on 'ApptentiveLogger' or one of it's static log properties.")
-extension ApptentiveKit.ApptentiveLogLevel : Swift.Hashable {}
-@available(*, deprecated, message: "Use the 'LogLevel' enumeration to set the 'logLevel' property on 'ApptentiveLogger' or one of it's static log properties.")
-extension ApptentiveKit.ApptentiveLogLevel : Swift.RawRepresentable {}
-@available(*, deprecated, message: "This enumeration is provided for compatibility but this feature is not implemented.")
-extension ApptentiveKit.ApptentiveStyleIdentifier : Swift.Equatable {}
-@available(*, deprecated, message: "This enumeration is provided for compatibility but this feature is not implemented.")
-extension ApptentiveKit.ApptentiveStyleIdentifier : Swift.Hashable {}
-extension UIKit.UIToolbar.ToolbarMode : Swift.Equatable {}
-extension UIKit.UIToolbar.ToolbarMode : Swift.Hashable {}
-extension UIKit.UIToolbar.ToolbarMode : Swift.RawRepresentable {}
diff --git a/src/ios/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/Modules/module.modulemap b/src/ios/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/Modules/module.modulemap
deleted file mode 100644
index e366759..0000000
--- a/src/ios/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/Modules/module.modulemap
+++ /dev/null
@@ -1,4 +0,0 @@
-framework module ApptentiveKit {
- header "ApptentiveKit-Swift.h"
- requires objc
-}
diff --git a/src/ios/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/ar.lproj/Localizable.strings b/src/ios/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/ar.lproj/Localizable.strings
deleted file mode 100644
index 48448db..0000000
Binary files a/src/ios/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/ar.lproj/Localizable.strings and /dev/null differ
diff --git a/src/ios/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/da.lproj/Localizable.strings b/src/ios/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/da.lproj/Localizable.strings
deleted file mode 100644
index 4fd6d6e..0000000
Binary files a/src/ios/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/da.lproj/Localizable.strings and /dev/null differ
diff --git a/src/ios/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/de.lproj/Localizable.strings b/src/ios/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/de.lproj/Localizable.strings
deleted file mode 100644
index 3c40cf6..0000000
Binary files a/src/ios/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/de.lproj/Localizable.strings and /dev/null differ
diff --git a/src/ios/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/el.lproj/Localizable.strings b/src/ios/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/el.lproj/Localizable.strings
deleted file mode 100644
index dd6463f..0000000
Binary files a/src/ios/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/el.lproj/Localizable.strings and /dev/null differ
diff --git a/src/ios/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/en.lproj/Localizable.strings b/src/ios/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/en.lproj/Localizable.strings
deleted file mode 100644
index 7b07a8d..0000000
Binary files a/src/ios/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/en.lproj/Localizable.strings and /dev/null differ
diff --git a/src/ios/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/es.lproj/Localizable.strings b/src/ios/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/es.lproj/Localizable.strings
deleted file mode 100644
index 088c5b2..0000000
Binary files a/src/ios/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/es.lproj/Localizable.strings and /dev/null differ
diff --git a/src/ios/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/fr-CA.lproj/Localizable.strings b/src/ios/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/fr-CA.lproj/Localizable.strings
deleted file mode 100644
index d04e0b0..0000000
Binary files a/src/ios/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/fr-CA.lproj/Localizable.strings and /dev/null differ
diff --git a/src/ios/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/fr.lproj/Localizable.strings b/src/ios/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/fr.lproj/Localizable.strings
deleted file mode 100644
index a61256b..0000000
Binary files a/src/ios/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/fr.lproj/Localizable.strings and /dev/null differ
diff --git a/src/ios/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/id.lproj/Localizable.strings b/src/ios/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/id.lproj/Localizable.strings
deleted file mode 100644
index a47ff69..0000000
Binary files a/src/ios/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/id.lproj/Localizable.strings and /dev/null differ
diff --git a/src/ios/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/it.lproj/Localizable.strings b/src/ios/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/it.lproj/Localizable.strings
deleted file mode 100644
index 93038f3..0000000
Binary files a/src/ios/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/it.lproj/Localizable.strings and /dev/null differ
diff --git a/src/ios/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/ja.lproj/Localizable.strings b/src/ios/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/ja.lproj/Localizable.strings
deleted file mode 100644
index d0b5168..0000000
Binary files a/src/ios/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/ja.lproj/Localizable.strings and /dev/null differ
diff --git a/src/ios/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/ko.lproj/Localizable.strings b/src/ios/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/ko.lproj/Localizable.strings
deleted file mode 100644
index f52890c..0000000
Binary files a/src/ios/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/ko.lproj/Localizable.strings and /dev/null differ
diff --git a/src/ios/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/ms.lproj/Localizable.strings b/src/ios/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/ms.lproj/Localizable.strings
deleted file mode 100644
index 5fba367..0000000
Binary files a/src/ios/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/ms.lproj/Localizable.strings and /dev/null differ
diff --git a/src/ios/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/nl.lproj/Localizable.strings b/src/ios/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/nl.lproj/Localizable.strings
deleted file mode 100644
index 26064cd..0000000
Binary files a/src/ios/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/nl.lproj/Localizable.strings and /dev/null differ
diff --git a/src/ios/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/pl.lproj/Localizable.strings b/src/ios/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/pl.lproj/Localizable.strings
deleted file mode 100644
index 578119f..0000000
Binary files a/src/ios/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/pl.lproj/Localizable.strings and /dev/null differ
diff --git a/src/ios/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/pt-BR.lproj/Localizable.strings b/src/ios/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/pt-BR.lproj/Localizable.strings
deleted file mode 100644
index 6051c57..0000000
Binary files a/src/ios/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/pt-BR.lproj/Localizable.strings and /dev/null differ
diff --git a/src/ios/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/ru.lproj/Localizable.strings b/src/ios/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/ru.lproj/Localizable.strings
deleted file mode 100644
index f2b22b4..0000000
Binary files a/src/ios/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/ru.lproj/Localizable.strings and /dev/null differ
diff --git a/src/ios/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/sv.lproj/Localizable.strings b/src/ios/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/sv.lproj/Localizable.strings
deleted file mode 100644
index d7b6356..0000000
Binary files a/src/ios/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/sv.lproj/Localizable.strings and /dev/null differ
diff --git a/src/ios/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/th.lproj/Localizable.strings b/src/ios/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/th.lproj/Localizable.strings
deleted file mode 100644
index a8f5429..0000000
Binary files a/src/ios/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/th.lproj/Localizable.strings and /dev/null differ
diff --git a/src/ios/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/tr.lproj/Localizable.strings b/src/ios/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/tr.lproj/Localizable.strings
deleted file mode 100644
index d931b8b..0000000
Binary files a/src/ios/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/tr.lproj/Localizable.strings and /dev/null differ
diff --git a/src/ios/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/zh-Hans.lproj/Localizable.strings b/src/ios/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/zh-Hans.lproj/Localizable.strings
deleted file mode 100644
index d900f64..0000000
Binary files a/src/ios/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/zh-Hans.lproj/Localizable.strings and /dev/null differ
diff --git a/src/ios/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/zh-Hant.lproj/Localizable.strings b/src/ios/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/zh-Hant.lproj/Localizable.strings
deleted file mode 100644
index 39b5de2..0000000
Binary files a/src/ios/ApptentiveKit.xcframework/ios-arm64/ApptentiveKit.framework/zh-Hant.lproj/Localizable.strings and /dev/null differ
diff --git a/src/ios/ApptentiveKit.xcframework/ios-arm64_x86_64-simulator/ApptentiveKit.framework/ApptentiveKit b/src/ios/ApptentiveKit.xcframework/ios-arm64_x86_64-simulator/ApptentiveKit.framework/ApptentiveKit
deleted file mode 100755
index d25fb4f..0000000
Binary files a/src/ios/ApptentiveKit.xcframework/ios-arm64_x86_64-simulator/ApptentiveKit.framework/ApptentiveKit and /dev/null differ
diff --git a/src/ios/ApptentiveKit.xcframework/ios-arm64_x86_64-simulator/ApptentiveKit.framework/Assets.car b/src/ios/ApptentiveKit.xcframework/ios-arm64_x86_64-simulator/ApptentiveKit.framework/Assets.car
deleted file mode 100644
index 315540e..0000000
Binary files a/src/ios/ApptentiveKit.xcframework/ios-arm64_x86_64-simulator/ApptentiveKit.framework/Assets.car and /dev/null differ
diff --git a/src/ios/ApptentiveKit.xcframework/ios-arm64_x86_64-simulator/ApptentiveKit.framework/Distribution.plist b/src/ios/ApptentiveKit.xcframework/ios-arm64_x86_64-simulator/ApptentiveKit.framework/Distribution.plist
deleted file mode 100644
index d7fab66..0000000
Binary files a/src/ios/ApptentiveKit.xcframework/ios-arm64_x86_64-simulator/ApptentiveKit.framework/Distribution.plist and /dev/null differ
diff --git a/src/ios/ApptentiveKit.xcframework/ios-arm64_x86_64-simulator/ApptentiveKit.framework/Headers/ApptentiveKit-Swift.h b/src/ios/ApptentiveKit.xcframework/ios-arm64_x86_64-simulator/ApptentiveKit.framework/Headers/ApptentiveKit-Swift.h
deleted file mode 100644
index da7d6f2..0000000
--- a/src/ios/ApptentiveKit.xcframework/ios-arm64_x86_64-simulator/ApptentiveKit.framework/Headers/ApptentiveKit-Swift.h
+++ /dev/null
@@ -1,2054 +0,0 @@
-#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 APPTENTIVEKIT_SWIFT_H
-#define APPTENTIVEKIT_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 CoreFoundation;
-@import Foundation;
-@import ObjectiveC;
-@import UIKit;
-@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="ApptentiveKit",generated_declaration))), apply_to=any(function,enum,objc_interface,objc_category,objc_protocol))
-# pragma pop_macro("any")
-#endif
-
-#if defined(__OBJC__)
-@class NSString;
-@class UIImage;
-@class NSData;
-
-/// The main interface to the Apptentive SDK.
-SWIFT_CLASS("_TtC13ApptentiveKit10Apptentive")
-@interface Apptentive : NSObject
-/// The shared instance of the Apptentive SDK.
-/// This object is created lazily upon access.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, strong) Apptentive * _Nonnull shared;)
-+ (Apptentive * _Nonnull)shared SWIFT_WARN_UNUSED_RESULT;
-/// The name of the person using the app, if available.
-@property (nonatomic, copy) NSString * _Nullable personName;
-/// The email address of the person using the app, if available.
-@property (nonatomic, copy) NSString * _Nullable personEmailAddress;
-/// The string used by the mParticle integration to identify the current user.
-@property (nonatomic, copy) NSString * _Nullable mParticleID;
-/// The number of unread messages in message center.
-@property (nonatomic) NSInteger unreadMessageCount;
-/// The name of the distribution method for this SDK instance (not for app use).
-/// This property is used to track the relative popularity of various methods of
-/// integrating this SDK, for example “React Native” or “CocoaPods”.
-/// This property is not intended to be set by apps using the SDK, but
-/// should be set by projects that re-package the SDK for distribution
-/// as part of e.g. a cross-platform app framework.
-@property (nonatomic, copy) NSString * _Nullable distributionName;
-/// The version of the distribution for this SDK instance (not for app use).
-/// This property is used to track the version of any projects
-/// that re-package the SDK as part of e.g. a cross-platform app-
-/// development framework.
-/// This property is not intended to be set by apps using the SDK.
-@property (nonatomic, copy) NSString * _Nullable distributionVersion;
-/// Sends the specified text as a hidden message to the app’s dashboard.
-/// \param text The text to send in the body of the message.
-///
-- (void)sendAttachmentText:(NSString * _Nonnull)text;
-/// Sends the specified image (encoded as a JPEG at 95% quality) attached to a hidden message to the app’s dashboard.
-/// \param image The image to encode and send.
-///
-- (void)sendAttachmentImage:(UIImage * _Nonnull)image;
-/// Sends the specified data attached to a hidden message to the app’s dashboard.
-/// \param fileData The contents of the file.
-///
-/// \param mediaType The media type for the file.
-///
-- (void)sendAttachmentFile:(NSData * _Nonnull)fileData withMimeType:(NSString * _Nonnull)mediaType;
-- (nonnull instancetype)init SWIFT_UNAVAILABLE;
-+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable");
-@end
-
-
-
-@class UNNotificationResponse;
-@class UNNotification;
-@class UNUserNotificationCenter;
-
-@interface Apptentive (SWIFT_EXTENSION(ApptentiveKit))
-/// Sets the remote notification device token to the specified value.
-/// \param tokenData The remote notification device token passed into application(_:didRegisterForRemoteNotificationsWithDeviceToken:)
.
-///
-- (void)setRemoteNotificationDeviceToken:(NSData * _Nonnull)tokenData;
-- (void)setRemoteNotifcationDeviceToken:(NSData * _Nonnull)tokenData SWIFT_DEPRECATED_MSG("Use the (correctly-spelled) 'setRemoteNotificationDeviceToken(_:)' method instead.");
-/// Should be called in response to the application delegate receiving a remote notification.
-/// note:
-/// If the return value is false
, the caller is responsible for calling the fetch completion handler.
-/// \param userInfo The userInfo
parameter passed to application(_:didReceiveRemoteNotification:)
.
-///
-/// \param completionHandler The fetchCompletionHandler
parameter passed to application(_:didReceiveRemoteNotification:)
.
-///
-///
-/// returns:
-/// true
if the notification was handled by the Apptentive SDK, false
if not.
-- (BOOL)didReceiveRemoteNotification:(NSDictionary * _Nonnull)userInfo fetchCompletionHandler:(void (^ _Nonnull)(UIBackgroundFetchResult))completionHandler SWIFT_WARN_UNUSED_RESULT;
-/// Called when a user responds to a user notification.
-/// Apps may set their Apptentive
instance as the delegate of the current UNUserNotificationCenter
.
-/// If another object assumes this role, it should call this method in userNotificationCenter(_:didReceive:withCompletionHandler:)
.
-/// note:
-/// If this method returns false
, the caller is responsible for calling the completion handler.
-/// \param response The response
parameter passed to userNotificationCenter(_:didReceive:withCompletionHandler:)
.
-///
-/// \param completionHandler The completionHandler
parameter passed to userNotificationCenter(_:didReceive:withCompletionHandler:)
.
-///
-///
-/// returns:
-/// true
if the notification was handled by the Apptentive SDK, false
if not.
-- (BOOL)didReceveUserNotificationResponse:(UNNotificationResponse * _Nonnull)response withCompletionHandler:(void (^ _Nonnull)(void))completionHandler SWIFT_WARN_UNUSED_RESULT;
-/// Called when a user notification will be displayed.
-/// Apps may set their Apptentive
instance as the delegate of the current UNUserNotificationCenter
.
-/// If another object assumes this role, it should call this method in userNotificationCenter(_:willPresent:notification:completionHandler:)
.
-/// note:
-/// If this method returns false
, the caller is responsible for calling the completion handler.
-/// \param notification The response
parameter passed to userNotificationCenter(_:willPresent:notification:withCompletionHandler:)
.
-///
-/// \param completionHandler The completionHandler
parameter passed to userNotificationCenter(_:willPresent:notification:withCompletionHandler:)
.
-///
-///
-/// returns:
-/// true
if the notification was handled by the Apptentive SDK, false
if not.
-- (BOOL)willPresent:(UNNotification * _Nonnull)notification withCompletionHandler:(void (^ _Nonnull)(UNNotificationPresentationOptions))completionHandler SWIFT_WARN_UNUSED_RESULT;
-/// Passes the arguments received by the delegate method to the appropriate Apptentive method.
-/// \param center The user notification center.
-///
-/// \param notification The user notification.
-///
-/// \param completionHandler The completion handler to call.
-///
-- (void)userNotificationCenter:(UNUserNotificationCenter * _Nonnull)center willPresentNotification:(UNNotification * _Nonnull)notification withCompletionHandler:(void (^ _Nonnull)(UNNotificationPresentationOptions))completionHandler;
-/// Passes the arguments received by the delegate method to the appropriate Apptentive method.
-/// \param center The user notification center.
-///
-/// \param response The user notification response.
-///
-/// \param completionHandler The completion handler to call.
-///
-- (void)userNotificationCenter:(UNUserNotificationCenter * _Nonnull)center didReceiveNotificationResponse:(UNNotificationResponse * _Nonnull)response withCompletionHandler:(void (^ _Nonnull)(void))completionHandler;
-@end
-
-
-@class ApptentiveConfiguration;
-@class TermsAndConditions;
-@class UIViewController;
-@class NSDate;
-@class NSNumber;
-@class UIView;
-enum ApptentivePushProvider : NSInteger;
-@class NSUUID;
-enum ApptentiveAuthenticationFailureReason : NSInteger;
-enum ApptentiveLogLevel : NSUInteger;
-
-@interface Apptentive (SWIFT_EXTENSION(ApptentiveKit))
-+ (void)registerWithConfiguration:(ApptentiveConfiguration * _Nonnull)configuration SWIFT_DEPRECATED_MSG("Use the 'register(with:completion:)' method on the 'shared' instance instead.");
-- (void)registerWithConfiguration:(ApptentiveConfiguration * _Nonnull)configuration completion:(void (^ _Nullable)(BOOL))completion;
-+ (Apptentive * _Nonnull)sharedConnection SWIFT_WARN_UNUSED_RESULT SWIFT_DEPRECATED_MSG("Use the 'shared' static property instead.");
-@property (nonatomic, copy) NSString * _Nullable appID SWIFT_DEPRECATED_MSG("This property is ignored. SKStoreReviewController will be used for all ratings.");
-@property (nonatomic) BOOL showInfoButton SWIFT_DEPRECATED_MSG("This property is ignored. The info button no longer exists.");
-@property (nonatomic, strong) TermsAndConditions * _Nullable surveyTermsAndConditions SWIFT_DEPRECATED_MSG("This feature is not implemented.");
-@property (nonatomic, readonly, copy) NSString * _Nonnull apptentiveKey SWIFT_DEPRECATED_MSG("This property is not available for reading.");
-@property (nonatomic, readonly, copy) NSString * _Nonnull apptentiveSignature SWIFT_DEPRECATED_MSG("This property is not available for reading.");
-- (void)engage:(NSString * _Nonnull)event fromViewController:(UIViewController * _Nullable)viewController;
-- (void)engage:(NSString * _Nonnull)event fromViewController:(UIViewController * _Nullable)viewController completion:(void (^ _Nullable)(BOOL))completion;
-- (void)engage:(NSString * _Nonnull)event withCustomData:(NSDictionary * _Nullable)customData fromViewController:(UIViewController * _Nullable)viewController;
-- (void)engage:(NSString * _Nonnull)event withCustomData:(NSDictionary * _Nullable)customData fromViewController:(UIViewController * _Nullable)viewController completion:(void (^ _Nullable)(BOOL))completion;
-- (void)engage:(NSString * _Nonnull)event withCustomData:(NSDictionary * _Nullable)customData withExtendedData:(NSArray * _Nullable)extendedData fromViewController:(UIViewController * _Nullable)viewController SWIFT_DEPRECATED_MSG("Event extended data are no longer supported. Event will be engaged without extended data.");
-- (void)engage:(NSString * _Nonnull)event withCustomData:(NSDictionary * _Nullable)customData withExtendedData:(NSArray * _Nullable)extendedData fromViewController:(UIViewController * _Nullable)viewController completion:(void (^ _Nullable)(BOOL))completion SWIFT_DEPRECATED_MSG("Event extended data are no longer supported. Event will be engaged without extended data.");
-- (void)queryCanShowInteractionForEvent:(NSString * _Nonnull)event completion:(void (^ _Nonnull)(BOOL))completion;
-+ (NSDictionary * _Nonnull)extendedDataDate:(NSDate * _Nonnull)date SWIFT_WARN_UNUSED_RESULT SWIFT_DEPRECATED_MSG("Extended event data are no longer supported.");
-+ (NSDictionary * _Nonnull)extendedDataLocationForLatitude:(double)latitude longitude:(double)longitude SWIFT_WARN_UNUSED_RESULT SWIFT_DEPRECATED_MSG("Extended event data are no longer supported.");
-+ (NSDictionary * _Nonnull)extendedDataCommerceWithTransactionID:(NSString * _Nullable)transactionID affiliation:(NSString * _Nullable)affiliation revenue:(NSNumber * _Nullable)revenue shipping:(NSNumber * _Nullable)shipping tax:(NSNumber * _Nullable)tax currency:(NSString * _Nullable)currency commerceItems:(NSArray * _Nullable)commerceItems SWIFT_WARN_UNUSED_RESULT SWIFT_DEPRECATED_MSG("Extended event data are no longer supported.");
-+ (NSDictionary * _Nonnull)extendedDataCommerceItemWithItemID:(NSString * _Nullable)itemID name:(NSString * _Nullable)name category:(NSString * _Nullable)category price:(NSNumber * _Nullable)price quantity:(NSNumber * _Nullable)quantity currency:(NSString * _Nullable)currency SWIFT_WARN_UNUSED_RESULT SWIFT_DEPRECATED_MSG("Extended event data are no longer supported.");
-- (void)queryCanShowMessageCenterWithCompletion:(void (^ _Nonnull)(BOOL))completion SWIFT_DEPRECATED_MSG("This feature is not implemented and will always result in false.");
-- (void)presentMessageCenterFromViewController:(UIViewController * _Nullable)viewController;
-- (void)presentMessageCenterFromViewController:(UIViewController * _Nullable)viewController completion:(void (^ _Nullable)(BOOL))completion;
-- (void)presentMessageCenterFromViewController:(UIViewController * _Nullable)viewController withCustomData:(NSDictionary * _Nullable)customData;
-- (void)presentMessageCenterFromViewController:(UIViewController * _Nullable)viewController withCustomData:(NSDictionary * _Nullable)customData completion:(void (^ _Nullable)(BOOL))completion;
-- (void)dismissMessageCenterWithAnimated:(BOOL)animated completion:(void (^ _Nullable)(void))completion SWIFT_DEPRECATED_MSG("This feature is not implemented and this method will always result in false.");
-- (UIView * _Nonnull)unreadMessageCountAccessoryViewWithApptentiveHeart:(BOOL)apptentiveHeart SWIFT_WARN_UNUSED_RESULT SWIFT_DEPRECATED_MSG("This feature is not implemented and this property will return an empty view.");
-- (void)openAppStore SWIFT_DEPRECATED_MSG("This method is no longer implemented and will trigger an assertion failure.");
-- (void)setPushProvider:(enum ApptentivePushProvider)pushProvider deviceToken:(NSData * _Nonnull)deviceToken SWIFT_DEPRECATED_MSG("Use the 'setRemoteNotificationToken()' method instead.");
-- (BOOL)didReceveUserNotificationResponse:(UNNotificationResponse * _Nonnull)response from:(UIViewController * _Nullable)_ withCompletionHandler:(void (^ _Nonnull)(void))completionHandler SWIFT_WARN_UNUSED_RESULT SWIFT_DEPRECATED_MSG("This method is deprecated in favor of didReceveUserNotificationResponse(_:from:withCompletionHandler:).");
-@property (nonatomic, copy) NSUUID * _Nullable advertisingIdentifier SWIFT_DEPRECATED_MSG("Advertising identifier collection is not implemented.");
-@property (nonatomic, copy) NSString * _Nullable mParticleId SWIFT_DEPRECATED_MSG("mParticleId has been renamed to mParticleID.");
-- (void)removeCustomPersonDataWithKey:(NSString * _Nonnull)key;
-- (void)removeCustomDeviceDataWithKey:(NSString * _Nonnull)key;
-- (void)addCustomDeviceDataString:(NSString * _Nonnull)string withKey:(NSString * _Nonnull)key;
-- (void)addCustomDeviceDataNumber:(NSNumber * _Nonnull)number withKey:(NSString * _Nonnull)key;
-- (void)addCustomDeviceDataBool:(BOOL)boolValue withKey:(NSString * _Nonnull)key;
-- (void)addCustomPersonDataString:(NSString * _Nonnull)string withKey:(NSString * _Nonnull)key;
-- (void)addCustomPersonDataNumber:(NSNumber * _Nonnull)number withKey:(NSString * _Nonnull)key;
-- (void)addCustomPersonDataBool:(BOOL)boolValue withKey:(NSString * _Nonnull)key;
-@property (nonatomic) id _Nullable styleSheet SWIFT_DEPRECATED_MSG("Set style overrides defined in UIKit+Apptentive.swift extensions.");
-- (void)checkSDKConfiguration SWIFT_DEPRECATED_MSG("This method is not currently implemented and will trigger an assertion failure.");
-- (void)logInWithToken:(NSString * _Nonnull)token completion:(void (^ _Nonnull)(BOOL, NSError * _Nonnull))completion SWIFT_DEPRECATED_MSG("This method is not currently implemented and will trigger an assertion failure.");
-- (void)logOut SWIFT_DEPRECATED_MSG("This method is not currently implemented and will trigger an assertion failure.");
-@property (nonatomic, copy) void (^ _Nullable authenticationFailureCallback)(enum ApptentiveAuthenticationFailureReason, NSString * _Nonnull) SWIFT_DEPRECATED_MSG("Multiple users on the same device is not currently supported.");
-@property (nonatomic, copy) BOOL (^ _Nullable preInteractionCallback)(NSString * _Nonnull, NSDictionary * _Nullable) SWIFT_DEPRECATED_MSG("This feature is no longer supported.");
-- (void)updateToken:(NSString * _Nonnull)token completion:(void (^ _Nullable)(BOOL))completion SWIFT_DEPRECATED_MSG("This method is not currently implemented and will trigger an assertion failure.");
-@property (nonatomic) enum ApptentiveLogLevel logLevel;
-@end
-
-typedef SWIFT_ENUM(NSInteger, ApptentiveAuthenticationFailureReason, open) {
-/// An unknown authentication failure.
- ApptentiveAuthenticationFailureReasonUnknown = 0,
-/// An invalid JWT algorithm was used.
- ApptentiveAuthenticationFailureReasonInvalidAlgorithm = 1,
-/// A malformed JWT was encountered.
- ApptentiveAuthenticationFailureReasonMalformedToken = 2,
-/// An invalid JWT was encountered.
- ApptentiveAuthenticationFailureReasonInvalidToken = 3,
-/// A required subclaim was missing.
- ApptentiveAuthenticationFailureReasonMissingSubClaim = 4,
-/// A subclaim didn’t match the logged-in session.
- ApptentiveAuthenticationFailureReasonMismatchedSubClaim = 5,
-/// An invalid subclaim was encountered.
- ApptentiveAuthenticationFailureReasonInvalidSubClaim = 6,
-/// The JWT expired.
- ApptentiveAuthenticationFailureReasonExpiredToken = 7,
-/// The JWT was revoked.
- ApptentiveAuthenticationFailureReasonRevokedToken = 8,
-/// The Apptentive App Key was missing.
- ApptentiveAuthenticationFailureReasonMissingAppKey = 9,
-/// The Apptentive App Signature was missing
- ApptentiveAuthenticationFailureReasonMissingAppSignature = 10,
-/// In invalid combination of an Apptentive App Key and an Apptentive App Signature was found.
- ApptentiveAuthenticationFailureReasonInvalidKeySignaturePair = 11,
-};
-
-@class NSURL;
-
-SWIFT_CLASS("_TtC13ApptentiveKit23ApptentiveConfiguration")
-@interface ApptentiveConfiguration : NSObject
-/// The Apptentive App Key, obtained from your Apptentive dashboard.
-@property (nonatomic, readonly, copy) NSString * _Nonnull apptentiveKey;
-/// The Apptentive App Signature, obtained from your Apptentive dashboard.
-@property (nonatomic, readonly, copy) NSString * _Nonnull apptentiveSignature;
-/// The granularity of log messages to show.
-@property (nonatomic) enum ApptentiveLogLevel logLevel;
-/// If set, redacts potentially-sensitive information such as user data and credentials from logging.
-@property (nonatomic) BOOL shouldSanitizeLogMessages;
-/// The server URL to use for API calls. Should only be used for testing.
-@property (nonatomic, copy) NSURL * _Nullable baseURL SWIFT_DEPRECATED_MSG("This property is ignored. Use the designated initializer for 'Apptentive' to set this.");
-/// The name of the distribution that includes the Apptentive SDK. For example “Cordova”.
-@property (nonatomic, copy) NSString * _Nullable distributionName;
-/// The version of the distribution that includes the Apptentive SDK.
-@property (nonatomic, copy) NSString * _Nullable distributionVersion;
-/// The iTunes store app ID of the app (used for Apptentive rating prompt).
-@property (nonatomic, copy) NSString * _Nullable appID SWIFT_DEPRECATED_MSG("This property is ignored. An 'SKStoreReviewController' will be used for all ratings.");
-/// If set, shows a button in Surveys and Message Center that presents information about Apptentive including a link to our privacy policy.
-@property (nonatomic) BOOL showInfoButton SWIFT_DEPRECATED_MSG("This property is ignored. The info button no longer exists.");
-/// If set, will show a link to terms and conditions in the bottom bar in Surveys.
-@property (nonatomic, strong) TermsAndConditions * _Nullable surveyTermsAndConditions SWIFT_DEPRECATED_MSG("This property is ignored. Configure survey terms and conditions in the Apptentive Dashboard.");
-- (nullable instancetype)initWithApptentiveKey:(NSString * _Nonnull)apptentiveKey apptentiveSignature:(NSString * _Nonnull)apptentiveSignature OBJC_DESIGNATED_INITIALIZER;
-/// Returns an instance of the ApptentiveConfiguration
class initialized with the specified parameters.
-/// \param key The Apptentive App Key, obtained from your Apptentive dashboard.
-///
-/// \param signature The Apptentive App Signature, obtained from your Apptentive dashboard.
-///
-///
-/// returns:
-/// A configuration object initalized with the key and signature.
-+ (ApptentiveConfiguration * _Nonnull)configurationWithApptentiveKey:(NSString * _Nonnull)key apptentiveSignature:(NSString * _Nonnull)signature SWIFT_WARN_UNUSED_RESULT;
-- (nonnull instancetype)init SWIFT_UNAVAILABLE;
-+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable");
-@end
-
-typedef SWIFT_ENUM(NSUInteger, ApptentiveLogLevel, open) {
-/// Undefined.
- ApptentiveLogLevelUndefined = 0,
-/// Critical failure log messages.
- ApptentiveLogLevelCrit = 1,
-/// Error log messages.
- ApptentiveLogLevelError = 2,
-/// Warning log messages.
- ApptentiveLogLevelWarn = 3,
-/// Informational log messages.
- ApptentiveLogLevelInfo = 4,
-/// Log messages that are potentially useful for debugging.
- ApptentiveLogLevelDebug = 5,
-/// All possible log messages enabled.
- ApptentiveLogLevelVerbose = 6,
-};
-
-@class NSBundle;
-@class NSCoder;
-
-/// UINavigationController
subclass intended primarily to facilitate scoping UIAppearance
rules to Apptentive UI.
-SWIFT_CLASS("_TtC13ApptentiveKit30ApptentiveNavigationController")
-@interface ApptentiveNavigationController : UINavigationController
-@property (nonatomic, readonly) UIStatusBarStyle preferredStatusBarStyle;
-/// Increases the header height for surveys.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class) BOOL prefersLargeHeader;)
-+ (BOOL)prefersLargeHeader SWIFT_WARN_UNUSED_RESULT;
-+ (void)setPrefersLargeHeader:(BOOL)value;
-- (nonnull instancetype)initWithNavigationBarClass:(Class _Nullable)navigationBarClass toolbarClass:(Class _Nullable)toolbarClass OBJC_DESIGNATED_INITIALIZER SWIFT_AVAILABILITY(ios,introduced=5.0);
-- (nonnull instancetype)initWithRootViewController:(UIViewController * _Nonnull)rootViewController OBJC_DESIGNATED_INITIALIZER;
-- (nonnull instancetype)initWithNibName:(NSString * _Nullable)nibNameOrNil bundle:(NSBundle * _Nullable)nibBundleOrNil OBJC_DESIGNATED_INITIALIZER;
-- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)aDecoder OBJC_DESIGNATED_INITIALIZER;
-@end
-
-typedef SWIFT_ENUM(NSInteger, ApptentivePushProvider, open) {
-/// Specifies the Apptentive push provider.
- ApptentivePushProviderApptentive = 0,
-/// Specifies the Urban Airship push provider.
- ApptentivePushProviderUrbanAirship = 1,
-/// Specifies the Amazon Simple Notification Service push provider.
- ApptentivePushProviderAmazonSNS = 2,
-/// Specifies the Parse push provider.
- ApptentivePushProviderParse = 3,
-};
-
-
-@class UIFont;
-@class UIColor;
-
-/// The buttons used in TextModal (“Note”) and EnjoymentDialog (“Love Dialog”) interactions.
-SWIFT_CLASS("_TtC13ApptentiveKit12DialogButton")
-@interface DialogButton : UIButton
-/// The font to use for the button title.
-@property (nonatomic, strong) UIFont * _Nonnull titleFont;
-/// The radius of the button corners.
-/// Setting the radius to -1 will set the radius to half of the hieght of the button.
-@property (nonatomic) CGFloat cornerRadius;
-/// The width of the border of the button.
-@property (nonatomic) CGFloat borderWidth;
-/// The color of the border of the button.
-@property (nonatomic, strong) UIColor * _Nonnull borderColor;
-- (nonnull instancetype)initWithFrame:(CGRect)frame SWIFT_UNAVAILABLE;
-- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)coder SWIFT_UNAVAILABLE;
-@property (nonatomic, readonly) CGSize intrinsicContentSize;
-- (void)layoutSubviews;
-- (void)tintColorDidChange;
-- (void)didMoveToWindow;
-@end
-
-
-/// Displays the contents of the dialog used for TextModal (“Note”) and EnjoymentDialog (“Love Dialog”) interactions.
-SWIFT_CLASS("_TtC13ApptentiveKit10DialogView")
-@interface DialogView : UIView
-/// The foreground color of the title text.
-@property (nonatomic, strong) UIColor * _Nonnull titleTextColor;
-/// The foreground color of the message text in TextModal (“Note”) interactions.
-@property (nonatomic, strong) UIColor * _Nonnull messageTextColor;
-/// The font used for the title text.
-@property (nonatomic, strong) UIFont * _Nonnull titleFont;
-/// The font used for the message text in TextModal (“Note”) interactions.
-@property (nonatomic, strong) UIFont * _Nonnull messageFont;
-/// An image placed along the top edge of the dialog.
-/// The image will be scaled to the width of the dialog, and the height will be determined by the aspect ratio of the image.
-@property (nonatomic, strong) UIImage * _Nullable headerImage;
-/// The radius of the corners of the dialog.
-@property (nonatomic) CGFloat cornerRadius;
-/// The spacing between adjacent buttons.
-@property (nonatomic) CGFloat buttonSpacing;
-/// The distance by which the group of buttons is inset from the edges of the dialog.
-@property (nonatomic) UIEdgeInsets buttonInset;
-/// Whether the separators between buttons are hidden.
-@property (nonatomic) BOOL separatorsAreHidden;
-/// The color of the separators.
-@property (nonatomic, strong) UIColor * _Nonnull separatorColor;
-- (nonnull instancetype)initWithFrame:(CGRect)frame SWIFT_UNAVAILABLE;
-- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)coder SWIFT_UNAVAILABLE;
-- (void)didMoveToWindow;
-- (void)layoutSubviews;
-@end
-
-
-/// A class used to display TextModal (“Note”) and EnjoymentDialog (“Love Dialog”) interactions.
-SWIFT_CLASS("_TtC13ApptentiveKit20DialogViewController")
-@interface DialogViewController : UIViewController
-- (void)viewDidLoad;
-- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)coder SWIFT_UNAVAILABLE;
-- (void)viewDidAppear:(BOOL)animated;
-- (nonnull instancetype)initWithNibName:(NSString * _Nullable)nibNameOrNil bundle:(NSBundle * _Nullable)nibBundleOrNil SWIFT_UNAVAILABLE;
-@end
-
-
-/// A button used to dismiss a TextModal (“Note”) interaction.
-SWIFT_CLASS("_TtC13ApptentiveKit13DismissButton")
-@interface DismissButton : DialogButton
-@end
-
-
-/// A button used to launch a subsequent interaction from a TextModal (“Note”) interaction.
-SWIFT_CLASS("_TtC13ApptentiveKit17InteractionButton")
-@interface InteractionButton : DialogButton
-@end
-
-
-/// A button used to indicate negative sentiment in the EnjoymentDialog (“Love Dialog”) interaction.
-SWIFT_CLASS("_TtC13ApptentiveKit8NoButton")
-@interface NoButton : DialogButton
-@end
-
-
-SWIFT_CLASS("_TtC13ApptentiveKit18TermsAndConditions") SWIFT_DEPRECATED_MSG("This class is provided for compatibility but this feature is not implemented.")
-@interface TermsAndConditions : NSObject
-- (nonnull instancetype)init SWIFT_UNAVAILABLE;
-+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable");
-@end
-
-
-@interface UIBarButtonItem (SWIFT_EXTENSION(ApptentiveKit))
-/// The bar button item to use for closing Apptentive UI.
-/// Defaults to the system cancel button on iOS 12 and the system close button on iOS 13 and later.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIBarButtonItem * _Nonnull apptentiveClose;)
-+ (UIBarButtonItem * _Nonnull)apptentiveClose SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveClose:(UIBarButtonItem * _Nonnull)value;
-/// The bar button item to use for editing the profile in message center.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIBarButtonItem * _Nonnull apptentiveProfileEdit;)
-+ (UIBarButtonItem * _Nonnull)apptentiveProfileEdit SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveProfileEdit:(UIBarButtonItem * _Nonnull)value;
-@end
-
-
-@interface UIButton (SWIFT_EXTENSION(ApptentiveKit))
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly) CGFloat apptentivePillRadius;)
-+ (CGFloat)apptentivePillRadius SWIFT_WARN_UNUSED_RESULT;
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class) CGFloat apptentiveCornerRadius;)
-+ (CGFloat)apptentiveCornerRadius SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveCornerRadius:(CGFloat)newValue;
-@end
-
-
-
-@interface UIColor (SWIFT_EXTENSION(ApptentiveKit))
-/// The color to use for the background in text inputs for message center.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIColor * _Nonnull apptentiveMessageCenterTextInputBackground;)
-+ (UIColor * _Nonnull)apptentiveMessageCenterTextInputBackground SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveMessageCenterTextInputBackground:(UIColor * _Nonnull)value;
-/// The placeholder color to use for text inputs for message center.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIColor * _Nonnull apptentiveMessageCenterTextInputPlaceholder;)
-+ (UIColor * _Nonnull)apptentiveMessageCenterTextInputPlaceholder SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveMessageCenterTextInputPlaceholder:(UIColor * _Nonnull)value;
-/// The placeholder color to use for text inputs for message center.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIColor * _Nonnull apptentiveMessageTextViewPlaceholder SWIFT_DEPRECATED_MSG("This property has been renamed to 'apptentiveMessageTextInputPlaceholder'.");)
-+ (UIColor * _Nonnull)apptentiveMessageTextViewPlaceholder SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveMessageTextViewPlaceholder:(UIColor * _Nonnull)newValue;
-/// The text color to use for all text inputs in message center.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIColor * _Nonnull apptentiveMessageCenterTextInput;)
-+ (UIColor * _Nonnull)apptentiveMessageCenterTextInput SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveMessageCenterTextInput:(UIColor * _Nonnull)value;
-/// The tint color for text inputs for surveys.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIColor * _Nonnull apptentivetextInputTint;)
-+ (UIColor * _Nonnull)apptentivetextInputTint SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentivetextInputTint:(UIColor * _Nonnull)value;
-/// The border color to use for the message text view.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIColor * _Nonnull apptentiveMessageCenterTextInputBorder;)
-+ (UIColor * _Nonnull)apptentiveMessageCenterTextInputBorder SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveMessageCenterTextInputBorder:(UIColor * _Nonnull)value;
-/// The border color to use for the message text view.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIColor * _Nonnull apptentiveMessageCenterTextViewBorder SWIFT_DEPRECATED_MSG("This property has been renamed to 'apptentiveMessageCenterTextInputBorder'.");)
-+ (UIColor * _Nonnull)apptentiveMessageCenterTextViewBorder SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveMessageCenterTextViewBorder:(UIColor * _Nonnull)newValue;
-/// The color to use for the attachment button for the compose view for message center.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIColor * _Nonnull apptentiveMessageCenterAttachmentButton;)
-+ (UIColor * _Nonnull)apptentiveMessageCenterAttachmentButton SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveMessageCenterAttachmentButton:(UIColor * _Nonnull)value;
-/// The color to use for the text view placeholder for the compose view for message center.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIColor * _Nonnull apptentiveMessageTextInputPlaceholder;)
-+ (UIColor * _Nonnull)apptentiveMessageTextInputPlaceholder SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveMessageTextInputPlaceholder:(UIColor * _Nonnull)value;
-/// The color to use for the status message in message center.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIColor * _Nonnull apptentiveMessageCenterStatus;)
-+ (UIColor * _Nonnull)apptentiveMessageCenterStatus SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveMessageCenterStatus:(UIColor * _Nonnull)value;
-/// The color to use for the greeting body on the greeting header view for message center.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIColor * _Nonnull apptentiveMessageCenterGreetingBody;)
-+ (UIColor * _Nonnull)apptentiveMessageCenterGreetingBody SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveMessageCenterGreetingBody:(UIColor * _Nonnull)value;
-/// The color to use for the greeting title on the greeting header view for message center.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIColor * _Nonnull apptentiveMessageCenterGreetingTitle;)
-+ (UIColor * _Nonnull)apptentiveMessageCenterGreetingTitle SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveMessageCenterGreetingTitle:(UIColor * _Nonnull)value;
-/// The color to use for the message bubble view for inbound messages.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIColor * _Nonnull apptentiveMessageBubbleInbound;)
-+ (UIColor * _Nonnull)apptentiveMessageBubbleInbound SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveMessageBubbleInbound:(UIColor * _Nonnull)value;
-/// The color to use for the message bubble view for outbound messages.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIColor * _Nonnull apptentiveMessageBubbleOutbound;)
-+ (UIColor * _Nonnull)apptentiveMessageBubbleOutbound SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveMessageBubbleOutbound:(UIColor * _Nonnull)value;
-/// The color to use for message labels for the inbound message body.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIColor * _Nonnull apptentiveMessageLabelInbound;)
-+ (UIColor * _Nonnull)apptentiveMessageLabelInbound SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveMessageLabelInbound:(UIColor * _Nonnull)value;
-/// The color to use for message labels for the outbound message body.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIColor * _Nonnull apptentiveMessageLabelOutbound;)
-+ (UIColor * _Nonnull)apptentiveMessageLabelOutbound SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveMessageLabelOutbound:(UIColor * _Nonnull)value;
-/// The color to use for labels in a non-error state.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIColor * _Nonnull apptentiveQuestionLabel;)
-+ (UIColor * _Nonnull)apptentiveQuestionLabel SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveQuestionLabel:(UIColor * _Nonnull)value;
-/// The color to use for instruction labels.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIColor * _Nonnull apptentiveInstructionsLabel;)
-+ (UIColor * _Nonnull)apptentiveInstructionsLabel SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveInstructionsLabel:(UIColor * _Nonnull)value;
-/// The color to use for choice labels.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIColor * _Nonnull apptentiveChoiceLabel;)
-+ (UIColor * _Nonnull)apptentiveChoiceLabel SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveChoiceLabel:(UIColor * _Nonnull)value;
-/// The color to use for UI elements to indicate an error state.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIColor * _Nonnull apptentiveError;)
-+ (UIColor * _Nonnull)apptentiveError SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveError:(UIColor * _Nonnull)value;
-/// The color to use for labels of secondary prominence.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIColor * _Nonnull apptentiveSecondaryLabel;)
-+ (UIColor * _Nonnull)apptentiveSecondaryLabel SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveSecondaryLabel:(UIColor * _Nonnull)value;
-/// The border color to use for the segmented control for range surveys.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIColor * _Nonnull apptentiveRangeControlBorder;)
-+ (UIColor * _Nonnull)apptentiveRangeControlBorder SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveRangeControlBorder:(UIColor * _Nonnull)value;
-/// The color to use for the survey introduction text.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIColor * _Nonnull apptentiveSurveyIntroduction;)
-+ (UIColor * _Nonnull)apptentiveSurveyIntroduction SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveSurveyIntroduction:(UIColor * _Nonnull)value;
-/// The color to use for the borders of text fields and text views.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIColor * _Nonnull apptentiveTextInputBorder;)
-+ (UIColor * _Nonnull)apptentiveTextInputBorder SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveTextInputBorder:(UIColor * _Nonnull)value;
-/// The color to use for text fields and text views.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIColor * _Nonnull apptentiveTextInputBackground;)
-+ (UIColor * _Nonnull)apptentiveTextInputBackground SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveTextInputBackground:(UIColor * _Nonnull)value;
-/// The color to use for text within text fields and text views.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIColor * _Nonnull apptentiveTextInput;)
-+ (UIColor * _Nonnull)apptentiveTextInput SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveTextInput:(UIColor * _Nonnull)value;
-/// The color to use for the placeholder text within text fields and text views.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIColor * _Nonnull apptentiveTextInputPlaceholder;)
-+ (UIColor * _Nonnull)apptentiveTextInputPlaceholder SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveTextInputPlaceholder:(UIColor * _Nonnull)value;
-/// The color used for min and max labels for the range survey.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIColor * _Nonnull apptentiveMinMaxLabel;)
-+ (UIColor * _Nonnull)apptentiveMinMaxLabel SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveMinMaxLabel:(UIColor * _Nonnull)value;
-/// The color used for the background of the entire survey.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIColor * _Nonnull apptentiveGroupedBackground;)
-+ (UIColor * _Nonnull)apptentiveGroupedBackground SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveGroupedBackground:(UIColor * _Nonnull)value;
-/// The color used for the cell where the survey question is located.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIColor * _Nonnull apptentiveSecondaryGroupedBackground;)
-+ (UIColor * _Nonnull)apptentiveSecondaryGroupedBackground SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveSecondaryGroupedBackground:(UIColor * _Nonnull)value;
-/// The color to use for separators in e.g. table views.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIColor * _Nonnull apptentiveSeparator;)
-+ (UIColor * _Nonnull)apptentiveSeparator SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveSeparator:(UIColor * _Nonnull)value;
-/// The color to use for images in a selected state for surveys.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIColor * _Nonnull apptentiveImageSelected;)
-+ (UIColor * _Nonnull)apptentiveImageSelected SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveImageSelected:(UIColor * _Nonnull)value;
-/// The color to use for images in a non-selected state for surveys.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIColor * _Nonnull apptentiveImageNotSelected;)
-+ (UIColor * _Nonnull)apptentiveImageNotSelected SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveImageNotSelected:(UIColor * _Nonnull)value;
-/// The background color to use for the submit button on surveys.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIColor * _Nonnull apptentiveSubmitButton;)
-+ (UIColor * _Nonnull)apptentiveSubmitButton SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveSubmitButton:(UIColor * _Nonnull)value;
-/// The background color to use for the footer which contains the terms and conditions for branched surveys.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIColor * _Nonnull apptentiveBranchedSurveyFooter;)
-+ (UIColor * _Nonnull)apptentiveBranchedSurveyFooter SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveBranchedSurveyFooter:(UIColor * _Nonnull)value;
-/// The color to use for the survey footer label (Thank You text).
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIColor * _Nonnull apptentiveSubmitStatusLabel;)
-+ (UIColor * _Nonnull)apptentiveSubmitStatusLabel SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveSubmitStatusLabel:(UIColor * _Nonnull)value;
-/// The color to use for the terms of service label.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIColor * _Nonnull apptentiveTermsOfServiceLabel;)
-+ (UIColor * _Nonnull)apptentiveTermsOfServiceLabel SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveTermsOfServiceLabel:(UIColor * _Nonnull)value;
-/// The color to use for the submit button text color.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIColor * _Nonnull apptentiveSubmitButtonTitle;)
-+ (UIColor * _Nonnull)apptentiveSubmitButtonTitle SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveSubmitButtonTitle:(UIColor * _Nonnull)value;
-/// The color to use for submit button border.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIColor * _Nonnull apptentiveSubmitButtonBorder;)
-+ (UIColor * _Nonnull)apptentiveSubmitButtonBorder SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveSubmitButtonBorder:(UIColor * _Nonnull)value;
-/// The color to use for the space between questions.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIColor * _Nonnull apptentiveQuestionSeparator;)
-+ (UIColor * _Nonnull)apptentiveQuestionSeparator SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveQuestionSeparator:(UIColor * _Nonnull)value;
-/// The color to use for the background of Message Center.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIColor * _Nonnull apptentiveMessageCenterBackground;)
-+ (UIColor * _Nonnull)apptentiveMessageCenterBackground SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveMessageCenterBackground:(UIColor * _Nonnull)value;
-/// The color to use for the button that deletes the attachment from the draft message.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIColor * _Nonnull apptentiveMessageCenterAttachmentDeleteButton;)
-+ (UIColor * _Nonnull)apptentiveMessageCenterAttachmentDeleteButton SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveMessageCenterAttachmentDeleteButton:(UIColor * _Nonnull)value;
-/// The color to use for the compose box for Message Center.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIColor * _Nonnull apptentiveMessageCenterComposeBoxBackground;)
-+ (UIColor * _Nonnull)apptentiveMessageCenterComposeBoxBackground SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveMessageCenterComposeBoxBackground:(UIColor * _Nonnull)value;
-/// The color to use for the compose box separator.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIColor * _Nonnull apptentiveMessageCenterComposeBoxSeparator;)
-+ (UIColor * _Nonnull)apptentiveMessageCenterComposeBoxSeparator SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveMessageCenterComposeBoxSeparator:(UIColor * _Nonnull)value;
-/// The color to use for text input borders when selected.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIColor * _Nonnull apptentiveTextInputBorderSelected;)
-+ (UIColor * _Nonnull)apptentiveTextInputBorderSelected SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveTextInputBorderSelected:(UIColor * _Nonnull)value;
-/// The text color used for the disclaimer text.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIColor * _Nonnull apptentiveDisclaimerLabel;)
-+ (UIColor * _Nonnull)apptentiveDisclaimerLabel SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveDisclaimerLabel:(UIColor * _Nonnull)value;
-@end
-
-
-@interface UIFont (SWIFT_EXTENSION(ApptentiveKit))
-/// The font to use for placeholder for text inputs in message center.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIFont * _Nonnull apptentiveMessageCenterTextInputPlaceholder;)
-+ (UIFont * _Nonnull)apptentiveMessageCenterTextInputPlaceholder SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveMessageCenterTextInputPlaceholder:(UIFont * _Nonnull)value;
-/// The font to use for text inputs in message menter.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIFont * _Nonnull apptentiveMessageCenterTextInput;)
-+ (UIFont * _Nonnull)apptentiveMessageCenterTextInput SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveMessageCenterTextInput:(UIFont * _Nonnull)value;
-/// The font to use for placeholder text for text inputs in surveys.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIFont * _Nonnull apptentiveTextInputPlaceholder;)
-+ (UIFont * _Nonnull)apptentiveTextInputPlaceholder SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveTextInputPlaceholder:(UIFont * _Nonnull)value;
-/// The font to use for the greeting title for message center.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIFont * _Nonnull apptentiveMessageCenterStatus;)
-+ (UIFont * _Nonnull)apptentiveMessageCenterStatus SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveMessageCenterStatus:(UIFont * _Nonnull)value;
-/// The font to use for the greeting title for message center.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIFont * _Nonnull apptentiveMessageCenterGreetingTitle;)
-+ (UIFont * _Nonnull)apptentiveMessageCenterGreetingTitle SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveMessageCenterGreetingTitle:(UIFont * _Nonnull)value;
-/// The font to use for the greeting body for message center.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIFont * _Nonnull apptentiveMessageCenterGreetingBody;)
-+ (UIFont * _Nonnull)apptentiveMessageCenterGreetingBody SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveMessageCenterGreetingBody:(UIFont * _Nonnull)value;
-/// The font to use for attachment placeholder file extension labels.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIFont * _Nonnull apptentiveMessageCenterAttachmentLabel;)
-+ (UIFont * _Nonnull)apptentiveMessageCenterAttachmentLabel SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveMessageCenterAttachmentLabel:(UIFont * _Nonnull)value;
-/// The font used for all survey question labels.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIFont * _Nonnull apptentiveQuestionLabel;)
-+ (UIFont * _Nonnull)apptentiveQuestionLabel SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveQuestionLabel:(UIFont * _Nonnull)value;
-/// The font used for the terms of service.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIFont * _Nonnull apptentiveTermsOfServiceLabel;)
-+ (UIFont * _Nonnull)apptentiveTermsOfServiceLabel SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveTermsOfServiceLabel:(UIFont * _Nonnull)value;
-/// The font used for all survey answer choice labels.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIFont * _Nonnull apptentiveChoiceLabel;)
-+ (UIFont * _Nonnull)apptentiveChoiceLabel SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveChoiceLabel:(UIFont * _Nonnull)value;
-/// The font used for the message body in message center.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIFont * _Nonnull apptentiveMessageLabel;)
-+ (UIFont * _Nonnull)apptentiveMessageLabel SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveMessageLabel:(UIFont * _Nonnull)value;
-/// The font used for the min and max labels for the range survey.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIFont * _Nonnull apptentiveMinMaxLabel;)
-+ (UIFont * _Nonnull)apptentiveMinMaxLabel SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveMinMaxLabel:(UIFont * _Nonnull)value;
-/// The font used for the sender label in message center.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIFont * _Nonnull apptentiveSenderLabel;)
-+ (UIFont * _Nonnull)apptentiveSenderLabel SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveSenderLabel:(UIFont * _Nonnull)value;
-/// The font used for the message date label in message center.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIFont * _Nonnull apptentiveMessageDateLabel;)
-+ (UIFont * _Nonnull)apptentiveMessageDateLabel SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveMessageDateLabel:(UIFont * _Nonnull)value;
-/// The font used for the instructions label for surveys.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIFont * _Nonnull apptentiveInstructionsLabel;)
-+ (UIFont * _Nonnull)apptentiveInstructionsLabel SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveInstructionsLabel:(UIFont * _Nonnull)value;
-/// The font used for the survey introduction label.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIFont * _Nonnull apptentiveSurveyIntroductionLabel;)
-+ (UIFont * _Nonnull)apptentiveSurveyIntroductionLabel SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveSurveyIntroductionLabel:(UIFont * _Nonnull)value;
-/// The font used for the survey footer label (Thank You text).
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIFont * _Nonnull apptentiveSubmitStatusLabel;)
-+ (UIFont * _Nonnull)apptentiveSubmitStatusLabel SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveSubmitStatusLabel:(UIFont * _Nonnull)value;
-/// The font used for the disclaimer text.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIFont * _Nonnull apptentiveDisclaimerLabel;)
-+ (UIFont * _Nonnull)apptentiveDisclaimerLabel SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveDisclaimerLabel:(UIFont * _Nonnull)value;
-/// The font used for the submit button at the end of surveys.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIFont * _Nonnull apptentiveSubmitButtonTitle;)
-+ (UIFont * _Nonnull)apptentiveSubmitButtonTitle SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveSubmitButtonTitle:(UIFont * _Nonnull)value;
-/// The font used for the multi- and single-line text inputs in surveys.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIFont * _Nonnull apptentiveTextInput;)
-+ (UIFont * _Nonnull)apptentiveTextInput SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveTextInput:(UIFont * _Nonnull)value;
-@end
-
-
-@interface UIImage (SWIFT_EXTENSION(ApptentiveKit))
-/// The image to use for the add attachment button for message center.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIImage * _Nullable apptentiveMessageAttachmentButton;)
-+ (UIImage * _Nullable)apptentiveMessageAttachmentButton SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveMessageAttachmentButton:(UIImage * _Nullable)value;
-/// The image to use for the button that sends messages for message center.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIImage * _Nullable apptentiveMessageSendButton;)
-+ (UIImage * _Nullable)apptentiveMessageSendButton SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveMessageSendButton:(UIImage * _Nullable)value;
-/// The image to use as the chat bubble for outbound messages.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIImage * _Nullable apptentiveSentMessageBubble;)
-+ (UIImage * _Nullable)apptentiveSentMessageBubble SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveSentMessageBubble:(UIImage * _Nullable)value;
-/// The image to use as the chat bubble for inbound messages.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIImage * _Nullable apptentiveReceivedMessageBubble;)
-+ (UIImage * _Nullable)apptentiveReceivedMessageBubble SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveReceivedMessageBubble:(UIImage * _Nullable)value;
-/// The image to use for attachment placeholders in messages and the composer.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIImage * _Nullable apptentiveAttachmentPlaceholder;)
-+ (UIImage * _Nullable)apptentiveAttachmentPlaceholder SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveAttachmentPlaceholder:(UIImage * _Nullable)value;
-/// The image to use for the attachment delete button.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIImage * _Nullable apptentiveAttachmentRemoveButton;)
-+ (UIImage * _Nullable)apptentiveAttachmentRemoveButton SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveAttachmentRemoveButton:(UIImage * _Nullable)value;
-/// The image to use for the top navigation bar for surveys.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIImage * _Nullable apptentiveHeaderLogo;)
-+ (UIImage * _Nullable)apptentiveHeaderLogo SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveHeaderLogo:(UIImage * _Nullable)value;
-/// The image to use next to a radio button question choice.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIImage * _Nullable apptentiveRadioButton;)
-+ (UIImage * _Nullable)apptentiveRadioButton SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveRadioButton:(UIImage * _Nullable)value;
-/// The image to use next to a checkbox question choice.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIImage * _Nullable apptentiveCheckbox;)
-+ (UIImage * _Nullable)apptentiveCheckbox SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveCheckbox:(UIImage * _Nullable)value;
-/// The image to use next to a selected radio button question choice.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIImage * _Nullable apptentiveRadioButtonSelected;)
-+ (UIImage * _Nullable)apptentiveRadioButtonSelected SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveRadioButtonSelected:(UIImage * _Nullable)value;
-/// The image to use next to a selected checkbox question choice.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIImage * _Nullable apptentiveCheckboxSelected;)
-+ (UIImage * _Nullable)apptentiveCheckboxSelected SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveCheckboxSelected:(UIImage * _Nullable)value;
-@end
-
-
-@interface UITableView (SWIFT_EXTENSION(ApptentiveKit))
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class) NSInteger apptentiveStyle;)
-+ (NSInteger)apptentiveStyle SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveStyle:(NSInteger)newValue;
-@end
-
-
-enum ToolbarMode : NSInteger;
-
-@interface UIToolbar (SWIFT_EXTENSION(ApptentiveKit))
-/// Determines when to show a toolbar in Apptentive view controllers.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class) enum ToolbarMode apptentiveMode;)
-+ (enum ToolbarMode)apptentiveMode SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveMode:(enum ToolbarMode)value;
-@end
-
-/// The circumstances under which to show a toolbar.
-typedef SWIFT_ENUM(NSInteger, ToolbarMode, open) {
-/// Always show the toolbar.
- ToolbarModeAlwaysShown = 0,
-/// Show the toolbar only when there will be UI present in it.
- ToolbarModeHiddenWhenEmpty = 1,
-};
-
-
-@interface UIViewController (SWIFT_EXTENSION(ApptentiveKit))
-@property (nonatomic) UIModalPresentationStyle apptentiveModalPresentationStyle;
-@end
-
-
-
-
-/// A button used to indicate positive sentiment in the EnjoymentDialog (“Love Dialog”) interaction.
-SWIFT_CLASS("_TtC13ApptentiveKit9YesButton")
-@interface YesButton : DialogButton
-@end
-
-#endif
-#if defined(__cplusplus)
-#endif
-#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.7.2 (swiftlang-5.7.2.135.5 clang-1400.0.29.51)
-#ifndef APPTENTIVEKIT_SWIFT_H
-#define APPTENTIVEKIT_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 CoreFoundation;
-@import Foundation;
-@import ObjectiveC;
-@import UIKit;
-@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="ApptentiveKit",generated_declaration))), apply_to=any(function,enum,objc_interface,objc_category,objc_protocol))
-# pragma pop_macro("any")
-#endif
-
-#if defined(__OBJC__)
-@class NSString;
-@class UIImage;
-@class NSData;
-
-/// The main interface to the Apptentive SDK.
-SWIFT_CLASS("_TtC13ApptentiveKit10Apptentive")
-@interface Apptentive : NSObject
-/// The shared instance of the Apptentive SDK.
-/// This object is created lazily upon access.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, strong) Apptentive * _Nonnull shared;)
-+ (Apptentive * _Nonnull)shared SWIFT_WARN_UNUSED_RESULT;
-/// The name of the person using the app, if available.
-@property (nonatomic, copy) NSString * _Nullable personName;
-/// The email address of the person using the app, if available.
-@property (nonatomic, copy) NSString * _Nullable personEmailAddress;
-/// The string used by the mParticle integration to identify the current user.
-@property (nonatomic, copy) NSString * _Nullable mParticleID;
-/// The number of unread messages in message center.
-@property (nonatomic) NSInteger unreadMessageCount;
-/// The name of the distribution method for this SDK instance (not for app use).
-/// This property is used to track the relative popularity of various methods of
-/// integrating this SDK, for example “React Native” or “CocoaPods”.
-/// This property is not intended to be set by apps using the SDK, but
-/// should be set by projects that re-package the SDK for distribution
-/// as part of e.g. a cross-platform app framework.
-@property (nonatomic, copy) NSString * _Nullable distributionName;
-/// The version of the distribution for this SDK instance (not for app use).
-/// This property is used to track the version of any projects
-/// that re-package the SDK as part of e.g. a cross-platform app-
-/// development framework.
-/// This property is not intended to be set by apps using the SDK.
-@property (nonatomic, copy) NSString * _Nullable distributionVersion;
-/// Sends the specified text as a hidden message to the app’s dashboard.
-/// \param text The text to send in the body of the message.
-///
-- (void)sendAttachmentText:(NSString * _Nonnull)text;
-/// Sends the specified image (encoded as a JPEG at 95% quality) attached to a hidden message to the app’s dashboard.
-/// \param image The image to encode and send.
-///
-- (void)sendAttachmentImage:(UIImage * _Nonnull)image;
-/// Sends the specified data attached to a hidden message to the app’s dashboard.
-/// \param fileData The contents of the file.
-///
-/// \param mediaType The media type for the file.
-///
-- (void)sendAttachmentFile:(NSData * _Nonnull)fileData withMimeType:(NSString * _Nonnull)mediaType;
-- (nonnull instancetype)init SWIFT_UNAVAILABLE;
-+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable");
-@end
-
-
-
-@class UNNotificationResponse;
-@class UNNotification;
-@class UNUserNotificationCenter;
-
-@interface Apptentive (SWIFT_EXTENSION(ApptentiveKit))
-/// Sets the remote notification device token to the specified value.
-/// \param tokenData The remote notification device token passed into application(_:didRegisterForRemoteNotificationsWithDeviceToken:)
.
-///
-- (void)setRemoteNotificationDeviceToken:(NSData * _Nonnull)tokenData;
-- (void)setRemoteNotifcationDeviceToken:(NSData * _Nonnull)tokenData SWIFT_DEPRECATED_MSG("Use the (correctly-spelled) 'setRemoteNotificationDeviceToken(_:)' method instead.");
-/// Should be called in response to the application delegate receiving a remote notification.
-/// note:
-/// If the return value is false
, the caller is responsible for calling the fetch completion handler.
-/// \param userInfo The userInfo
parameter passed to application(_:didReceiveRemoteNotification:)
.
-///
-/// \param completionHandler The fetchCompletionHandler
parameter passed to application(_:didReceiveRemoteNotification:)
.
-///
-///
-/// returns:
-/// true
if the notification was handled by the Apptentive SDK, false
if not.
-- (BOOL)didReceiveRemoteNotification:(NSDictionary * _Nonnull)userInfo fetchCompletionHandler:(void (^ _Nonnull)(UIBackgroundFetchResult))completionHandler SWIFT_WARN_UNUSED_RESULT;
-/// Called when a user responds to a user notification.
-/// Apps may set their Apptentive
instance as the delegate of the current UNUserNotificationCenter
.
-/// If another object assumes this role, it should call this method in userNotificationCenter(_:didReceive:withCompletionHandler:)
.
-/// note:
-/// If this method returns false
, the caller is responsible for calling the completion handler.
-/// \param response The response
parameter passed to userNotificationCenter(_:didReceive:withCompletionHandler:)
.
-///
-/// \param completionHandler The completionHandler
parameter passed to userNotificationCenter(_:didReceive:withCompletionHandler:)
.
-///
-///
-/// returns:
-/// true
if the notification was handled by the Apptentive SDK, false
if not.
-- (BOOL)didReceveUserNotificationResponse:(UNNotificationResponse * _Nonnull)response withCompletionHandler:(void (^ _Nonnull)(void))completionHandler SWIFT_WARN_UNUSED_RESULT;
-/// Called when a user notification will be displayed.
-/// Apps may set their Apptentive
instance as the delegate of the current UNUserNotificationCenter
.
-/// If another object assumes this role, it should call this method in userNotificationCenter(_:willPresent:notification:completionHandler:)
.
-/// note:
-/// If this method returns false
, the caller is responsible for calling the completion handler.
-/// \param notification The response
parameter passed to userNotificationCenter(_:willPresent:notification:withCompletionHandler:)
.
-///
-/// \param completionHandler The completionHandler
parameter passed to userNotificationCenter(_:willPresent:notification:withCompletionHandler:)
.
-///
-///
-/// returns:
-/// true
if the notification was handled by the Apptentive SDK, false
if not.
-- (BOOL)willPresent:(UNNotification * _Nonnull)notification withCompletionHandler:(void (^ _Nonnull)(UNNotificationPresentationOptions))completionHandler SWIFT_WARN_UNUSED_RESULT;
-/// Passes the arguments received by the delegate method to the appropriate Apptentive method.
-/// \param center The user notification center.
-///
-/// \param notification The user notification.
-///
-/// \param completionHandler The completion handler to call.
-///
-- (void)userNotificationCenter:(UNUserNotificationCenter * _Nonnull)center willPresentNotification:(UNNotification * _Nonnull)notification withCompletionHandler:(void (^ _Nonnull)(UNNotificationPresentationOptions))completionHandler;
-/// Passes the arguments received by the delegate method to the appropriate Apptentive method.
-/// \param center The user notification center.
-///
-/// \param response The user notification response.
-///
-/// \param completionHandler The completion handler to call.
-///
-- (void)userNotificationCenter:(UNUserNotificationCenter * _Nonnull)center didReceiveNotificationResponse:(UNNotificationResponse * _Nonnull)response withCompletionHandler:(void (^ _Nonnull)(void))completionHandler;
-@end
-
-
-@class ApptentiveConfiguration;
-@class TermsAndConditions;
-@class UIViewController;
-@class NSDate;
-@class NSNumber;
-@class UIView;
-enum ApptentivePushProvider : NSInteger;
-@class NSUUID;
-enum ApptentiveAuthenticationFailureReason : NSInteger;
-enum ApptentiveLogLevel : NSUInteger;
-
-@interface Apptentive (SWIFT_EXTENSION(ApptentiveKit))
-+ (void)registerWithConfiguration:(ApptentiveConfiguration * _Nonnull)configuration SWIFT_DEPRECATED_MSG("Use the 'register(with:completion:)' method on the 'shared' instance instead.");
-- (void)registerWithConfiguration:(ApptentiveConfiguration * _Nonnull)configuration completion:(void (^ _Nullable)(BOOL))completion;
-+ (Apptentive * _Nonnull)sharedConnection SWIFT_WARN_UNUSED_RESULT SWIFT_DEPRECATED_MSG("Use the 'shared' static property instead.");
-@property (nonatomic, copy) NSString * _Nullable appID SWIFT_DEPRECATED_MSG("This property is ignored. SKStoreReviewController will be used for all ratings.");
-@property (nonatomic) BOOL showInfoButton SWIFT_DEPRECATED_MSG("This property is ignored. The info button no longer exists.");
-@property (nonatomic, strong) TermsAndConditions * _Nullable surveyTermsAndConditions SWIFT_DEPRECATED_MSG("This feature is not implemented.");
-@property (nonatomic, readonly, copy) NSString * _Nonnull apptentiveKey SWIFT_DEPRECATED_MSG("This property is not available for reading.");
-@property (nonatomic, readonly, copy) NSString * _Nonnull apptentiveSignature SWIFT_DEPRECATED_MSG("This property is not available for reading.");
-- (void)engage:(NSString * _Nonnull)event fromViewController:(UIViewController * _Nullable)viewController;
-- (void)engage:(NSString * _Nonnull)event fromViewController:(UIViewController * _Nullable)viewController completion:(void (^ _Nullable)(BOOL))completion;
-- (void)engage:(NSString * _Nonnull)event withCustomData:(NSDictionary * _Nullable)customData fromViewController:(UIViewController * _Nullable)viewController;
-- (void)engage:(NSString * _Nonnull)event withCustomData:(NSDictionary * _Nullable)customData fromViewController:(UIViewController * _Nullable)viewController completion:(void (^ _Nullable)(BOOL))completion;
-- (void)engage:(NSString * _Nonnull)event withCustomData:(NSDictionary * _Nullable)customData withExtendedData:(NSArray * _Nullable)extendedData fromViewController:(UIViewController * _Nullable)viewController SWIFT_DEPRECATED_MSG("Event extended data are no longer supported. Event will be engaged without extended data.");
-- (void)engage:(NSString * _Nonnull)event withCustomData:(NSDictionary * _Nullable)customData withExtendedData:(NSArray * _Nullable)extendedData fromViewController:(UIViewController * _Nullable)viewController completion:(void (^ _Nullable)(BOOL))completion SWIFT_DEPRECATED_MSG("Event extended data are no longer supported. Event will be engaged without extended data.");
-- (void)queryCanShowInteractionForEvent:(NSString * _Nonnull)event completion:(void (^ _Nonnull)(BOOL))completion;
-+ (NSDictionary * _Nonnull)extendedDataDate:(NSDate * _Nonnull)date SWIFT_WARN_UNUSED_RESULT SWIFT_DEPRECATED_MSG("Extended event data are no longer supported.");
-+ (NSDictionary * _Nonnull)extendedDataLocationForLatitude:(double)latitude longitude:(double)longitude SWIFT_WARN_UNUSED_RESULT SWIFT_DEPRECATED_MSG("Extended event data are no longer supported.");
-+ (NSDictionary * _Nonnull)extendedDataCommerceWithTransactionID:(NSString * _Nullable)transactionID affiliation:(NSString * _Nullable)affiliation revenue:(NSNumber * _Nullable)revenue shipping:(NSNumber * _Nullable)shipping tax:(NSNumber * _Nullable)tax currency:(NSString * _Nullable)currency commerceItems:(NSArray * _Nullable)commerceItems SWIFT_WARN_UNUSED_RESULT SWIFT_DEPRECATED_MSG("Extended event data are no longer supported.");
-+ (NSDictionary * _Nonnull)extendedDataCommerceItemWithItemID:(NSString * _Nullable)itemID name:(NSString * _Nullable)name category:(NSString * _Nullable)category price:(NSNumber * _Nullable)price quantity:(NSNumber * _Nullable)quantity currency:(NSString * _Nullable)currency SWIFT_WARN_UNUSED_RESULT SWIFT_DEPRECATED_MSG("Extended event data are no longer supported.");
-- (void)queryCanShowMessageCenterWithCompletion:(void (^ _Nonnull)(BOOL))completion SWIFT_DEPRECATED_MSG("This feature is not implemented and will always result in false.");
-- (void)presentMessageCenterFromViewController:(UIViewController * _Nullable)viewController;
-- (void)presentMessageCenterFromViewController:(UIViewController * _Nullable)viewController completion:(void (^ _Nullable)(BOOL))completion;
-- (void)presentMessageCenterFromViewController:(UIViewController * _Nullable)viewController withCustomData:(NSDictionary * _Nullable)customData;
-- (void)presentMessageCenterFromViewController:(UIViewController * _Nullable)viewController withCustomData:(NSDictionary * _Nullable)customData completion:(void (^ _Nullable)(BOOL))completion;
-- (void)dismissMessageCenterWithAnimated:(BOOL)animated completion:(void (^ _Nullable)(void))completion SWIFT_DEPRECATED_MSG("This feature is not implemented and this method will always result in false.");
-- (UIView * _Nonnull)unreadMessageCountAccessoryViewWithApptentiveHeart:(BOOL)apptentiveHeart SWIFT_WARN_UNUSED_RESULT SWIFT_DEPRECATED_MSG("This feature is not implemented and this property will return an empty view.");
-- (void)openAppStore SWIFT_DEPRECATED_MSG("This method is no longer implemented and will trigger an assertion failure.");
-- (void)setPushProvider:(enum ApptentivePushProvider)pushProvider deviceToken:(NSData * _Nonnull)deviceToken SWIFT_DEPRECATED_MSG("Use the 'setRemoteNotificationToken()' method instead.");
-- (BOOL)didReceveUserNotificationResponse:(UNNotificationResponse * _Nonnull)response from:(UIViewController * _Nullable)_ withCompletionHandler:(void (^ _Nonnull)(void))completionHandler SWIFT_WARN_UNUSED_RESULT SWIFT_DEPRECATED_MSG("This method is deprecated in favor of didReceveUserNotificationResponse(_:from:withCompletionHandler:).");
-@property (nonatomic, copy) NSUUID * _Nullable advertisingIdentifier SWIFT_DEPRECATED_MSG("Advertising identifier collection is not implemented.");
-@property (nonatomic, copy) NSString * _Nullable mParticleId SWIFT_DEPRECATED_MSG("mParticleId has been renamed to mParticleID.");
-- (void)removeCustomPersonDataWithKey:(NSString * _Nonnull)key;
-- (void)removeCustomDeviceDataWithKey:(NSString * _Nonnull)key;
-- (void)addCustomDeviceDataString:(NSString * _Nonnull)string withKey:(NSString * _Nonnull)key;
-- (void)addCustomDeviceDataNumber:(NSNumber * _Nonnull)number withKey:(NSString * _Nonnull)key;
-- (void)addCustomDeviceDataBool:(BOOL)boolValue withKey:(NSString * _Nonnull)key;
-- (void)addCustomPersonDataString:(NSString * _Nonnull)string withKey:(NSString * _Nonnull)key;
-- (void)addCustomPersonDataNumber:(NSNumber * _Nonnull)number withKey:(NSString * _Nonnull)key;
-- (void)addCustomPersonDataBool:(BOOL)boolValue withKey:(NSString * _Nonnull)key;
-@property (nonatomic) id _Nullable styleSheet SWIFT_DEPRECATED_MSG("Set style overrides defined in UIKit+Apptentive.swift extensions.");
-- (void)checkSDKConfiguration SWIFT_DEPRECATED_MSG("This method is not currently implemented and will trigger an assertion failure.");
-- (void)logInWithToken:(NSString * _Nonnull)token completion:(void (^ _Nonnull)(BOOL, NSError * _Nonnull))completion SWIFT_DEPRECATED_MSG("This method is not currently implemented and will trigger an assertion failure.");
-- (void)logOut SWIFT_DEPRECATED_MSG("This method is not currently implemented and will trigger an assertion failure.");
-@property (nonatomic, copy) void (^ _Nullable authenticationFailureCallback)(enum ApptentiveAuthenticationFailureReason, NSString * _Nonnull) SWIFT_DEPRECATED_MSG("Multiple users on the same device is not currently supported.");
-@property (nonatomic, copy) BOOL (^ _Nullable preInteractionCallback)(NSString * _Nonnull, NSDictionary * _Nullable) SWIFT_DEPRECATED_MSG("This feature is no longer supported.");
-- (void)updateToken:(NSString * _Nonnull)token completion:(void (^ _Nullable)(BOOL))completion SWIFT_DEPRECATED_MSG("This method is not currently implemented and will trigger an assertion failure.");
-@property (nonatomic) enum ApptentiveLogLevel logLevel;
-@end
-
-typedef SWIFT_ENUM(NSInteger, ApptentiveAuthenticationFailureReason, open) {
-/// An unknown authentication failure.
- ApptentiveAuthenticationFailureReasonUnknown = 0,
-/// An invalid JWT algorithm was used.
- ApptentiveAuthenticationFailureReasonInvalidAlgorithm = 1,
-/// A malformed JWT was encountered.
- ApptentiveAuthenticationFailureReasonMalformedToken = 2,
-/// An invalid JWT was encountered.
- ApptentiveAuthenticationFailureReasonInvalidToken = 3,
-/// A required subclaim was missing.
- ApptentiveAuthenticationFailureReasonMissingSubClaim = 4,
-/// A subclaim didn’t match the logged-in session.
- ApptentiveAuthenticationFailureReasonMismatchedSubClaim = 5,
-/// An invalid subclaim was encountered.
- ApptentiveAuthenticationFailureReasonInvalidSubClaim = 6,
-/// The JWT expired.
- ApptentiveAuthenticationFailureReasonExpiredToken = 7,
-/// The JWT was revoked.
- ApptentiveAuthenticationFailureReasonRevokedToken = 8,
-/// The Apptentive App Key was missing.
- ApptentiveAuthenticationFailureReasonMissingAppKey = 9,
-/// The Apptentive App Signature was missing
- ApptentiveAuthenticationFailureReasonMissingAppSignature = 10,
-/// In invalid combination of an Apptentive App Key and an Apptentive App Signature was found.
- ApptentiveAuthenticationFailureReasonInvalidKeySignaturePair = 11,
-};
-
-@class NSURL;
-
-SWIFT_CLASS("_TtC13ApptentiveKit23ApptentiveConfiguration")
-@interface ApptentiveConfiguration : NSObject
-/// The Apptentive App Key, obtained from your Apptentive dashboard.
-@property (nonatomic, readonly, copy) NSString * _Nonnull apptentiveKey;
-/// The Apptentive App Signature, obtained from your Apptentive dashboard.
-@property (nonatomic, readonly, copy) NSString * _Nonnull apptentiveSignature;
-/// The granularity of log messages to show.
-@property (nonatomic) enum ApptentiveLogLevel logLevel;
-/// If set, redacts potentially-sensitive information such as user data and credentials from logging.
-@property (nonatomic) BOOL shouldSanitizeLogMessages;
-/// The server URL to use for API calls. Should only be used for testing.
-@property (nonatomic, copy) NSURL * _Nullable baseURL SWIFT_DEPRECATED_MSG("This property is ignored. Use the designated initializer for 'Apptentive' to set this.");
-/// The name of the distribution that includes the Apptentive SDK. For example “Cordova”.
-@property (nonatomic, copy) NSString * _Nullable distributionName;
-/// The version of the distribution that includes the Apptentive SDK.
-@property (nonatomic, copy) NSString * _Nullable distributionVersion;
-/// The iTunes store app ID of the app (used for Apptentive rating prompt).
-@property (nonatomic, copy) NSString * _Nullable appID SWIFT_DEPRECATED_MSG("This property is ignored. An 'SKStoreReviewController' will be used for all ratings.");
-/// If set, shows a button in Surveys and Message Center that presents information about Apptentive including a link to our privacy policy.
-@property (nonatomic) BOOL showInfoButton SWIFT_DEPRECATED_MSG("This property is ignored. The info button no longer exists.");
-/// If set, will show a link to terms and conditions in the bottom bar in Surveys.
-@property (nonatomic, strong) TermsAndConditions * _Nullable surveyTermsAndConditions SWIFT_DEPRECATED_MSG("This property is ignored. Configure survey terms and conditions in the Apptentive Dashboard.");
-- (nullable instancetype)initWithApptentiveKey:(NSString * _Nonnull)apptentiveKey apptentiveSignature:(NSString * _Nonnull)apptentiveSignature OBJC_DESIGNATED_INITIALIZER;
-/// Returns an instance of the ApptentiveConfiguration
class initialized with the specified parameters.
-/// \param key The Apptentive App Key, obtained from your Apptentive dashboard.
-///
-/// \param signature The Apptentive App Signature, obtained from your Apptentive dashboard.
-///
-///
-/// returns:
-/// A configuration object initalized with the key and signature.
-+ (ApptentiveConfiguration * _Nonnull)configurationWithApptentiveKey:(NSString * _Nonnull)key apptentiveSignature:(NSString * _Nonnull)signature SWIFT_WARN_UNUSED_RESULT;
-- (nonnull instancetype)init SWIFT_UNAVAILABLE;
-+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable");
-@end
-
-typedef SWIFT_ENUM(NSUInteger, ApptentiveLogLevel, open) {
-/// Undefined.
- ApptentiveLogLevelUndefined = 0,
-/// Critical failure log messages.
- ApptentiveLogLevelCrit = 1,
-/// Error log messages.
- ApptentiveLogLevelError = 2,
-/// Warning log messages.
- ApptentiveLogLevelWarn = 3,
-/// Informational log messages.
- ApptentiveLogLevelInfo = 4,
-/// Log messages that are potentially useful for debugging.
- ApptentiveLogLevelDebug = 5,
-/// All possible log messages enabled.
- ApptentiveLogLevelVerbose = 6,
-};
-
-@class NSBundle;
-@class NSCoder;
-
-/// UINavigationController
subclass intended primarily to facilitate scoping UIAppearance
rules to Apptentive UI.
-SWIFT_CLASS("_TtC13ApptentiveKit30ApptentiveNavigationController")
-@interface ApptentiveNavigationController : UINavigationController
-@property (nonatomic, readonly) UIStatusBarStyle preferredStatusBarStyle;
-/// Increases the header height for surveys.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class) BOOL prefersLargeHeader;)
-+ (BOOL)prefersLargeHeader SWIFT_WARN_UNUSED_RESULT;
-+ (void)setPrefersLargeHeader:(BOOL)value;
-- (nonnull instancetype)initWithNavigationBarClass:(Class _Nullable)navigationBarClass toolbarClass:(Class _Nullable)toolbarClass OBJC_DESIGNATED_INITIALIZER SWIFT_AVAILABILITY(ios,introduced=5.0);
-- (nonnull instancetype)initWithRootViewController:(UIViewController * _Nonnull)rootViewController OBJC_DESIGNATED_INITIALIZER;
-- (nonnull instancetype)initWithNibName:(NSString * _Nullable)nibNameOrNil bundle:(NSBundle * _Nullable)nibBundleOrNil OBJC_DESIGNATED_INITIALIZER;
-- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)aDecoder OBJC_DESIGNATED_INITIALIZER;
-@end
-
-typedef SWIFT_ENUM(NSInteger, ApptentivePushProvider, open) {
-/// Specifies the Apptentive push provider.
- ApptentivePushProviderApptentive = 0,
-/// Specifies the Urban Airship push provider.
- ApptentivePushProviderUrbanAirship = 1,
-/// Specifies the Amazon Simple Notification Service push provider.
- ApptentivePushProviderAmazonSNS = 2,
-/// Specifies the Parse push provider.
- ApptentivePushProviderParse = 3,
-};
-
-
-@class UIFont;
-@class UIColor;
-
-/// The buttons used in TextModal (“Note”) and EnjoymentDialog (“Love Dialog”) interactions.
-SWIFT_CLASS("_TtC13ApptentiveKit12DialogButton")
-@interface DialogButton : UIButton
-/// The font to use for the button title.
-@property (nonatomic, strong) UIFont * _Nonnull titleFont;
-/// The radius of the button corners.
-/// Setting the radius to -1 will set the radius to half of the hieght of the button.
-@property (nonatomic) CGFloat cornerRadius;
-/// The width of the border of the button.
-@property (nonatomic) CGFloat borderWidth;
-/// The color of the border of the button.
-@property (nonatomic, strong) UIColor * _Nonnull borderColor;
-- (nonnull instancetype)initWithFrame:(CGRect)frame SWIFT_UNAVAILABLE;
-- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)coder SWIFT_UNAVAILABLE;
-@property (nonatomic, readonly) CGSize intrinsicContentSize;
-- (void)layoutSubviews;
-- (void)tintColorDidChange;
-- (void)didMoveToWindow;
-@end
-
-
-/// Displays the contents of the dialog used for TextModal (“Note”) and EnjoymentDialog (“Love Dialog”) interactions.
-SWIFT_CLASS("_TtC13ApptentiveKit10DialogView")
-@interface DialogView : UIView
-/// The foreground color of the title text.
-@property (nonatomic, strong) UIColor * _Nonnull titleTextColor;
-/// The foreground color of the message text in TextModal (“Note”) interactions.
-@property (nonatomic, strong) UIColor * _Nonnull messageTextColor;
-/// The font used for the title text.
-@property (nonatomic, strong) UIFont * _Nonnull titleFont;
-/// The font used for the message text in TextModal (“Note”) interactions.
-@property (nonatomic, strong) UIFont * _Nonnull messageFont;
-/// An image placed along the top edge of the dialog.
-/// The image will be scaled to the width of the dialog, and the height will be determined by the aspect ratio of the image.
-@property (nonatomic, strong) UIImage * _Nullable headerImage;
-/// The radius of the corners of the dialog.
-@property (nonatomic) CGFloat cornerRadius;
-/// The spacing between adjacent buttons.
-@property (nonatomic) CGFloat buttonSpacing;
-/// The distance by which the group of buttons is inset from the edges of the dialog.
-@property (nonatomic) UIEdgeInsets buttonInset;
-/// Whether the separators between buttons are hidden.
-@property (nonatomic) BOOL separatorsAreHidden;
-/// The color of the separators.
-@property (nonatomic, strong) UIColor * _Nonnull separatorColor;
-- (nonnull instancetype)initWithFrame:(CGRect)frame SWIFT_UNAVAILABLE;
-- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)coder SWIFT_UNAVAILABLE;
-- (void)didMoveToWindow;
-- (void)layoutSubviews;
-@end
-
-
-/// A class used to display TextModal (“Note”) and EnjoymentDialog (“Love Dialog”) interactions.
-SWIFT_CLASS("_TtC13ApptentiveKit20DialogViewController")
-@interface DialogViewController : UIViewController
-- (void)viewDidLoad;
-- (nullable instancetype)initWithCoder:(NSCoder * _Nonnull)coder SWIFT_UNAVAILABLE;
-- (void)viewDidAppear:(BOOL)animated;
-- (nonnull instancetype)initWithNibName:(NSString * _Nullable)nibNameOrNil bundle:(NSBundle * _Nullable)nibBundleOrNil SWIFT_UNAVAILABLE;
-@end
-
-
-/// A button used to dismiss a TextModal (“Note”) interaction.
-SWIFT_CLASS("_TtC13ApptentiveKit13DismissButton")
-@interface DismissButton : DialogButton
-@end
-
-
-/// A button used to launch a subsequent interaction from a TextModal (“Note”) interaction.
-SWIFT_CLASS("_TtC13ApptentiveKit17InteractionButton")
-@interface InteractionButton : DialogButton
-@end
-
-
-/// A button used to indicate negative sentiment in the EnjoymentDialog (“Love Dialog”) interaction.
-SWIFT_CLASS("_TtC13ApptentiveKit8NoButton")
-@interface NoButton : DialogButton
-@end
-
-
-SWIFT_CLASS("_TtC13ApptentiveKit18TermsAndConditions") SWIFT_DEPRECATED_MSG("This class is provided for compatibility but this feature is not implemented.")
-@interface TermsAndConditions : NSObject
-- (nonnull instancetype)init SWIFT_UNAVAILABLE;
-+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable");
-@end
-
-
-@interface UIBarButtonItem (SWIFT_EXTENSION(ApptentiveKit))
-/// The bar button item to use for closing Apptentive UI.
-/// Defaults to the system cancel button on iOS 12 and the system close button on iOS 13 and later.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIBarButtonItem * _Nonnull apptentiveClose;)
-+ (UIBarButtonItem * _Nonnull)apptentiveClose SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveClose:(UIBarButtonItem * _Nonnull)value;
-/// The bar button item to use for editing the profile in message center.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIBarButtonItem * _Nonnull apptentiveProfileEdit;)
-+ (UIBarButtonItem * _Nonnull)apptentiveProfileEdit SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveProfileEdit:(UIBarButtonItem * _Nonnull)value;
-@end
-
-
-@interface UIButton (SWIFT_EXTENSION(ApptentiveKit))
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly) CGFloat apptentivePillRadius;)
-+ (CGFloat)apptentivePillRadius SWIFT_WARN_UNUSED_RESULT;
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class) CGFloat apptentiveCornerRadius;)
-+ (CGFloat)apptentiveCornerRadius SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveCornerRadius:(CGFloat)newValue;
-@end
-
-
-
-@interface UIColor (SWIFT_EXTENSION(ApptentiveKit))
-/// The color to use for the background in text inputs for message center.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIColor * _Nonnull apptentiveMessageCenterTextInputBackground;)
-+ (UIColor * _Nonnull)apptentiveMessageCenterTextInputBackground SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveMessageCenterTextInputBackground:(UIColor * _Nonnull)value;
-/// The placeholder color to use for text inputs for message center.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIColor * _Nonnull apptentiveMessageCenterTextInputPlaceholder;)
-+ (UIColor * _Nonnull)apptentiveMessageCenterTextInputPlaceholder SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveMessageCenterTextInputPlaceholder:(UIColor * _Nonnull)value;
-/// The placeholder color to use for text inputs for message center.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIColor * _Nonnull apptentiveMessageTextViewPlaceholder SWIFT_DEPRECATED_MSG("This property has been renamed to 'apptentiveMessageTextInputPlaceholder'.");)
-+ (UIColor * _Nonnull)apptentiveMessageTextViewPlaceholder SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveMessageTextViewPlaceholder:(UIColor * _Nonnull)newValue;
-/// The text color to use for all text inputs in message center.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIColor * _Nonnull apptentiveMessageCenterTextInput;)
-+ (UIColor * _Nonnull)apptentiveMessageCenterTextInput SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveMessageCenterTextInput:(UIColor * _Nonnull)value;
-/// The tint color for text inputs for surveys.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIColor * _Nonnull apptentivetextInputTint;)
-+ (UIColor * _Nonnull)apptentivetextInputTint SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentivetextInputTint:(UIColor * _Nonnull)value;
-/// The border color to use for the message text view.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIColor * _Nonnull apptentiveMessageCenterTextInputBorder;)
-+ (UIColor * _Nonnull)apptentiveMessageCenterTextInputBorder SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveMessageCenterTextInputBorder:(UIColor * _Nonnull)value;
-/// The border color to use for the message text view.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIColor * _Nonnull apptentiveMessageCenterTextViewBorder SWIFT_DEPRECATED_MSG("This property has been renamed to 'apptentiveMessageCenterTextInputBorder'.");)
-+ (UIColor * _Nonnull)apptentiveMessageCenterTextViewBorder SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveMessageCenterTextViewBorder:(UIColor * _Nonnull)newValue;
-/// The color to use for the attachment button for the compose view for message center.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIColor * _Nonnull apptentiveMessageCenterAttachmentButton;)
-+ (UIColor * _Nonnull)apptentiveMessageCenterAttachmentButton SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveMessageCenterAttachmentButton:(UIColor * _Nonnull)value;
-/// The color to use for the text view placeholder for the compose view for message center.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIColor * _Nonnull apptentiveMessageTextInputPlaceholder;)
-+ (UIColor * _Nonnull)apptentiveMessageTextInputPlaceholder SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveMessageTextInputPlaceholder:(UIColor * _Nonnull)value;
-/// The color to use for the status message in message center.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIColor * _Nonnull apptentiveMessageCenterStatus;)
-+ (UIColor * _Nonnull)apptentiveMessageCenterStatus SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveMessageCenterStatus:(UIColor * _Nonnull)value;
-/// The color to use for the greeting body on the greeting header view for message center.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIColor * _Nonnull apptentiveMessageCenterGreetingBody;)
-+ (UIColor * _Nonnull)apptentiveMessageCenterGreetingBody SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveMessageCenterGreetingBody:(UIColor * _Nonnull)value;
-/// The color to use for the greeting title on the greeting header view for message center.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIColor * _Nonnull apptentiveMessageCenterGreetingTitle;)
-+ (UIColor * _Nonnull)apptentiveMessageCenterGreetingTitle SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveMessageCenterGreetingTitle:(UIColor * _Nonnull)value;
-/// The color to use for the message bubble view for inbound messages.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIColor * _Nonnull apptentiveMessageBubbleInbound;)
-+ (UIColor * _Nonnull)apptentiveMessageBubbleInbound SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveMessageBubbleInbound:(UIColor * _Nonnull)value;
-/// The color to use for the message bubble view for outbound messages.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIColor * _Nonnull apptentiveMessageBubbleOutbound;)
-+ (UIColor * _Nonnull)apptentiveMessageBubbleOutbound SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveMessageBubbleOutbound:(UIColor * _Nonnull)value;
-/// The color to use for message labels for the inbound message body.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIColor * _Nonnull apptentiveMessageLabelInbound;)
-+ (UIColor * _Nonnull)apptentiveMessageLabelInbound SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveMessageLabelInbound:(UIColor * _Nonnull)value;
-/// The color to use for message labels for the outbound message body.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIColor * _Nonnull apptentiveMessageLabelOutbound;)
-+ (UIColor * _Nonnull)apptentiveMessageLabelOutbound SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveMessageLabelOutbound:(UIColor * _Nonnull)value;
-/// The color to use for labels in a non-error state.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIColor * _Nonnull apptentiveQuestionLabel;)
-+ (UIColor * _Nonnull)apptentiveQuestionLabel SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveQuestionLabel:(UIColor * _Nonnull)value;
-/// The color to use for instruction labels.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIColor * _Nonnull apptentiveInstructionsLabel;)
-+ (UIColor * _Nonnull)apptentiveInstructionsLabel SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveInstructionsLabel:(UIColor * _Nonnull)value;
-/// The color to use for choice labels.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIColor * _Nonnull apptentiveChoiceLabel;)
-+ (UIColor * _Nonnull)apptentiveChoiceLabel SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveChoiceLabel:(UIColor * _Nonnull)value;
-/// The color to use for UI elements to indicate an error state.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIColor * _Nonnull apptentiveError;)
-+ (UIColor * _Nonnull)apptentiveError SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveError:(UIColor * _Nonnull)value;
-/// The color to use for labels of secondary prominence.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIColor * _Nonnull apptentiveSecondaryLabel;)
-+ (UIColor * _Nonnull)apptentiveSecondaryLabel SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveSecondaryLabel:(UIColor * _Nonnull)value;
-/// The border color to use for the segmented control for range surveys.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIColor * _Nonnull apptentiveRangeControlBorder;)
-+ (UIColor * _Nonnull)apptentiveRangeControlBorder SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveRangeControlBorder:(UIColor * _Nonnull)value;
-/// The color to use for the survey introduction text.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIColor * _Nonnull apptentiveSurveyIntroduction;)
-+ (UIColor * _Nonnull)apptentiveSurveyIntroduction SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveSurveyIntroduction:(UIColor * _Nonnull)value;
-/// The color to use for the borders of text fields and text views.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIColor * _Nonnull apptentiveTextInputBorder;)
-+ (UIColor * _Nonnull)apptentiveTextInputBorder SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveTextInputBorder:(UIColor * _Nonnull)value;
-/// The color to use for text fields and text views.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIColor * _Nonnull apptentiveTextInputBackground;)
-+ (UIColor * _Nonnull)apptentiveTextInputBackground SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveTextInputBackground:(UIColor * _Nonnull)value;
-/// The color to use for text within text fields and text views.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIColor * _Nonnull apptentiveTextInput;)
-+ (UIColor * _Nonnull)apptentiveTextInput SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveTextInput:(UIColor * _Nonnull)value;
-/// The color to use for the placeholder text within text fields and text views.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIColor * _Nonnull apptentiveTextInputPlaceholder;)
-+ (UIColor * _Nonnull)apptentiveTextInputPlaceholder SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveTextInputPlaceholder:(UIColor * _Nonnull)value;
-/// The color used for min and max labels for the range survey.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIColor * _Nonnull apptentiveMinMaxLabel;)
-+ (UIColor * _Nonnull)apptentiveMinMaxLabel SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveMinMaxLabel:(UIColor * _Nonnull)value;
-/// The color used for the background of the entire survey.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIColor * _Nonnull apptentiveGroupedBackground;)
-+ (UIColor * _Nonnull)apptentiveGroupedBackground SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveGroupedBackground:(UIColor * _Nonnull)value;
-/// The color used for the cell where the survey question is located.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIColor * _Nonnull apptentiveSecondaryGroupedBackground;)
-+ (UIColor * _Nonnull)apptentiveSecondaryGroupedBackground SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveSecondaryGroupedBackground:(UIColor * _Nonnull)value;
-/// The color to use for separators in e.g. table views.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIColor * _Nonnull apptentiveSeparator;)
-+ (UIColor * _Nonnull)apptentiveSeparator SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveSeparator:(UIColor * _Nonnull)value;
-/// The color to use for images in a selected state for surveys.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIColor * _Nonnull apptentiveImageSelected;)
-+ (UIColor * _Nonnull)apptentiveImageSelected SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveImageSelected:(UIColor * _Nonnull)value;
-/// The color to use for images in a non-selected state for surveys.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIColor * _Nonnull apptentiveImageNotSelected;)
-+ (UIColor * _Nonnull)apptentiveImageNotSelected SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveImageNotSelected:(UIColor * _Nonnull)value;
-/// The background color to use for the submit button on surveys.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIColor * _Nonnull apptentiveSubmitButton;)
-+ (UIColor * _Nonnull)apptentiveSubmitButton SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveSubmitButton:(UIColor * _Nonnull)value;
-/// The background color to use for the footer which contains the terms and conditions for branched surveys.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIColor * _Nonnull apptentiveBranchedSurveyFooter;)
-+ (UIColor * _Nonnull)apptentiveBranchedSurveyFooter SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveBranchedSurveyFooter:(UIColor * _Nonnull)value;
-/// The color to use for the survey footer label (Thank You text).
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIColor * _Nonnull apptentiveSubmitStatusLabel;)
-+ (UIColor * _Nonnull)apptentiveSubmitStatusLabel SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveSubmitStatusLabel:(UIColor * _Nonnull)value;
-/// The color to use for the terms of service label.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIColor * _Nonnull apptentiveTermsOfServiceLabel;)
-+ (UIColor * _Nonnull)apptentiveTermsOfServiceLabel SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveTermsOfServiceLabel:(UIColor * _Nonnull)value;
-/// The color to use for the submit button text color.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIColor * _Nonnull apptentiveSubmitButtonTitle;)
-+ (UIColor * _Nonnull)apptentiveSubmitButtonTitle SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveSubmitButtonTitle:(UIColor * _Nonnull)value;
-/// The color to use for submit button border.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIColor * _Nonnull apptentiveSubmitButtonBorder;)
-+ (UIColor * _Nonnull)apptentiveSubmitButtonBorder SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveSubmitButtonBorder:(UIColor * _Nonnull)value;
-/// The color to use for the space between questions.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIColor * _Nonnull apptentiveQuestionSeparator;)
-+ (UIColor * _Nonnull)apptentiveQuestionSeparator SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveQuestionSeparator:(UIColor * _Nonnull)value;
-/// The color to use for the background of Message Center.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIColor * _Nonnull apptentiveMessageCenterBackground;)
-+ (UIColor * _Nonnull)apptentiveMessageCenterBackground SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveMessageCenterBackground:(UIColor * _Nonnull)value;
-/// The color to use for the button that deletes the attachment from the draft message.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIColor * _Nonnull apptentiveMessageCenterAttachmentDeleteButton;)
-+ (UIColor * _Nonnull)apptentiveMessageCenterAttachmentDeleteButton SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveMessageCenterAttachmentDeleteButton:(UIColor * _Nonnull)value;
-/// The color to use for the compose box for Message Center.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIColor * _Nonnull apptentiveMessageCenterComposeBoxBackground;)
-+ (UIColor * _Nonnull)apptentiveMessageCenterComposeBoxBackground SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveMessageCenterComposeBoxBackground:(UIColor * _Nonnull)value;
-/// The color to use for the compose box separator.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIColor * _Nonnull apptentiveMessageCenterComposeBoxSeparator;)
-+ (UIColor * _Nonnull)apptentiveMessageCenterComposeBoxSeparator SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveMessageCenterComposeBoxSeparator:(UIColor * _Nonnull)value;
-/// The color to use for text input borders when selected.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIColor * _Nonnull apptentiveTextInputBorderSelected;)
-+ (UIColor * _Nonnull)apptentiveTextInputBorderSelected SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveTextInputBorderSelected:(UIColor * _Nonnull)value;
-/// The text color used for the disclaimer text.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIColor * _Nonnull apptentiveDisclaimerLabel;)
-+ (UIColor * _Nonnull)apptentiveDisclaimerLabel SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveDisclaimerLabel:(UIColor * _Nonnull)value;
-@end
-
-
-@interface UIFont (SWIFT_EXTENSION(ApptentiveKit))
-/// The font to use for placeholder for text inputs in message center.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIFont * _Nonnull apptentiveMessageCenterTextInputPlaceholder;)
-+ (UIFont * _Nonnull)apptentiveMessageCenterTextInputPlaceholder SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveMessageCenterTextInputPlaceholder:(UIFont * _Nonnull)value;
-/// The font to use for text inputs in message menter.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIFont * _Nonnull apptentiveMessageCenterTextInput;)
-+ (UIFont * _Nonnull)apptentiveMessageCenterTextInput SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveMessageCenterTextInput:(UIFont * _Nonnull)value;
-/// The font to use for placeholder text for text inputs in surveys.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIFont * _Nonnull apptentiveTextInputPlaceholder;)
-+ (UIFont * _Nonnull)apptentiveTextInputPlaceholder SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveTextInputPlaceholder:(UIFont * _Nonnull)value;
-/// The font to use for the greeting title for message center.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIFont * _Nonnull apptentiveMessageCenterStatus;)
-+ (UIFont * _Nonnull)apptentiveMessageCenterStatus SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveMessageCenterStatus:(UIFont * _Nonnull)value;
-/// The font to use for the greeting title for message center.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIFont * _Nonnull apptentiveMessageCenterGreetingTitle;)
-+ (UIFont * _Nonnull)apptentiveMessageCenterGreetingTitle SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveMessageCenterGreetingTitle:(UIFont * _Nonnull)value;
-/// The font to use for the greeting body for message center.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIFont * _Nonnull apptentiveMessageCenterGreetingBody;)
-+ (UIFont * _Nonnull)apptentiveMessageCenterGreetingBody SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveMessageCenterGreetingBody:(UIFont * _Nonnull)value;
-/// The font to use for attachment placeholder file extension labels.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIFont * _Nonnull apptentiveMessageCenterAttachmentLabel;)
-+ (UIFont * _Nonnull)apptentiveMessageCenterAttachmentLabel SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveMessageCenterAttachmentLabel:(UIFont * _Nonnull)value;
-/// The font used for all survey question labels.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIFont * _Nonnull apptentiveQuestionLabel;)
-+ (UIFont * _Nonnull)apptentiveQuestionLabel SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveQuestionLabel:(UIFont * _Nonnull)value;
-/// The font used for the terms of service.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIFont * _Nonnull apptentiveTermsOfServiceLabel;)
-+ (UIFont * _Nonnull)apptentiveTermsOfServiceLabel SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveTermsOfServiceLabel:(UIFont * _Nonnull)value;
-/// The font used for all survey answer choice labels.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIFont * _Nonnull apptentiveChoiceLabel;)
-+ (UIFont * _Nonnull)apptentiveChoiceLabel SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveChoiceLabel:(UIFont * _Nonnull)value;
-/// The font used for the message body in message center.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIFont * _Nonnull apptentiveMessageLabel;)
-+ (UIFont * _Nonnull)apptentiveMessageLabel SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveMessageLabel:(UIFont * _Nonnull)value;
-/// The font used for the min and max labels for the range survey.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIFont * _Nonnull apptentiveMinMaxLabel;)
-+ (UIFont * _Nonnull)apptentiveMinMaxLabel SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveMinMaxLabel:(UIFont * _Nonnull)value;
-/// The font used for the sender label in message center.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIFont * _Nonnull apptentiveSenderLabel;)
-+ (UIFont * _Nonnull)apptentiveSenderLabel SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveSenderLabel:(UIFont * _Nonnull)value;
-/// The font used for the message date label in message center.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIFont * _Nonnull apptentiveMessageDateLabel;)
-+ (UIFont * _Nonnull)apptentiveMessageDateLabel SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveMessageDateLabel:(UIFont * _Nonnull)value;
-/// The font used for the instructions label for surveys.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIFont * _Nonnull apptentiveInstructionsLabel;)
-+ (UIFont * _Nonnull)apptentiveInstructionsLabel SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveInstructionsLabel:(UIFont * _Nonnull)value;
-/// The font used for the survey introduction label.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIFont * _Nonnull apptentiveSurveyIntroductionLabel;)
-+ (UIFont * _Nonnull)apptentiveSurveyIntroductionLabel SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveSurveyIntroductionLabel:(UIFont * _Nonnull)value;
-/// The font used for the survey footer label (Thank You text).
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIFont * _Nonnull apptentiveSubmitStatusLabel;)
-+ (UIFont * _Nonnull)apptentiveSubmitStatusLabel SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveSubmitStatusLabel:(UIFont * _Nonnull)value;
-/// The font used for the disclaimer text.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIFont * _Nonnull apptentiveDisclaimerLabel;)
-+ (UIFont * _Nonnull)apptentiveDisclaimerLabel SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveDisclaimerLabel:(UIFont * _Nonnull)value;
-/// The font used for the submit button at the end of surveys.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIFont * _Nonnull apptentiveSubmitButtonTitle;)
-+ (UIFont * _Nonnull)apptentiveSubmitButtonTitle SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveSubmitButtonTitle:(UIFont * _Nonnull)value;
-/// The font used for the multi- and single-line text inputs in surveys.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIFont * _Nonnull apptentiveTextInput;)
-+ (UIFont * _Nonnull)apptentiveTextInput SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveTextInput:(UIFont * _Nonnull)value;
-@end
-
-
-@interface UIImage (SWIFT_EXTENSION(ApptentiveKit))
-/// The image to use for the add attachment button for message center.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIImage * _Nullable apptentiveMessageAttachmentButton;)
-+ (UIImage * _Nullable)apptentiveMessageAttachmentButton SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveMessageAttachmentButton:(UIImage * _Nullable)value;
-/// The image to use for the button that sends messages for message center.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIImage * _Nullable apptentiveMessageSendButton;)
-+ (UIImage * _Nullable)apptentiveMessageSendButton SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveMessageSendButton:(UIImage * _Nullable)value;
-/// The image to use as the chat bubble for outbound messages.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIImage * _Nullable apptentiveSentMessageBubble;)
-+ (UIImage * _Nullable)apptentiveSentMessageBubble SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveSentMessageBubble:(UIImage * _Nullable)value;
-/// The image to use as the chat bubble for inbound messages.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIImage * _Nullable apptentiveReceivedMessageBubble;)
-+ (UIImage * _Nullable)apptentiveReceivedMessageBubble SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveReceivedMessageBubble:(UIImage * _Nullable)value;
-/// The image to use for attachment placeholders in messages and the composer.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIImage * _Nullable apptentiveAttachmentPlaceholder;)
-+ (UIImage * _Nullable)apptentiveAttachmentPlaceholder SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveAttachmentPlaceholder:(UIImage * _Nullable)value;
-/// The image to use for the attachment delete button.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIImage * _Nullable apptentiveAttachmentRemoveButton;)
-+ (UIImage * _Nullable)apptentiveAttachmentRemoveButton SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveAttachmentRemoveButton:(UIImage * _Nullable)value;
-/// The image to use for the top navigation bar for surveys.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIImage * _Nullable apptentiveHeaderLogo;)
-+ (UIImage * _Nullable)apptentiveHeaderLogo SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveHeaderLogo:(UIImage * _Nullable)value;
-/// The image to use next to a radio button question choice.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIImage * _Nullable apptentiveRadioButton;)
-+ (UIImage * _Nullable)apptentiveRadioButton SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveRadioButton:(UIImage * _Nullable)value;
-/// The image to use next to a checkbox question choice.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIImage * _Nullable apptentiveCheckbox;)
-+ (UIImage * _Nullable)apptentiveCheckbox SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveCheckbox:(UIImage * _Nullable)value;
-/// The image to use next to a selected radio button question choice.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIImage * _Nullable apptentiveRadioButtonSelected;)
-+ (UIImage * _Nullable)apptentiveRadioButtonSelected SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveRadioButtonSelected:(UIImage * _Nullable)value;
-/// The image to use next to a selected checkbox question choice.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, strong) UIImage * _Nullable apptentiveCheckboxSelected;)
-+ (UIImage * _Nullable)apptentiveCheckboxSelected SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveCheckboxSelected:(UIImage * _Nullable)value;
-@end
-
-
-@interface UITableView (SWIFT_EXTENSION(ApptentiveKit))
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class) NSInteger apptentiveStyle;)
-+ (NSInteger)apptentiveStyle SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveStyle:(NSInteger)newValue;
-@end
-
-
-enum ToolbarMode : NSInteger;
-
-@interface UIToolbar (SWIFT_EXTENSION(ApptentiveKit))
-/// Determines when to show a toolbar in Apptentive view controllers.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class) enum ToolbarMode apptentiveMode;)
-+ (enum ToolbarMode)apptentiveMode SWIFT_WARN_UNUSED_RESULT;
-+ (void)setApptentiveMode:(enum ToolbarMode)value;
-@end
-
-/// The circumstances under which to show a toolbar.
-typedef SWIFT_ENUM(NSInteger, ToolbarMode, open) {
-/// Always show the toolbar.
- ToolbarModeAlwaysShown = 0,
-/// Show the toolbar only when there will be UI present in it.
- ToolbarModeHiddenWhenEmpty = 1,
-};
-
-
-@interface UIViewController (SWIFT_EXTENSION(ApptentiveKit))
-@property (nonatomic) UIModalPresentationStyle apptentiveModalPresentationStyle;
-@end
-
-
-
-
-/// A button used to indicate positive sentiment in the EnjoymentDialog (“Love Dialog”) interaction.
-SWIFT_CLASS("_TtC13ApptentiveKit9YesButton")
-@interface YesButton : DialogButton
-@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/src/ios/ApptentiveKit.xcframework/ios-arm64_x86_64-simulator/ApptentiveKit.framework/Info.plist b/src/ios/ApptentiveKit.xcframework/ios-arm64_x86_64-simulator/ApptentiveKit.framework/Info.plist
deleted file mode 100644
index 8eccf2e..0000000
Binary files a/src/ios/ApptentiveKit.xcframework/ios-arm64_x86_64-simulator/ApptentiveKit.framework/Info.plist and /dev/null differ
diff --git a/src/ios/ApptentiveKit.xcframework/ios-arm64_x86_64-simulator/ApptentiveKit.framework/Modules/ApptentiveKit.swiftmodule/arm64-apple-ios-simulator.abi.json b/src/ios/ApptentiveKit.xcframework/ios-arm64_x86_64-simulator/ApptentiveKit.framework/Modules/ApptentiveKit.swiftmodule/arm64-apple-ios-simulator.abi.json
deleted file mode 100644
index 5827519..0000000
--- a/src/ios/ApptentiveKit.xcframework/ios-arm64_x86_64-simulator/ApptentiveKit.framework/Modules/ApptentiveKit.swiftmodule/arm64-apple-ios-simulator.abi.json
+++ /dev/null
@@ -1,50876 +0,0 @@
-{
- "ABIRoot": {
- "kind": "Root",
- "name": "TopLevel",
- "printedName": "TopLevel",
- "children": [
- {
- "kind": "Import",
- "name": "StoreKit",
- "printedName": "StoreKit",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "UIKit",
- "printedName": "UIKit",
- "declKind": "Import",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "UIKit",
- "printedName": "UIKit",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "UIKit",
- "printedName": "UIKit",
- "declKind": "Import",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "UIKit",
- "printedName": "UIKit",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "UIKit",
- "printedName": "UIKit",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "DialogViewController",
- "printedName": "DialogViewController",
- "children": [
- {
- "kind": "Function",
- "name": "viewDidLoad",
- "printedName": "viewDidLoad()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Func",
- "usr": "c:@M@ApptentiveKit@objc(cs)DialogViewController(im)viewDidLoad",
- "mangledName": "$s13ApptentiveKit20DialogViewControllerC11viewDidLoadyyF",
- "moduleName": "ApptentiveKit",
- "overriding": true,
- "objc_name": "viewDidLoad",
- "declAttributes": [
- "Dynamic",
- "ObjC",
- "Custom",
- "Override",
- "AccessControl",
- "RawDocComment"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "viewDidAppear",
- "printedName": "viewDidAppear(_:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ],
- "declKind": "Func",
- "usr": "c:@M@ApptentiveKit@objc(cs)DialogViewController(im)viewDidAppear:",
- "mangledName": "$s13ApptentiveKit20DialogViewControllerC13viewDidAppearyySbF",
- "moduleName": "ApptentiveKit",
- "overriding": true,
- "objc_name": "viewDidAppear:",
- "declAttributes": [
- "Dynamic",
- "ObjC",
- "Custom",
- "Override",
- "AccessControl"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "dismiss",
- "printedName": "dismiss()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit20DialogViewControllerC7dismissyyF",
- "mangledName": "$s13ApptentiveKit20DialogViewControllerC7dismissyyF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Custom",
- "AccessControl",
- "RawDocComment"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(nibName:bundle:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "DialogViewController",
- "printedName": "ApptentiveKit.DialogViewController",
- "usr": "c:@M@ApptentiveKit@objc(cs)DialogViewController"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Foundation.Bundle?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bundle",
- "printedName": "Foundation.Bundle",
- "usr": "c:objc(cs)NSBundle"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Constructor",
- "usr": "c:@M@ApptentiveKit@objc(cs)DialogViewController(im)initWithNibName:bundle:",
- "mangledName": "$s13ApptentiveKit20DialogViewControllerC7nibName6bundleACSSSg_So8NSBundleCSgtcfc",
- "moduleName": "ApptentiveKit",
- "overriding": true,
- "implicit": true,
- "objc_name": "initWithNibName:bundle:",
- "declAttributes": [
- "Dynamic",
- "ObjC",
- "Custom",
- "Override"
- ],
- "init_kind": "Designated"
- }
- ],
- "declKind": "Class",
- "usr": "c:@M@ApptentiveKit@objc(cs)DialogViewController",
- "mangledName": "$s13ApptentiveKit20DialogViewControllerC",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Custom",
- "AccessControl",
- "RawDocComment",
- "ObjC"
- ],
- "superclassUsr": "c:objc(cs)UIViewController",
- "hasMissingDesignatedInitializers": true,
- "superclassNames": [
- "UIKit.UIViewController",
- "UIKit.UIResponder",
- "ObjectiveC.NSObject"
- ],
- "conformances": [
- {
- "kind": "Conformance",
- "name": "DialogViewModelDelegate",
- "printedName": "DialogViewModelDelegate",
- "usr": "s:13ApptentiveKit23DialogViewModelDelegateP",
- "mangledName": "$s13ApptentiveKit23DialogViewModelDelegateP"
- },
- {
- "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": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "UIKit",
- "printedName": "UIKit",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "QuickLook",
- "printedName": "QuickLook",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "UIKit",
- "printedName": "UIKit",
- "declKind": "Import",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "Import",
- "name": "UIKit",
- "printedName": "UIKit",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "UIKit",
- "printedName": "UIKit",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "UIKit",
- "printedName": "UIKit",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "UIKit",
- "printedName": "UIKit",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "OSLog",
- "printedName": "OSLog",
- "declKind": "Import",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "TypeDecl",
- "name": "ApptentiveLogger",
- "printedName": "ApptentiveLogger",
- "children": [
- {
- "kind": "Var",
- "name": "shouldHideSensitiveLogs",
- "printedName": "shouldHideSensitiveLogs",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit0A6LoggerV23shouldHideSensitiveLogsSbvpZ",
- "mangledName": "$s13ApptentiveKit0A6LoggerV23shouldHideSensitiveLogsSbvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A6LoggerV23shouldHideSensitiveLogsSbvgZ",
- "mangledName": "$s13ApptentiveKit0A6LoggerV23shouldHideSensitiveLogsSbvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "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": "s:13ApptentiveKit0A6LoggerV23shouldHideSensitiveLogsSbvsZ",
- "mangledName": "$s13ApptentiveKit0A6LoggerV23shouldHideSensitiveLogsSbvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A6LoggerV23shouldHideSensitiveLogsSbvMZ",
- "mangledName": "$s13ApptentiveKit0A6LoggerV23shouldHideSensitiveLogsSbvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "logLevel",
- "printedName": "logLevel",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "LogLevel",
- "printedName": "ApptentiveKit.LogLevel",
- "usr": "s:13ApptentiveKit8LogLevelO"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit0A6LoggerV8logLevelAA03LogE0Ovp",
- "mangledName": "$s13ApptentiveKit0A6LoggerV8logLevelAA03LogE0Ovp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "LogLevel",
- "printedName": "ApptentiveKit.LogLevel",
- "usr": "s:13ApptentiveKit8LogLevelO"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A6LoggerV8logLevelAA03LogE0Ovg",
- "mangledName": "$s13ApptentiveKit0A6LoggerV8logLevelAA03LogE0Ovg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "LogLevel",
- "printedName": "ApptentiveKit.LogLevel",
- "usr": "s:13ApptentiveKit8LogLevelO"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A6LoggerV8logLevelAA03LogE0Ovs",
- "mangledName": "$s13ApptentiveKit0A6LoggerV8logLevelAA03LogE0Ovs",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A6LoggerV8logLevelAA03LogE0OvM",
- "mangledName": "$s13ApptentiveKit0A6LoggerV8logLevelAA03LogE0OvM",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "default",
- "printedName": "default",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveLogger",
- "printedName": "ApptentiveKit.ApptentiveLogger",
- "usr": "s:13ApptentiveKit0A6LoggerV"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit0A6LoggerV7defaultACvpZ",
- "mangledName": "$s13ApptentiveKit0A6LoggerV7defaultACvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveLogger",
- "printedName": "ApptentiveKit.ApptentiveLogger",
- "usr": "s:13ApptentiveKit0A6LoggerV"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A6LoggerV7defaultACvgZ",
- "mangledName": "$s13ApptentiveKit0A6LoggerV7defaultACvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "ApptentiveLogger",
- "printedName": "ApptentiveKit.ApptentiveLogger",
- "usr": "s:13ApptentiveKit0A6LoggerV"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A6LoggerV7defaultACvsZ",
- "mangledName": "$s13ApptentiveKit0A6LoggerV7defaultACvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A6LoggerV7defaultACvMZ",
- "mangledName": "$s13ApptentiveKit0A6LoggerV7defaultACvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "engagement",
- "printedName": "engagement",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveLogger",
- "printedName": "ApptentiveKit.ApptentiveLogger",
- "usr": "s:13ApptentiveKit0A6LoggerV"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit0A6LoggerV10engagementACvpZ",
- "mangledName": "$s13ApptentiveKit0A6LoggerV10engagementACvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveLogger",
- "printedName": "ApptentiveKit.ApptentiveLogger",
- "usr": "s:13ApptentiveKit0A6LoggerV"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A6LoggerV10engagementACvgZ",
- "mangledName": "$s13ApptentiveKit0A6LoggerV10engagementACvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "ApptentiveLogger",
- "printedName": "ApptentiveKit.ApptentiveLogger",
- "usr": "s:13ApptentiveKit0A6LoggerV"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A6LoggerV10engagementACvsZ",
- "mangledName": "$s13ApptentiveKit0A6LoggerV10engagementACvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A6LoggerV10engagementACvMZ",
- "mangledName": "$s13ApptentiveKit0A6LoggerV10engagementACvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "interaction",
- "printedName": "interaction",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveLogger",
- "printedName": "ApptentiveKit.ApptentiveLogger",
- "usr": "s:13ApptentiveKit0A6LoggerV"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit0A6LoggerV11interactionACvpZ",
- "mangledName": "$s13ApptentiveKit0A6LoggerV11interactionACvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveLogger",
- "printedName": "ApptentiveKit.ApptentiveLogger",
- "usr": "s:13ApptentiveKit0A6LoggerV"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A6LoggerV11interactionACvgZ",
- "mangledName": "$s13ApptentiveKit0A6LoggerV11interactionACvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "ApptentiveLogger",
- "printedName": "ApptentiveKit.ApptentiveLogger",
- "usr": "s:13ApptentiveKit0A6LoggerV"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A6LoggerV11interactionACvsZ",
- "mangledName": "$s13ApptentiveKit0A6LoggerV11interactionACvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A6LoggerV11interactionACvMZ",
- "mangledName": "$s13ApptentiveKit0A6LoggerV11interactionACvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "network",
- "printedName": "network",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveLogger",
- "printedName": "ApptentiveKit.ApptentiveLogger",
- "usr": "s:13ApptentiveKit0A6LoggerV"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit0A6LoggerV7networkACvpZ",
- "mangledName": "$s13ApptentiveKit0A6LoggerV7networkACvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveLogger",
- "printedName": "ApptentiveKit.ApptentiveLogger",
- "usr": "s:13ApptentiveKit0A6LoggerV"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A6LoggerV7networkACvgZ",
- "mangledName": "$s13ApptentiveKit0A6LoggerV7networkACvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "ApptentiveLogger",
- "printedName": "ApptentiveKit.ApptentiveLogger",
- "usr": "s:13ApptentiveKit0A6LoggerV"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A6LoggerV7networkACvsZ",
- "mangledName": "$s13ApptentiveKit0A6LoggerV7networkACvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A6LoggerV7networkACvMZ",
- "mangledName": "$s13ApptentiveKit0A6LoggerV7networkACvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "payload",
- "printedName": "payload",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveLogger",
- "printedName": "ApptentiveKit.ApptentiveLogger",
- "usr": "s:13ApptentiveKit0A6LoggerV"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit0A6LoggerV7payloadACvpZ",
- "mangledName": "$s13ApptentiveKit0A6LoggerV7payloadACvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveLogger",
- "printedName": "ApptentiveKit.ApptentiveLogger",
- "usr": "s:13ApptentiveKit0A6LoggerV"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A6LoggerV7payloadACvgZ",
- "mangledName": "$s13ApptentiveKit0A6LoggerV7payloadACvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "ApptentiveLogger",
- "printedName": "ApptentiveKit.ApptentiveLogger",
- "usr": "s:13ApptentiveKit0A6LoggerV"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A6LoggerV7payloadACvsZ",
- "mangledName": "$s13ApptentiveKit0A6LoggerV7payloadACvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A6LoggerV7payloadACvMZ",
- "mangledName": "$s13ApptentiveKit0A6LoggerV7payloadACvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "targeting",
- "printedName": "targeting",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveLogger",
- "printedName": "ApptentiveKit.ApptentiveLogger",
- "usr": "s:13ApptentiveKit0A6LoggerV"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit0A6LoggerV9targetingACvpZ",
- "mangledName": "$s13ApptentiveKit0A6LoggerV9targetingACvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveLogger",
- "printedName": "ApptentiveKit.ApptentiveLogger",
- "usr": "s:13ApptentiveKit0A6LoggerV"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A6LoggerV9targetingACvgZ",
- "mangledName": "$s13ApptentiveKit0A6LoggerV9targetingACvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "ApptentiveLogger",
- "printedName": "ApptentiveKit.ApptentiveLogger",
- "usr": "s:13ApptentiveKit0A6LoggerV"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A6LoggerV9targetingACvsZ",
- "mangledName": "$s13ApptentiveKit0A6LoggerV9targetingACvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A6LoggerV9targetingACvMZ",
- "mangledName": "$s13ApptentiveKit0A6LoggerV9targetingACvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "messages",
- "printedName": "messages",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveLogger",
- "printedName": "ApptentiveKit.ApptentiveLogger",
- "usr": "s:13ApptentiveKit0A6LoggerV"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit0A6LoggerV8messagesACvpZ",
- "mangledName": "$s13ApptentiveKit0A6LoggerV8messagesACvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveLogger",
- "printedName": "ApptentiveKit.ApptentiveLogger",
- "usr": "s:13ApptentiveKit0A6LoggerV"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A6LoggerV8messagesACvgZ",
- "mangledName": "$s13ApptentiveKit0A6LoggerV8messagesACvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "ApptentiveLogger",
- "printedName": "ApptentiveKit.ApptentiveLogger",
- "usr": "s:13ApptentiveKit0A6LoggerV"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A6LoggerV8messagesACvsZ",
- "mangledName": "$s13ApptentiveKit0A6LoggerV8messagesACvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A6LoggerV8messagesACvMZ",
- "mangledName": "$s13ApptentiveKit0A6LoggerV8messagesACvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "attachments",
- "printedName": "attachments",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveLogger",
- "printedName": "ApptentiveKit.ApptentiveLogger",
- "usr": "s:13ApptentiveKit0A6LoggerV"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit0A6LoggerV11attachmentsACvpZ",
- "mangledName": "$s13ApptentiveKit0A6LoggerV11attachmentsACvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveLogger",
- "printedName": "ApptentiveKit.ApptentiveLogger",
- "usr": "s:13ApptentiveKit0A6LoggerV"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A6LoggerV11attachmentsACvgZ",
- "mangledName": "$s13ApptentiveKit0A6LoggerV11attachmentsACvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "ApptentiveLogger",
- "printedName": "ApptentiveKit.ApptentiveLogger",
- "usr": "s:13ApptentiveKit0A6LoggerV"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A6LoggerV11attachmentsACvsZ",
- "mangledName": "$s13ApptentiveKit0A6LoggerV11attachmentsACvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A6LoggerV11attachmentsACvMZ",
- "mangledName": "$s13ApptentiveKit0A6LoggerV11attachmentsACvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "logLevel",
- "printedName": "logLevel",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "LogLevel",
- "printedName": "ApptentiveKit.LogLevel",
- "usr": "s:13ApptentiveKit8LogLevelO"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit0A6LoggerV8logLevelAA03LogE0OvpZ",
- "mangledName": "$s13ApptentiveKit0A6LoggerV8logLevelAA03LogE0OvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "LogLevel",
- "printedName": "ApptentiveKit.LogLevel",
- "usr": "s:13ApptentiveKit8LogLevelO"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A6LoggerV8logLevelAA03LogE0OvgZ",
- "mangledName": "$s13ApptentiveKit0A6LoggerV8logLevelAA03LogE0OvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "LogLevel",
- "printedName": "ApptentiveKit.LogLevel",
- "usr": "s:13ApptentiveKit8LogLevelO"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A6LoggerV8logLevelAA03LogE0OvsZ",
- "mangledName": "$s13ApptentiveKit0A6LoggerV8logLevelAA03LogE0OvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A6LoggerV8logLevelAA03LogE0OvMZ",
- "mangledName": "$s13ApptentiveKit0A6LoggerV8logLevelAA03LogE0OvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- }
- ],
- "declKind": "Struct",
- "usr": "s:13ApptentiveKit0A6LoggerV",
- "mangledName": "$s13ApptentiveKit0A6LoggerV",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "LogLevel",
- "printedName": "LogLevel",
- "children": [
- {
- "kind": "Var",
- "name": "debug",
- "printedName": "debug",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.LogLevel.Type) -> ApptentiveKit.LogLevel",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "LogLevel",
- "printedName": "ApptentiveKit.LogLevel",
- "usr": "s:13ApptentiveKit8LogLevelO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.LogLevel.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "LogLevel",
- "printedName": "ApptentiveKit.LogLevel",
- "usr": "s:13ApptentiveKit8LogLevelO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:13ApptentiveKit8LogLevelO5debugyA2CmF",
- "mangledName": "$s13ApptentiveKit8LogLevelO5debugyA2CmF",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "Var",
- "name": "info",
- "printedName": "info",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.LogLevel.Type) -> ApptentiveKit.LogLevel",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "LogLevel",
- "printedName": "ApptentiveKit.LogLevel",
- "usr": "s:13ApptentiveKit8LogLevelO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.LogLevel.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "LogLevel",
- "printedName": "ApptentiveKit.LogLevel",
- "usr": "s:13ApptentiveKit8LogLevelO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:13ApptentiveKit8LogLevelO4infoyA2CmF",
- "mangledName": "$s13ApptentiveKit8LogLevelO4infoyA2CmF",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "Var",
- "name": "notice",
- "printedName": "notice",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.LogLevel.Type) -> ApptentiveKit.LogLevel",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "LogLevel",
- "printedName": "ApptentiveKit.LogLevel",
- "usr": "s:13ApptentiveKit8LogLevelO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.LogLevel.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "LogLevel",
- "printedName": "ApptentiveKit.LogLevel",
- "usr": "s:13ApptentiveKit8LogLevelO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:13ApptentiveKit8LogLevelO6noticeyA2CmF",
- "mangledName": "$s13ApptentiveKit8LogLevelO6noticeyA2CmF",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "Var",
- "name": "warning",
- "printedName": "warning",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.LogLevel.Type) -> ApptentiveKit.LogLevel",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "LogLevel",
- "printedName": "ApptentiveKit.LogLevel",
- "usr": "s:13ApptentiveKit8LogLevelO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.LogLevel.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "LogLevel",
- "printedName": "ApptentiveKit.LogLevel",
- "usr": "s:13ApptentiveKit8LogLevelO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:13ApptentiveKit8LogLevelO7warningyA2CmF",
- "mangledName": "$s13ApptentiveKit8LogLevelO7warningyA2CmF",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "Var",
- "name": "error",
- "printedName": "error",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.LogLevel.Type) -> ApptentiveKit.LogLevel",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "LogLevel",
- "printedName": "ApptentiveKit.LogLevel",
- "usr": "s:13ApptentiveKit8LogLevelO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.LogLevel.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "LogLevel",
- "printedName": "ApptentiveKit.LogLevel",
- "usr": "s:13ApptentiveKit8LogLevelO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:13ApptentiveKit8LogLevelO5erroryA2CmF",
- "mangledName": "$s13ApptentiveKit8LogLevelO5erroryA2CmF",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "Var",
- "name": "critical",
- "printedName": "critical",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.LogLevel.Type) -> ApptentiveKit.LogLevel",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "LogLevel",
- "printedName": "ApptentiveKit.LogLevel",
- "usr": "s:13ApptentiveKit8LogLevelO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.LogLevel.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "LogLevel",
- "printedName": "ApptentiveKit.LogLevel",
- "usr": "s:13ApptentiveKit8LogLevelO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:13ApptentiveKit8LogLevelO8criticalyA2CmF",
- "mangledName": "$s13ApptentiveKit8LogLevelO8criticalyA2CmF",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "Var",
- "name": "fault",
- "printedName": "fault",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.LogLevel.Type) -> ApptentiveKit.LogLevel",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "LogLevel",
- "printedName": "ApptentiveKit.LogLevel",
- "usr": "s:13ApptentiveKit8LogLevelO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.LogLevel.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "LogLevel",
- "printedName": "ApptentiveKit.LogLevel",
- "usr": "s:13ApptentiveKit8LogLevelO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:13ApptentiveKit8LogLevelO5faultyA2CmF",
- "mangledName": "$s13ApptentiveKit8LogLevelO5faultyA2CmF",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "Function",
- "name": "<",
- "printedName": "<(_:_:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- },
- {
- "kind": "TypeNominal",
- "name": "LogLevel",
- "printedName": "ApptentiveKit.LogLevel",
- "usr": "s:13ApptentiveKit8LogLevelO"
- },
- {
- "kind": "TypeNominal",
- "name": "LogLevel",
- "printedName": "ApptentiveKit.LogLevel",
- "usr": "s:13ApptentiveKit8LogLevelO"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit8LogLevelO1loiySbAC_ACtFZ",
- "mangledName": "$s13ApptentiveKit8LogLevelO1loiySbAC_ACtFZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(rawValue:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "ApptentiveKit.LogLevel?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "LogLevel",
- "printedName": "ApptentiveKit.LogLevel",
- "usr": "s:13ApptentiveKit8LogLevelO"
- }
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ],
- "declKind": "Constructor",
- "usr": "s:13ApptentiveKit8LogLevelO8rawValueACSgSi_tcfc",
- "mangledName": "$s13ApptentiveKit8LogLevelO8rawValueACSgSi_tcfc",
- "moduleName": "ApptentiveKit",
- "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:13ApptentiveKit8LogLevelO8rawValueSivp",
- "mangledName": "$s13ApptentiveKit8LogLevelO8rawValueSivp",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit8LogLevelO8rawValueSivg",
- "mangledName": "$s13ApptentiveKit8LogLevelO8rawValueSivg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "get"
- }
- ]
- }
- ],
- "declKind": "Enum",
- "usr": "s:13ApptentiveKit8LogLevelO",
- "mangledName": "$s13ApptentiveKit8LogLevelO",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "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": "Comparable",
- "printedName": "Comparable",
- "usr": "s:SL",
- "mangledName": "$sSL"
- }
- ]
- },
- {
- "kind": "Import",
- "name": "UIKit",
- "printedName": "UIKit",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "Apptentive",
- "printedName": "Apptentive",
- "children": [
- {
- "kind": "Var",
- "name": "shared",
- "printedName": "shared",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Apptentive",
- "printedName": "ApptentiveKit.Apptentive",
- "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive"
- }
- ],
- "declKind": "Var",
- "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(cpy)shared",
- "mangledName": "$s13ApptentiveKit0A0C6sharedACvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Apptentive",
- "printedName": "ApptentiveKit.Apptentive",
- "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(cm)shared",
- "mangledName": "$s13ApptentiveKit0A0C6sharedACvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final",
- "ObjC"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "interactionPresenter",
- "printedName": "interactionPresenter",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "InteractionPresenter",
- "printedName": "ApptentiveKit.InteractionPresenter",
- "usr": "s:13ApptentiveKit20InteractionPresenterC"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit0A0C20interactionPresenterAA011InteractionD0Cvp",
- "mangledName": "$s13ApptentiveKit0A0C20interactionPresenterAA011InteractionD0Cvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "InteractionPresenter",
- "printedName": "ApptentiveKit.InteractionPresenter",
- "usr": "s:13ApptentiveKit20InteractionPresenterC"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A0C20interactionPresenterAA011InteractionD0Cvg",
- "mangledName": "$s13ApptentiveKit0A0C20interactionPresenterAA011InteractionD0Cvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "InteractionPresenter",
- "printedName": "ApptentiveKit.InteractionPresenter",
- "usr": "s:13ApptentiveKit20InteractionPresenterC"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A0C20interactionPresenterAA011InteractionD0Cvs",
- "mangledName": "$s13ApptentiveKit0A0C20interactionPresenterAA011InteractionD0Cvs",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A0C20interactionPresenterAA011InteractionD0CvM",
- "mangledName": "$s13ApptentiveKit0A0C20interactionPresenterAA011InteractionD0CvM",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "theme",
- "printedName": "theme",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UITheme",
- "printedName": "ApptentiveKit.Apptentive.UITheme",
- "usr": "s:13ApptentiveKit0A0C7UIThemeO"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit0A0C5themeAC7UIThemeOvp",
- "mangledName": "$s13ApptentiveKit0A0C5themeAC7UIThemeOvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UITheme",
- "printedName": "ApptentiveKit.Apptentive.UITheme",
- "usr": "s:13ApptentiveKit0A0C7UIThemeO"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A0C5themeAC7UIThemeOvg",
- "mangledName": "$s13ApptentiveKit0A0C5themeAC7UIThemeOvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UITheme",
- "printedName": "ApptentiveKit.Apptentive.UITheme",
- "usr": "s:13ApptentiveKit0A0C7UIThemeO"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A0C5themeAC7UIThemeOvs",
- "mangledName": "$s13ApptentiveKit0A0C5themeAC7UIThemeOvs",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A0C5themeAC7UIThemeOvM",
- "mangledName": "$s13ApptentiveKit0A0C5themeAC7UIThemeOvM",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "personName",
- "printedName": "personName",
- "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@ApptentiveKit@objc(cs)Apptentive(py)personName",
- "mangledName": "$s13ApptentiveKit0A0C10personNameSSSgvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(im)personName",
- "mangledName": "$s13ApptentiveKit0A0C10personNameSSSgvg",
- "moduleName": "ApptentiveKit",
- "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@ApptentiveKit@objc(cs)Apptentive(im)setPersonName:",
- "mangledName": "$s13ApptentiveKit0A0C10personNameSSSgvs",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "ObjC"
- ],
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A0C10personNameSSSgvM",
- "mangledName": "$s13ApptentiveKit0A0C10personNameSSSgvM",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "personEmailAddress",
- "printedName": "personEmailAddress",
- "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@ApptentiveKit@objc(cs)Apptentive(py)personEmailAddress",
- "mangledName": "$s13ApptentiveKit0A0C18personEmailAddressSSSgvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(im)personEmailAddress",
- "mangledName": "$s13ApptentiveKit0A0C18personEmailAddressSSSgvg",
- "moduleName": "ApptentiveKit",
- "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@ApptentiveKit@objc(cs)Apptentive(im)setPersonEmailAddress:",
- "mangledName": "$s13ApptentiveKit0A0C18personEmailAddressSSSgvs",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "ObjC"
- ],
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A0C18personEmailAddressSSSgvM",
- "mangledName": "$s13ApptentiveKit0A0C18personEmailAddressSSSgvM",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "mParticleID",
- "printedName": "mParticleID",
- "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@ApptentiveKit@objc(cs)Apptentive(py)mParticleID",
- "mangledName": "$s13ApptentiveKit0A0C11mParticleIDSSSgvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(im)mParticleID",
- "mangledName": "$s13ApptentiveKit0A0C11mParticleIDSSSgvg",
- "moduleName": "ApptentiveKit",
- "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@ApptentiveKit@objc(cs)Apptentive(im)setMParticleID:",
- "mangledName": "$s13ApptentiveKit0A0C11mParticleIDSSSgvs",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "ObjC"
- ],
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A0C11mParticleIDSSSgvM",
- "mangledName": "$s13ApptentiveKit0A0C11mParticleIDSSSgvM",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "personCustomData",
- "printedName": "personCustomData",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "CustomData",
- "printedName": "ApptentiveKit.CustomData",
- "usr": "s:13ApptentiveKit10CustomDataV"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit0A0C16personCustomDataAA0dE0Vvp",
- "mangledName": "$s13ApptentiveKit0A0C16personCustomDataAA0dE0Vvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "CustomData",
- "printedName": "ApptentiveKit.CustomData",
- "usr": "s:13ApptentiveKit10CustomDataV"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A0C16personCustomDataAA0dE0Vvg",
- "mangledName": "$s13ApptentiveKit0A0C16personCustomDataAA0dE0Vvg",
- "moduleName": "ApptentiveKit",
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "CustomData",
- "printedName": "ApptentiveKit.CustomData",
- "usr": "s:13ApptentiveKit10CustomDataV"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A0C16personCustomDataAA0dE0Vvs",
- "mangledName": "$s13ApptentiveKit0A0C16personCustomDataAA0dE0Vvs",
- "moduleName": "ApptentiveKit",
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A0C16personCustomDataAA0dE0VvM",
- "mangledName": "$s13ApptentiveKit0A0C16personCustomDataAA0dE0VvM",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "deviceCustomData",
- "printedName": "deviceCustomData",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "CustomData",
- "printedName": "ApptentiveKit.CustomData",
- "usr": "s:13ApptentiveKit10CustomDataV"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit0A0C16deviceCustomDataAA0dE0Vvp",
- "mangledName": "$s13ApptentiveKit0A0C16deviceCustomDataAA0dE0Vvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "CustomData",
- "printedName": "ApptentiveKit.CustomData",
- "usr": "s:13ApptentiveKit10CustomDataV"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A0C16deviceCustomDataAA0dE0Vvg",
- "mangledName": "$s13ApptentiveKit0A0C16deviceCustomDataAA0dE0Vvg",
- "moduleName": "ApptentiveKit",
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "CustomData",
- "printedName": "ApptentiveKit.CustomData",
- "usr": "s:13ApptentiveKit10CustomDataV"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A0C16deviceCustomDataAA0dE0Vvs",
- "mangledName": "$s13ApptentiveKit0A0C16deviceCustomDataAA0dE0Vvs",
- "moduleName": "ApptentiveKit",
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A0C16deviceCustomDataAA0dE0VvM",
- "mangledName": "$s13ApptentiveKit0A0C16deviceCustomDataAA0dE0VvM",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "unreadMessageCount",
- "printedName": "unreadMessageCount",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ],
- "declKind": "Var",
- "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(py)unreadMessageCount",
- "mangledName": "$s13ApptentiveKit0A0C18unreadMessageCountSivp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl",
- "Dynamic",
- "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@ApptentiveKit@objc(cs)Apptentive(im)unreadMessageCount",
- "mangledName": "$s13ApptentiveKit0A0C18unreadMessageCountSivg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Dynamic",
- "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@ApptentiveKit@objc(cs)Apptentive(im)setUnreadMessageCount:",
- "mangledName": "$s13ApptentiveKit0A0C18unreadMessageCountSivs",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Dynamic",
- "ObjC"
- ],
- "accessorKind": "set"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "distributionName",
- "printedName": "distributionName",
- "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@ApptentiveKit@objc(cs)Apptentive(py)distributionName",
- "mangledName": "$s13ApptentiveKit0A0C16distributionNameSSSgvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(im)distributionName",
- "mangledName": "$s13ApptentiveKit0A0C16distributionNameSSSgvg",
- "moduleName": "ApptentiveKit",
- "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@ApptentiveKit@objc(cs)Apptentive(im)setDistributionName:",
- "mangledName": "$s13ApptentiveKit0A0C16distributionNameSSSgvs",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "ObjC"
- ],
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A0C16distributionNameSSSgvM",
- "mangledName": "$s13ApptentiveKit0A0C16distributionNameSSSgvM",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "distributionVersion",
- "printedName": "distributionVersion",
- "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@ApptentiveKit@objc(cs)Apptentive(py)distributionVersion",
- "mangledName": "$s13ApptentiveKit0A0C19distributionVersionSSSgvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(im)distributionVersion",
- "mangledName": "$s13ApptentiveKit0A0C19distributionVersionSSSgvg",
- "moduleName": "ApptentiveKit",
- "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@ApptentiveKit@objc(cs)Apptentive(im)setDistributionVersion:",
- "mangledName": "$s13ApptentiveKit0A0C19distributionVersionSSSgvs",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "ObjC"
- ],
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A0C19distributionVersionSSSgvM",
- "mangledName": "$s13ApptentiveKit0A0C19distributionVersionSSSgvM",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "UITheme",
- "printedName": "UITheme",
- "children": [
- {
- "kind": "Var",
- "name": "apptentive",
- "printedName": "apptentive",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.Apptentive.UITheme.Type) -> ApptentiveKit.Apptentive.UITheme",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UITheme",
- "printedName": "ApptentiveKit.Apptentive.UITheme",
- "usr": "s:13ApptentiveKit0A0C7UIThemeO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.Apptentive.UITheme.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UITheme",
- "printedName": "ApptentiveKit.Apptentive.UITheme",
- "usr": "s:13ApptentiveKit0A0C7UIThemeO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:13ApptentiveKit0A0C7UIThemeO10apptentiveyA2EmF",
- "mangledName": "$s13ApptentiveKit0A0C7UIThemeO10apptentiveyA2EmF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "none",
- "printedName": "none",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.Apptentive.UITheme.Type) -> ApptentiveKit.Apptentive.UITheme",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UITheme",
- "printedName": "ApptentiveKit.Apptentive.UITheme",
- "usr": "s:13ApptentiveKit0A0C7UIThemeO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.Apptentive.UITheme.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UITheme",
- "printedName": "ApptentiveKit.Apptentive.UITheme",
- "usr": "s:13ApptentiveKit0A0C7UIThemeO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:13ApptentiveKit0A0C7UIThemeO4noneyA2EmF",
- "mangledName": "$s13ApptentiveKit0A0C7UIThemeO4noneyA2EmF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Function",
- "name": "==",
- "printedName": "==(_:_:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- },
- {
- "kind": "TypeNominal",
- "name": "UITheme",
- "printedName": "ApptentiveKit.Apptentive.UITheme",
- "usr": "s:13ApptentiveKit0A0C7UIThemeO"
- },
- {
- "kind": "TypeNominal",
- "name": "UITheme",
- "printedName": "ApptentiveKit.Apptentive.UITheme",
- "usr": "s:13ApptentiveKit0A0C7UIThemeO"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit0A0C7UIThemeO2eeoiySbAE_AEtFZ",
- "mangledName": "$s13ApptentiveKit0A0C7UIThemeO2eeoiySbAE_AEtFZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Var",
- "name": "hashValue",
- "printedName": "hashValue",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit0A0C7UIThemeO9hashValueSivp",
- "mangledName": "$s13ApptentiveKit0A0C7UIThemeO9hashValueSivp",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A0C7UIThemeO9hashValueSivg",
- "mangledName": "$s13ApptentiveKit0A0C7UIThemeO9hashValueSivg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Function",
- "name": "hash",
- "printedName": "hash(into:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Hasher",
- "printedName": "Swift.Hasher",
- "paramValueOwnership": "InOut",
- "usr": "s:s6HasherV"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit0A0C7UIThemeO4hash4intoys6HasherVz_tF",
- "mangledName": "$s13ApptentiveKit0A0C7UIThemeO4hash4intoys6HasherVz_tF",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "funcSelfKind": "NonMutating"
- }
- ],
- "declKind": "Enum",
- "usr": "s:13ApptentiveKit0A0C7UIThemeO",
- "mangledName": "$s13ApptentiveKit0A0C7UIThemeO",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "conformances": [
- {
- "kind": "Conformance",
- "name": "Equatable",
- "printedName": "Equatable",
- "usr": "s:SQ",
- "mangledName": "$sSQ"
- },
- {
- "kind": "Conformance",
- "name": "Hashable",
- "printedName": "Hashable",
- "usr": "s:SH",
- "mangledName": "$sSH"
- }
- ]
- },
- {
- "kind": "Function",
- "name": "register",
- "printedName": "register(with:completion:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "AppCredentials",
- "printedName": "ApptentiveKit.Apptentive.AppCredentials",
- "usr": "s:13ApptentiveKit0A0C14AppCredentialsV"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "((Swift.Result<(), Swift.Error>) -> ())?",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(Swift.Result<(), Swift.Error>) -> ()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Result",
- "printedName": "Swift.Result<(), Swift.Error>",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Error",
- "printedName": "Swift.Error",
- "usr": "s:s5ErrorP"
- }
- ],
- "usr": "s:s6ResultO"
- }
- ]
- }
- ],
- "hasDefaultArg": true,
- "usr": "s:Sq"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit0A0C8register4with10completionyAC14AppCredentialsV_ys6ResultOyyts5Error_pGcSgtF",
- "mangledName": "$s13ApptentiveKit0A0C8register4with10completionyAC14AppCredentialsV_ys6ResultOyyts5Error_pGcSgtF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "TypeDecl",
- "name": "AppCredentials",
- "printedName": "AppCredentials",
- "children": [
- {
- "kind": "Var",
- "name": "key",
- "printedName": "key",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit0A0C14AppCredentialsV3keySSvp",
- "mangledName": "$s13ApptentiveKit0A0C14AppCredentialsV3keySSvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A0C14AppCredentialsV3keySSvg",
- "mangledName": "$s13ApptentiveKit0A0C14AppCredentialsV3keySSvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "signature",
- "printedName": "signature",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit0A0C14AppCredentialsV9signatureSSvp",
- "mangledName": "$s13ApptentiveKit0A0C14AppCredentialsV9signatureSSvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A0C14AppCredentialsV9signatureSSvg",
- "mangledName": "$s13ApptentiveKit0A0C14AppCredentialsV9signatureSSvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(key:signature:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "AppCredentials",
- "printedName": "ApptentiveKit.Apptentive.AppCredentials",
- "usr": "s:13ApptentiveKit0A0C14AppCredentialsV"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Constructor",
- "usr": "s:13ApptentiveKit0A0C14AppCredentialsV3key9signatureAESS_SStcfc",
- "mangledName": "$s13ApptentiveKit0A0C14AppCredentialsV3key9signatureAESS_SStcfc",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "init_kind": "Designated"
- },
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(from:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "AppCredentials",
- "printedName": "ApptentiveKit.Apptentive.AppCredentials",
- "usr": "s:13ApptentiveKit0A0C14AppCredentialsV"
- },
- {
- "kind": "TypeNominal",
- "name": "Decoder",
- "printedName": "Swift.Decoder",
- "usr": "s:s7DecoderP"
- }
- ],
- "declKind": "Constructor",
- "usr": "s:13ApptentiveKit0A0C14AppCredentialsV4fromAEs7Decoder_p_tKcfc",
- "mangledName": "$s13ApptentiveKit0A0C14AppCredentialsV4fromAEs7Decoder_p_tKcfc",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "throwing": true,
- "init_kind": "Designated"
- },
- {
- "kind": "Function",
- "name": "encode",
- "printedName": "encode(to:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Encoder",
- "printedName": "Swift.Encoder",
- "usr": "s:s7EncoderP"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit0A0C14AppCredentialsV6encode2toys7Encoder_p_tKF",
- "mangledName": "$s13ApptentiveKit0A0C14AppCredentialsV6encode2toys7Encoder_p_tKF",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "throwing": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "==",
- "printedName": "==(_:_:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- },
- {
- "kind": "TypeNominal",
- "name": "AppCredentials",
- "printedName": "ApptentiveKit.Apptentive.AppCredentials",
- "usr": "s:13ApptentiveKit0A0C14AppCredentialsV"
- },
- {
- "kind": "TypeNominal",
- "name": "AppCredentials",
- "printedName": "ApptentiveKit.Apptentive.AppCredentials",
- "usr": "s:13ApptentiveKit0A0C14AppCredentialsV"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit0A0C14AppCredentialsV2eeoiySbAE_AEtFZ",
- "mangledName": "$s13ApptentiveKit0A0C14AppCredentialsV2eeoiySbAE_AEtFZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "funcSelfKind": "NonMutating"
- }
- ],
- "declKind": "Struct",
- "usr": "s:13ApptentiveKit0A0C14AppCredentialsV",
- "mangledName": "$s13ApptentiveKit0A0C14AppCredentialsV",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "conformances": [
- {
- "kind": "Conformance",
- "name": "Decodable",
- "printedName": "Decodable",
- "usr": "s:Se",
- "mangledName": "$sSe"
- },
- {
- "kind": "Conformance",
- "name": "Encodable",
- "printedName": "Encodable",
- "usr": "s:SE",
- "mangledName": "$sSE"
- },
- {
- "kind": "Conformance",
- "name": "Equatable",
- "printedName": "Equatable",
- "usr": "s:SQ",
- "mangledName": "$sSQ"
- }
- ]
- },
- {
- "kind": "Function",
- "name": "engage",
- "printedName": "engage(event:from:completion:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Event",
- "printedName": "ApptentiveKit.Event",
- "usr": "s:13ApptentiveKit5EventV"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "UIKit.UIViewController?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIViewController",
- "printedName": "UIKit.UIViewController",
- "usr": "c:objc(cs)UIViewController"
- }
- ],
- "hasDefaultArg": true,
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "((Swift.Result) -> ())?",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(Swift.Result) -> ()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Result",
- "printedName": "Swift.Result",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- },
- {
- "kind": "TypeNominal",
- "name": "Error",
- "printedName": "Swift.Error",
- "usr": "s:s5ErrorP"
- }
- ],
- "usr": "s:s6ResultO"
- }
- ]
- }
- ],
- "hasDefaultArg": true,
- "usr": "s:Sq"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit0A0C6engage5event4from10completionyAA5EventV_So16UIViewControllerCSgys6ResultOySbs5Error_pGcSgtF",
- "mangledName": "$s13ApptentiveKit0A0C6engage5event4from10completionyAA5EventV_So16UIViewControllerCSgys6ResultOySbs5Error_pGcSgtF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "dismissAllInteractions",
- "printedName": "dismissAllInteractions(animated:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit0A0C22dismissAllInteractions8animatedySb_tF",
- "mangledName": "$s13ApptentiveKit0A0C22dismissAllInteractions8animatedySb_tF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "presentMessageCenter",
- "printedName": "presentMessageCenter(from:completion:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "UIKit.UIViewController?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIViewController",
- "printedName": "UIKit.UIViewController",
- "usr": "c:objc(cs)UIViewController"
- }
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "((Swift.Result) -> ())?",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(Swift.Result) -> ()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Result",
- "printedName": "Swift.Result",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- },
- {
- "kind": "TypeNominal",
- "name": "Error",
- "printedName": "Swift.Error",
- "usr": "s:s5ErrorP"
- }
- ],
- "usr": "s:s6ResultO"
- }
- ]
- }
- ],
- "hasDefaultArg": true,
- "usr": "s:Sq"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit0A0C20presentMessageCenter4from10completionySo16UIViewControllerCSg_ys6ResultOySbs5Error_pGcSgtF",
- "mangledName": "$s13ApptentiveKit0A0C20presentMessageCenter4from10completionySo16UIViewControllerCSg_ys6ResultOySbs5Error_pGcSgtF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "presentMessageCenter",
- "printedName": "presentMessageCenter(from:with:completion:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "UIKit.UIViewController?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIViewController",
- "printedName": "UIKit.UIViewController",
- "usr": "c:objc(cs)UIViewController"
- }
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "ApptentiveKit.CustomData?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "CustomData",
- "printedName": "ApptentiveKit.CustomData",
- "usr": "s:13ApptentiveKit10CustomDataV"
- }
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "((Swift.Result) -> ())?",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(Swift.Result) -> ()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Result",
- "printedName": "Swift.Result",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- },
- {
- "kind": "TypeNominal",
- "name": "Error",
- "printedName": "Swift.Error",
- "usr": "s:s5ErrorP"
- }
- ],
- "usr": "s:s6ResultO"
- }
- ]
- }
- ],
- "hasDefaultArg": true,
- "usr": "s:Sq"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit0A0C20presentMessageCenter4from4with10completionySo16UIViewControllerCSg_AA10CustomDataVSgys6ResultOySbs5Error_pGcSgtF",
- "mangledName": "$s13ApptentiveKit0A0C20presentMessageCenter4from4with10completionySo16UIViewControllerCSg_AA10CustomDataVSgys6ResultOySbs5Error_pGcSgtF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "sendAttachment",
- "printedName": "sendAttachment(_:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Func",
- "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(im)sendAttachmentText:",
- "mangledName": "$s13ApptentiveKit0A0C14sendAttachmentyySSF",
- "moduleName": "ApptentiveKit",
- "objc_name": "sendAttachmentText:",
- "declAttributes": [
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "sendAttachment",
- "printedName": "sendAttachment(_:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIImage",
- "printedName": "UIKit.UIImage",
- "usr": "c:objc(cs)UIImage"
- }
- ],
- "declKind": "Func",
- "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(im)sendAttachmentImage:",
- "mangledName": "$s13ApptentiveKit0A0C14sendAttachmentyySo7UIImageCF",
- "moduleName": "ApptentiveKit",
- "objc_name": "sendAttachmentImage:",
- "declAttributes": [
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "sendAttachment",
- "printedName": "sendAttachment(_:mediaType:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Data",
- "printedName": "Foundation.Data",
- "usr": "s:10Foundation4DataV"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Func",
- "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(im)sendAttachmentFile:withMimeType:",
- "mangledName": "$s13ApptentiveKit0A0C14sendAttachment_9mediaTypey10Foundation4DataV_SStF",
- "moduleName": "ApptentiveKit",
- "objc_name": "sendAttachmentFile:withMimeType:",
- "declAttributes": [
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "canShowInteraction",
- "printedName": "canShowInteraction(event:completion:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Event",
- "printedName": "ApptentiveKit.Event",
- "usr": "s:13ApptentiveKit5EventV"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "((Swift.Result) -> ())?",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(Swift.Result) -> ()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Result",
- "printedName": "Swift.Result",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- },
- {
- "kind": "TypeNominal",
- "name": "Error",
- "printedName": "Swift.Error",
- "usr": "s:s5ErrorP"
- }
- ],
- "usr": "s:s6ResultO"
- }
- ]
- }
- ],
- "hasDefaultArg": true,
- "usr": "s:Sq"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit0A0C18canShowInteraction5event10completionyAA5EventV_ys6ResultOySbs5Error_pGcSgtF",
- "mangledName": "$s13ApptentiveKit0A0C18canShowInteraction5event10completionyAA5EventV_ys6ResultOySbs5Error_pGcSgtF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(apiBaseURL:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Apptentive",
- "printedName": "ApptentiveKit.Apptentive",
- "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive"
- },
- {
- "kind": "TypeNominal",
- "name": "URL",
- "printedName": "Foundation.URL",
- "usr": "s:10Foundation3URLV"
- }
- ],
- "declKind": "Constructor",
- "usr": "s:13ApptentiveKit0A0C10apiBaseURLAC10Foundation0E0V_tcfc",
- "mangledName": "$s13ApptentiveKit0A0C10apiBaseURLAC10Foundation0E0V_tcfc",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Convenience",
- "AccessControl",
- "RawDocComment"
- ],
- "init_kind": "Convenience"
- },
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Apptentive",
- "printedName": "ApptentiveKit.Apptentive",
- "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive"
- }
- ],
- "declKind": "Constructor",
- "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(im)init",
- "mangledName": "$s13ApptentiveKit0A0CACycfc",
- "moduleName": "ApptentiveKit",
- "overriding": true,
- "implicit": true,
- "objc_name": "init",
- "declAttributes": [
- "Dynamic",
- "ObjC",
- "Override"
- ],
- "init_kind": "Designated"
- },
- {
- "kind": "Function",
- "name": "setRemoteNotificationDeviceToken",
- "printedName": "setRemoteNotificationDeviceToken(_:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Data",
- "printedName": "Foundation.Data",
- "usr": "s:10Foundation4DataV"
- }
- ],
- "declKind": "Func",
- "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)setRemoteNotificationDeviceToken:",
- "mangledName": "$s13ApptentiveKit0A0C32setRemoteNotificationDeviceTokenyy10Foundation4DataVF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Dynamic",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "setRemoteNotifcationDeviceToken",
- "printedName": "setRemoteNotifcationDeviceToken(_:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Data",
- "printedName": "Foundation.Data",
- "usr": "s:10Foundation4DataV"
- }
- ],
- "declKind": "Func",
- "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)setRemoteNotifcationDeviceToken:",
- "mangledName": "$s13ApptentiveKit0A0C31setRemoteNotifcationDeviceTokenyy10Foundation4DataVF",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "declAttributes": [
- "Dynamic",
- "AccessControl",
- "ObjC",
- "Available",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "didReceiveRemoteNotification",
- "printedName": "didReceiveRemoteNotification(_:fetchCompletionHandler:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- },
- {
- "kind": "TypeNominal",
- "name": "Dictionary",
- "printedName": "[Swift.AnyHashable : Any]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "AnyHashable",
- "printedName": "Swift.AnyHashable",
- "usr": "s:s11AnyHashableV"
- },
- {
- "kind": "TypeNominal",
- "name": "ProtocolComposition",
- "printedName": "Any"
- }
- ],
- "usr": "s:SD"
- },
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(UIKit.UIBackgroundFetchResult) -> ()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIBackgroundFetchResult",
- "printedName": "UIKit.UIBackgroundFetchResult",
- "usr": "c:@E@UIBackgroundFetchResult"
- }
- ]
- }
- ],
- "declKind": "Func",
- "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)didReceiveRemoteNotification:fetchCompletionHandler:",
- "mangledName": "$s13ApptentiveKit0A0C28didReceiveRemoteNotification_22fetchCompletionHandlerSbSDys11AnyHashableVypG_ySo23UIBackgroundFetchResultVctF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Dynamic",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "didReceveUserNotificationResponse",
- "printedName": "didReceveUserNotificationResponse(_:withCompletionHandler:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- },
- {
- "kind": "TypeNominal",
- "name": "UNNotificationResponse",
- "printedName": "UserNotifications.UNNotificationResponse",
- "usr": "c:objc(cs)UNNotificationResponse"
- },
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "() -> ()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ]
- }
- ],
- "declKind": "Func",
- "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)didReceveUserNotificationResponse:withCompletionHandler:",
- "mangledName": "$s13ApptentiveKit0A0C33didReceveUserNotificationResponse_21withCompletionHandlerSbSo014UNNotificationG0C_yyctF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Dynamic",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "willPresent",
- "printedName": "willPresent(_:withCompletionHandler:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- },
- {
- "kind": "TypeNominal",
- "name": "UNNotification",
- "printedName": "UserNotifications.UNNotification",
- "usr": "c:objc(cs)UNNotification"
- },
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(UserNotifications.UNNotificationPresentationOptions) -> ()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UNNotificationPresentationOptions",
- "printedName": "UserNotifications.UNNotificationPresentationOptions",
- "usr": "c:@E@UNNotificationPresentationOptions"
- }
- ]
- }
- ],
- "declKind": "Func",
- "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)willPresent:withCompletionHandler:",
- "mangledName": "$s13ApptentiveKit0A0C11willPresent_21withCompletionHandlerSbSo14UNNotificationC_ySo0H19PresentationOptionsVctF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Dynamic",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "userNotificationCenter",
- "printedName": "userNotificationCenter(_:willPresent:withCompletionHandler:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UNUserNotificationCenter",
- "printedName": "UserNotifications.UNUserNotificationCenter",
- "usr": "c:objc(cs)UNUserNotificationCenter"
- },
- {
- "kind": "TypeNominal",
- "name": "UNNotification",
- "printedName": "UserNotifications.UNNotification",
- "usr": "c:objc(cs)UNNotification"
- },
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(UserNotifications.UNNotificationPresentationOptions) -> ()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UNNotificationPresentationOptions",
- "printedName": "UserNotifications.UNNotificationPresentationOptions",
- "usr": "c:@E@UNNotificationPresentationOptions"
- }
- ]
- }
- ],
- "declKind": "Func",
- "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)userNotificationCenter:willPresentNotification:withCompletionHandler:",
- "mangledName": "$s13ApptentiveKit0A0C22userNotificationCenter_11willPresent21withCompletionHandlerySo06UNUserdE0C_So14UNNotificationCySo0L19PresentationOptionsVctF",
- "moduleName": "ApptentiveKit",
- "objc_name": "userNotificationCenter:willPresentNotification:withCompletionHandler:",
- "declAttributes": [
- "Dynamic",
- "ObjC",
- "AccessControl",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "userNotificationCenter",
- "printedName": "userNotificationCenter(_:didReceive:withCompletionHandler:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UNUserNotificationCenter",
- "printedName": "UserNotifications.UNUserNotificationCenter",
- "usr": "c:objc(cs)UNUserNotificationCenter"
- },
- {
- "kind": "TypeNominal",
- "name": "UNNotificationResponse",
- "printedName": "UserNotifications.UNNotificationResponse",
- "usr": "c:objc(cs)UNNotificationResponse"
- },
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "() -> ()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ]
- }
- ],
- "declKind": "Func",
- "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:",
- "mangledName": "$s13ApptentiveKit0A0C22userNotificationCenter_10didReceive21withCompletionHandlerySo06UNUserdE0C_So22UNNotificationResponseCyyctF",
- "moduleName": "ApptentiveKit",
- "objc_name": "userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:",
- "declAttributes": [
- "Dynamic",
- "ObjC",
- "AccessControl",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Var",
- "name": "engagementManifestURL",
- "printedName": "engagementManifestURL",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Foundation.URL?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "URL",
- "printedName": "Foundation.URL",
- "usr": "s:10Foundation3URLV"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit0A0C21engagementManifestURL10Foundation0E0VSgvp",
- "mangledName": "$s13ApptentiveKit0A0C21engagementManifestURL10Foundation0E0VSgvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Foundation.URL?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "URL",
- "printedName": "Foundation.URL",
- "usr": "s:10Foundation3URLV"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A0C21engagementManifestURL10Foundation0E0VSgvg",
- "mangledName": "$s13ApptentiveKit0A0C21engagementManifestURL10Foundation0E0VSgvg",
- "moduleName": "ApptentiveKit",
- "isFromExtension": true,
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Function",
- "name": "loadEngagementManifest",
- "printedName": "loadEngagementManifest(at:completion:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Foundation.URL?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "URL",
- "printedName": "Foundation.URL",
- "usr": "s:10Foundation3URLV"
- }
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(Swift.Result<(), Swift.Error>) -> ()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Result",
- "printedName": "Swift.Result<(), Swift.Error>",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Error",
- "printedName": "Swift.Error",
- "usr": "s:s5ErrorP"
- }
- ],
- "usr": "s:s6ResultO"
- }
- ]
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit0A0C22loadEngagementManifest2at10completiony10Foundation3URLVSg_ys6ResultOyyts5Error_pGctF",
- "mangledName": "$s13ApptentiveKit0A0C22loadEngagementManifest2at10completiony10Foundation3URLVSg_ys6ResultOyyts5Error_pGctF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "getInteractionList",
- "printedName": "getInteractionList(_:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "([ApptentiveKit.Apptentive.InteractionListItem]) -> ()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Array",
- "printedName": "[ApptentiveKit.Apptentive.InteractionListItem]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "InteractionListItem",
- "printedName": "ApptentiveKit.Apptentive.InteractionListItem",
- "usr": "s:13ApptentiveKit0A0C19InteractionListItemV"
- }
- ],
- "usr": "s:Sa"
- }
- ]
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit0A0C18getInteractionListyyySayAC0dE4ItemVGcF",
- "mangledName": "$s13ApptentiveKit0A0C18getInteractionListyyySayAC0dE4ItemVGcF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "presentInteraction",
- "printedName": "presentInteraction(with:completion:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- },
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(Swift.Result<(), Swift.Error>) -> ()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Result",
- "printedName": "Swift.Result<(), Swift.Error>",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Error",
- "printedName": "Swift.Error",
- "usr": "s:s5ErrorP"
- }
- ],
- "usr": "s:s6ResultO"
- }
- ]
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit0A0C18presentInteraction4with10completionySS_ys6ResultOyyts5Error_pGctF",
- "mangledName": "$s13ApptentiveKit0A0C18presentInteraction4with10completionySS_ys6ResultOyyts5Error_pGctF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "presentInteraction",
- "printedName": "presentInteraction(at:completion:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "URL",
- "printedName": "Foundation.URL",
- "usr": "s:10Foundation3URLV"
- },
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(Swift.Result<(), Swift.Error>) -> ()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Result",
- "printedName": "Swift.Result<(), Swift.Error>",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Error",
- "printedName": "Swift.Error",
- "usr": "s:s5ErrorP"
- }
- ],
- "usr": "s:s6ResultO"
- }
- ]
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit0A0C18presentInteraction2at10completiony10Foundation3URLV_ys6ResultOyyts5Error_pGctF",
- "mangledName": "$s13ApptentiveKit0A0C18presentInteraction2at10completiony10Foundation3URLV_ys6ResultOyyts5Error_pGctF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "TypeDecl",
- "name": "InteractionListItem",
- "printedName": "InteractionListItem",
- "children": [
- {
- "kind": "Var",
- "name": "id",
- "printedName": "id",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit0A0C19InteractionListItemV2idSSvp",
- "mangledName": "$s13ApptentiveKit0A0C19InteractionListItemV2idSSvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A0C19InteractionListItemV2idSSvg",
- "mangledName": "$s13ApptentiveKit0A0C19InteractionListItemV2idSSvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "displayName",
- "printedName": "displayName",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit0A0C19InteractionListItemV11displayNameSSvp",
- "mangledName": "$s13ApptentiveKit0A0C19InteractionListItemV11displayNameSSvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A0C19InteractionListItemV11displayNameSSvg",
- "mangledName": "$s13ApptentiveKit0A0C19InteractionListItemV11displayNameSSvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "typeName",
- "printedName": "typeName",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit0A0C19InteractionListItemV8typeNameSSvp",
- "mangledName": "$s13ApptentiveKit0A0C19InteractionListItemV8typeNameSSvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A0C19InteractionListItemV8typeNameSSvg",
- "mangledName": "$s13ApptentiveKit0A0C19InteractionListItemV8typeNameSSvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "get"
- }
- ]
- }
- ],
- "declKind": "Struct",
- "usr": "s:13ApptentiveKit0A0C19InteractionListItemV",
- "mangledName": "$s13ApptentiveKit0A0C19InteractionListItemV",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "isFromExtension": true
- },
- {
- "kind": "Function",
- "name": "getEventList",
- "printedName": "getEventList(_:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "([Swift.String]) -> ()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Array",
- "printedName": "[Swift.String]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sa"
- }
- ]
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit0A0C12getEventListyyySaySSGcF",
- "mangledName": "$s13ApptentiveKit0A0C12getEventListyyySaySSGcF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "register",
- "printedName": "register(with:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "ApptentiveConfiguration",
- "printedName": "ApptentiveKit.ApptentiveConfiguration",
- "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveConfiguration"
- }
- ],
- "declKind": "Func",
- "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(cm)registerWithConfiguration:",
- "mangledName": "$s13ApptentiveKit0A0C8register4withyAA0A13ConfigurationC_tFZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "deprecated": true,
- "objc_name": "registerWithConfiguration:",
- "declAttributes": [
- "Dynamic",
- "AccessControl",
- "ObjC",
- "Available"
- ],
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "register",
- "printedName": "register(with:completion:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "ApptentiveConfiguration",
- "printedName": "ApptentiveKit.ApptentiveConfiguration",
- "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveConfiguration"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "((Swift.Bool) -> ())?",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(Swift.Bool) -> ()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ]
- }
- ],
- "hasDefaultArg": true,
- "usr": "s:Sq"
- }
- ],
- "declKind": "Func",
- "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)registerWithConfiguration:completion:",
- "mangledName": "$s13ApptentiveKit0A0C8register4with10completionyAA0A13ConfigurationC_ySbcSgtF",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "objc_name": "registerWithConfiguration:completion:",
- "declAttributes": [
- "Dynamic",
- "AccessControl",
- "ObjC",
- "Available"
- ],
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "sharedConnection",
- "printedName": "sharedConnection()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Apptentive",
- "printedName": "ApptentiveKit.Apptentive",
- "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive"
- }
- ],
- "declKind": "Func",
- "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(cm)sharedConnection",
- "mangledName": "$s13ApptentiveKit0A0C16sharedConnectionACyFZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "deprecated": true,
- "declAttributes": [
- "Dynamic",
- "AccessControl",
- "ObjC",
- "Available"
- ],
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Var",
- "name": "appID",
- "printedName": "appID",
- "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@ApptentiveKit@objc(cs)Apptentive(py)appID",
- "mangledName": "$s13ApptentiveKit0A0C5appIDSSSgvp",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "declAttributes": [
- "Dynamic",
- "AccessControl",
- "ObjC",
- "Available"
- ],
- "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@ApptentiveKit@objc(cs)Apptentive(im)appID",
- "mangledName": "$s13ApptentiveKit0A0C5appIDSSSgvg",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Dynamic",
- "ObjC"
- ],
- "isFromExtension": true,
- "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:@CM@ApptentiveKit@objc(cs)Apptentive(im)setAppID:",
- "mangledName": "$s13ApptentiveKit0A0C5appIDSSSgvs",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Dynamic",
- "ObjC"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "showInfoButton",
- "printedName": "showInfoButton",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(py)showInfoButton",
- "mangledName": "$s13ApptentiveKit0A0C14showInfoButtonSbvp",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "declAttributes": [
- "Dynamic",
- "AccessControl",
- "ObjC",
- "Available"
- ],
- "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@ApptentiveKit@objc(cs)Apptentive(im)showInfoButton",
- "mangledName": "$s13ApptentiveKit0A0C14showInfoButtonSbvg",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Dynamic",
- "ObjC"
- ],
- "isFromExtension": true,
- "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:@CM@ApptentiveKit@objc(cs)Apptentive(im)setShowInfoButton:",
- "mangledName": "$s13ApptentiveKit0A0C14showInfoButtonSbvs",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Dynamic",
- "ObjC"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "surveyTermsAndConditions",
- "printedName": "surveyTermsAndConditions",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "ApptentiveKit.TermsAndConditions?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "TermsAndConditions",
- "printedName": "ApptentiveKit.TermsAndConditions",
- "usr": "c:@M@ApptentiveKit@objc(cs)TermsAndConditions"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(py)surveyTermsAndConditions",
- "mangledName": "$s13ApptentiveKit0A0C24surveyTermsAndConditionsAA0deF0CSgvp",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "declAttributes": [
- "Dynamic",
- "AccessControl",
- "ObjC",
- "Available"
- ],
- "isFromExtension": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "ApptentiveKit.TermsAndConditions?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "TermsAndConditions",
- "printedName": "ApptentiveKit.TermsAndConditions",
- "usr": "c:@M@ApptentiveKit@objc(cs)TermsAndConditions"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)surveyTermsAndConditions",
- "mangledName": "$s13ApptentiveKit0A0C24surveyTermsAndConditionsAA0deF0CSgvg",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Dynamic",
- "ObjC"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "ApptentiveKit.TermsAndConditions?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "TermsAndConditions",
- "printedName": "ApptentiveKit.TermsAndConditions",
- "usr": "c:@M@ApptentiveKit@objc(cs)TermsAndConditions"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)setSurveyTermsAndConditions:",
- "mangledName": "$s13ApptentiveKit0A0C24surveyTermsAndConditionsAA0deF0CSgvs",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Dynamic",
- "ObjC"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveKey",
- "printedName": "apptentiveKey",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(py)apptentiveKey",
- "mangledName": "$s13ApptentiveKit0A0C13apptentiveKeySSvp",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "declAttributes": [
- "Dynamic",
- "AccessControl",
- "ObjC",
- "Available"
- ],
- "isFromExtension": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)apptentiveKey",
- "mangledName": "$s13ApptentiveKit0A0C13apptentiveKeySSvg",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Dynamic",
- "ObjC"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveSignature",
- "printedName": "apptentiveSignature",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(py)apptentiveSignature",
- "mangledName": "$s13ApptentiveKit0A0C19apptentiveSignatureSSvp",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "declAttributes": [
- "Dynamic",
- "AccessControl",
- "ObjC",
- "Available"
- ],
- "isFromExtension": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)apptentiveSignature",
- "mangledName": "$s13ApptentiveKit0A0C19apptentiveSignatureSSvg",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Dynamic",
- "ObjC"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Function",
- "name": "engage",
- "printedName": "engage(_:fromViewController:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "UIKit.UIViewController?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIViewController",
- "printedName": "UIKit.UIViewController",
- "usr": "c:objc(cs)UIViewController"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Func",
- "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)engage:fromViewController:",
- "mangledName": "$s13ApptentiveKit0A0C6engage_18fromViewControllerySS_So06UIViewF0CSgtF",
- "moduleName": "ApptentiveKit",
- "objc_name": "engage:fromViewController:",
- "declAttributes": [
- "Dynamic",
- "AccessControl",
- "ObjC"
- ],
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "engage",
- "printedName": "engage(_:fromViewController:completion:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "UIKit.UIViewController?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIViewController",
- "printedName": "UIKit.UIViewController",
- "usr": "c:objc(cs)UIViewController"
- }
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "((Swift.Bool) -> ())?",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(Swift.Bool) -> ()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ]
- }
- ],
- "hasDefaultArg": true,
- "usr": "s:Sq"
- }
- ],
- "declKind": "Func",
- "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)engage:fromViewController:completion:",
- "mangledName": "$s13ApptentiveKit0A0C6engage_18fromViewController10completionySS_So06UIViewF0CSgySbcSgtF",
- "moduleName": "ApptentiveKit",
- "objc_name": "engage:fromViewController:completion:",
- "declAttributes": [
- "Dynamic",
- "AccessControl",
- "ObjC"
- ],
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "engage",
- "printedName": "engage(event:withCustomData:from:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "[Swift.AnyHashable : Any]?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Dictionary",
- "printedName": "[Swift.AnyHashable : Any]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "AnyHashable",
- "printedName": "Swift.AnyHashable",
- "usr": "s:s11AnyHashableV"
- },
- {
- "kind": "TypeNominal",
- "name": "ProtocolComposition",
- "printedName": "Any"
- }
- ],
- "usr": "s:SD"
- }
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "UIKit.UIViewController?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIViewController",
- "printedName": "UIKit.UIViewController",
- "usr": "c:objc(cs)UIViewController"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Func",
- "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)engage:withCustomData:fromViewController:",
- "mangledName": "$s13ApptentiveKit0A0C6engage5event14withCustomData4fromySS_SDys11AnyHashableVypGSgSo16UIViewControllerCSgtF",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "objc_name": "engage:withCustomData:fromViewController:",
- "declAttributes": [
- "Dynamic",
- "AccessControl",
- "ObjC",
- "Available"
- ],
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "engage",
- "printedName": "engage(event:withCustomData:from:completion:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "[Swift.AnyHashable : Any]?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Dictionary",
- "printedName": "[Swift.AnyHashable : Any]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "AnyHashable",
- "printedName": "Swift.AnyHashable",
- "usr": "s:s11AnyHashableV"
- },
- {
- "kind": "TypeNominal",
- "name": "ProtocolComposition",
- "printedName": "Any"
- }
- ],
- "usr": "s:SD"
- }
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "UIKit.UIViewController?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIViewController",
- "printedName": "UIKit.UIViewController",
- "usr": "c:objc(cs)UIViewController"
- }
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "((Swift.Bool) -> ())?",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(Swift.Bool) -> ()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ]
- }
- ],
- "hasDefaultArg": true,
- "usr": "s:Sq"
- }
- ],
- "declKind": "Func",
- "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)engage:withCustomData:fromViewController:completion:",
- "mangledName": "$s13ApptentiveKit0A0C6engage5event14withCustomData4from10completionySS_SDys11AnyHashableVypGSgSo16UIViewControllerCSgySbcSgtF",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "objc_name": "engage:withCustomData:fromViewController:completion:",
- "declAttributes": [
- "Dynamic",
- "AccessControl",
- "ObjC",
- "Available"
- ],
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "engage",
- "printedName": "engage(event:withCustomData:withExtendedData:from:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "[Swift.AnyHashable : Any]?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Dictionary",
- "printedName": "[Swift.AnyHashable : Any]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "AnyHashable",
- "printedName": "Swift.AnyHashable",
- "usr": "s:s11AnyHashableV"
- },
- {
- "kind": "TypeNominal",
- "name": "ProtocolComposition",
- "printedName": "Any"
- }
- ],
- "usr": "s:SD"
- }
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "[[Swift.AnyHashable : Any]]?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Array",
- "printedName": "[[Swift.AnyHashable : Any]]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Dictionary",
- "printedName": "[Swift.AnyHashable : Any]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "AnyHashable",
- "printedName": "Swift.AnyHashable",
- "usr": "s:s11AnyHashableV"
- },
- {
- "kind": "TypeNominal",
- "name": "ProtocolComposition",
- "printedName": "Any"
- }
- ],
- "usr": "s:SD"
- }
- ],
- "usr": "s:Sa"
- }
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "UIKit.UIViewController?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIViewController",
- "printedName": "UIKit.UIViewController",
- "usr": "c:objc(cs)UIViewController"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Func",
- "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)engage:withCustomData:withExtendedData:fromViewController:",
- "mangledName": "$s13ApptentiveKit0A0C6engage5event14withCustomData0e8ExtendedG04fromySS_SDys11AnyHashableVypGSgSayAKGSgSo16UIViewControllerCSgtF",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "objc_name": "engage:withCustomData:withExtendedData:fromViewController:",
- "declAttributes": [
- "Dynamic",
- "AccessControl",
- "ObjC",
- "Available"
- ],
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "engage",
- "printedName": "engage(event:withCustomData:withExtendedData:from:completion:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "[Swift.AnyHashable : Any]?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Dictionary",
- "printedName": "[Swift.AnyHashable : Any]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "AnyHashable",
- "printedName": "Swift.AnyHashable",
- "usr": "s:s11AnyHashableV"
- },
- {
- "kind": "TypeNominal",
- "name": "ProtocolComposition",
- "printedName": "Any"
- }
- ],
- "usr": "s:SD"
- }
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "[[Swift.AnyHashable : Any]]?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Array",
- "printedName": "[[Swift.AnyHashable : Any]]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Dictionary",
- "printedName": "[Swift.AnyHashable : Any]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "AnyHashable",
- "printedName": "Swift.AnyHashable",
- "usr": "s:s11AnyHashableV"
- },
- {
- "kind": "TypeNominal",
- "name": "ProtocolComposition",
- "printedName": "Any"
- }
- ],
- "usr": "s:SD"
- }
- ],
- "usr": "s:Sa"
- }
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "UIKit.UIViewController?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIViewController",
- "printedName": "UIKit.UIViewController",
- "usr": "c:objc(cs)UIViewController"
- }
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "((Swift.Bool) -> ())?",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(Swift.Bool) -> ()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ]
- }
- ],
- "hasDefaultArg": true,
- "usr": "s:Sq"
- }
- ],
- "declKind": "Func",
- "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)engage:withCustomData:withExtendedData:fromViewController:completion:",
- "mangledName": "$s13ApptentiveKit0A0C6engage5event14withCustomData0e8ExtendedG04from10completionySS_SDys11AnyHashableVypGSgSayALGSgSo16UIViewControllerCSgySbcSgtF",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "objc_name": "engage:withCustomData:withExtendedData:fromViewController:completion:",
- "declAttributes": [
- "Dynamic",
- "AccessControl",
- "ObjC",
- "Available"
- ],
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "queryCanShowInteraction",
- "printedName": "queryCanShowInteraction(forEvent:completion:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- },
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(Swift.Bool) -> ()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ]
- }
- ],
- "declKind": "Func",
- "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)queryCanShowInteractionForEvent:completion:",
- "mangledName": "$s13ApptentiveKit0A0C23queryCanShowInteraction8forEvent10completionySS_ySbctF",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "objc_name": "queryCanShowInteractionForEvent:completion:",
- "declAttributes": [
- "Dynamic",
- "AccessControl",
- "ObjC",
- "Available"
- ],
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "extendedData",
- "printedName": "extendedData(date:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Dictionary",
- "printedName": "[Swift.AnyHashable : Any]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "AnyHashable",
- "printedName": "Swift.AnyHashable",
- "usr": "s:s11AnyHashableV"
- },
- {
- "kind": "TypeNominal",
- "name": "ProtocolComposition",
- "printedName": "Any"
- }
- ],
- "usr": "s:SD"
- },
- {
- "kind": "TypeNominal",
- "name": "Date",
- "printedName": "Foundation.Date",
- "usr": "s:10Foundation4DateV"
- }
- ],
- "declKind": "Func",
- "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(cm)extendedDataDate:",
- "mangledName": "$s13ApptentiveKit0A0C12extendedData4dateSDys11AnyHashableVypG10Foundation4DateV_tFZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "deprecated": true,
- "objc_name": "extendedDataDate:",
- "declAttributes": [
- "Dynamic",
- "AccessControl",
- "ObjC",
- "Available"
- ],
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "extendedData",
- "printedName": "extendedData(latitude:longitude:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Dictionary",
- "printedName": "[Swift.AnyHashable : Any]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "AnyHashable",
- "printedName": "Swift.AnyHashable",
- "usr": "s:s11AnyHashableV"
- },
- {
- "kind": "TypeNominal",
- "name": "ProtocolComposition",
- "printedName": "Any"
- }
- ],
- "usr": "s:SD"
- },
- {
- "kind": "TypeNominal",
- "name": "Double",
- "printedName": "Swift.Double",
- "usr": "s:Sd"
- },
- {
- "kind": "TypeNominal",
- "name": "Double",
- "printedName": "Swift.Double",
- "usr": "s:Sd"
- }
- ],
- "declKind": "Func",
- "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(cm)extendedDataLocationForLatitude:longitude:",
- "mangledName": "$s13ApptentiveKit0A0C12extendedData8latitude9longitudeSDys11AnyHashableVypGSd_SdtFZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "deprecated": true,
- "objc_name": "extendedDataLocationForLatitude:longitude:",
- "declAttributes": [
- "Dynamic",
- "AccessControl",
- "ObjC",
- "Available"
- ],
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "extendedData",
- "printedName": "extendedData(transactionID:affiliation:revenue:shipping:tax:currency:commerceItems:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Dictionary",
- "printedName": "[Swift.AnyHashable : Any]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "AnyHashable",
- "printedName": "Swift.AnyHashable",
- "usr": "s:s11AnyHashableV"
- },
- {
- "kind": "TypeNominal",
- "name": "ProtocolComposition",
- "printedName": "Any"
- }
- ],
- "usr": "s:SD"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Foundation.NSNumber?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "NSNumber",
- "printedName": "Foundation.NSNumber",
- "usr": "c:objc(cs)NSNumber"
- }
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Foundation.NSNumber?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "NSNumber",
- "printedName": "Foundation.NSNumber",
- "usr": "c:objc(cs)NSNumber"
- }
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Foundation.NSNumber?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "NSNumber",
- "printedName": "Foundation.NSNumber",
- "usr": "c:objc(cs)NSNumber"
- }
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "[[Swift.AnyHashable : Any]]?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Array",
- "printedName": "[[Swift.AnyHashable : Any]]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Dictionary",
- "printedName": "[Swift.AnyHashable : Any]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "AnyHashable",
- "printedName": "Swift.AnyHashable",
- "usr": "s:s11AnyHashableV"
- },
- {
- "kind": "TypeNominal",
- "name": "ProtocolComposition",
- "printedName": "Any"
- }
- ],
- "usr": "s:SD"
- }
- ],
- "usr": "s:Sa"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Func",
- "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(cm)extendedDataCommerceWithTransactionID:affiliation:revenue:shipping:tax:currency:commerceItems:",
- "mangledName": "$s13ApptentiveKit0A0C12extendedData13transactionID11affiliation7revenue8shipping3tax8currency13commerceItemsSDys11AnyHashableVypGSSSg_AOSo8NSNumberCSgA2rOSayANGSgtFZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "deprecated": true,
- "objc_name": "extendedDataCommerceWithTransactionID:affiliation:revenue:shipping:tax:currency:commerceItems:",
- "declAttributes": [
- "Dynamic",
- "AccessControl",
- "ObjC",
- "Available"
- ],
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "extendedData",
- "printedName": "extendedData(itemID:name:category:price:quantity:currency:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Dictionary",
- "printedName": "[Swift.AnyHashable : Any]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "AnyHashable",
- "printedName": "Swift.AnyHashable",
- "usr": "s:s11AnyHashableV"
- },
- {
- "kind": "TypeNominal",
- "name": "ProtocolComposition",
- "printedName": "Any"
- }
- ],
- "usr": "s:SD"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Foundation.NSNumber?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "NSNumber",
- "printedName": "Foundation.NSNumber",
- "usr": "c:objc(cs)NSNumber"
- }
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Foundation.NSNumber?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "NSNumber",
- "printedName": "Foundation.NSNumber",
- "usr": "c:objc(cs)NSNumber"
- }
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Func",
- "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(cm)extendedDataCommerceItemWithItemID:name:category:price:quantity:currency:",
- "mangledName": "$s13ApptentiveKit0A0C12extendedData6itemID4name8category5price8quantity8currencySDys11AnyHashableVypGSSSg_A2NSo8NSNumberCSgAqNtFZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "deprecated": true,
- "objc_name": "extendedDataCommerceItemWithItemID:name:category:price:quantity:currency:",
- "declAttributes": [
- "Dynamic",
- "AccessControl",
- "ObjC",
- "Available"
- ],
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "queryCanShowMessageCenter",
- "printedName": "queryCanShowMessageCenter(completion:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(Swift.Bool) -> ()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ]
- }
- ],
- "declKind": "Func",
- "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)queryCanShowMessageCenterWithCompletion:",
- "mangledName": "$s13ApptentiveKit0A0C25queryCanShowMessageCenter10completionyySbc_tF",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "objc_name": "queryCanShowMessageCenterWithCompletion:",
- "declAttributes": [
- "Dynamic",
- "AccessControl",
- "ObjC",
- "Available"
- ],
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "presentMessageCenterCompat",
- "printedName": "presentMessageCenterCompat(from:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "UIKit.UIViewController?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIViewController",
- "printedName": "UIKit.UIViewController",
- "usr": "c:objc(cs)UIViewController"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Func",
- "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)presentMessageCenterFromViewController:",
- "mangledName": "$s13ApptentiveKit0A0C26presentMessageCenterCompat4fromySo16UIViewControllerCSg_tF",
- "moduleName": "ApptentiveKit",
- "objc_name": "presentMessageCenterFromViewController:",
- "declAttributes": [
- "Dynamic",
- "AccessControl",
- "ObjC"
- ],
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "presentMessageCenterCompat",
- "printedName": "presentMessageCenterCompat(from:completion:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "UIKit.UIViewController?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIViewController",
- "printedName": "UIKit.UIViewController",
- "usr": "c:objc(cs)UIViewController"
- }
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "((Swift.Bool) -> ())?",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(Swift.Bool) -> ()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ]
- }
- ],
- "hasDefaultArg": true,
- "usr": "s:Sq"
- }
- ],
- "declKind": "Func",
- "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)presentMessageCenterFromViewController:completion:",
- "mangledName": "$s13ApptentiveKit0A0C26presentMessageCenterCompat4from10completionySo16UIViewControllerCSg_ySbcSgtF",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "objc_name": "presentMessageCenterFromViewController:completion:",
- "declAttributes": [
- "Dynamic",
- "AccessControl",
- "ObjC",
- "Available"
- ],
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "presentMessageCenterCompat",
- "printedName": "presentMessageCenterCompat(from:withCustomData:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "UIKit.UIViewController?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIViewController",
- "printedName": "UIKit.UIViewController",
- "usr": "c:objc(cs)UIViewController"
- }
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "[Swift.AnyHashable : Any]?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Dictionary",
- "printedName": "[Swift.AnyHashable : Any]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "AnyHashable",
- "printedName": "Swift.AnyHashable",
- "usr": "s:s11AnyHashableV"
- },
- {
- "kind": "TypeNominal",
- "name": "ProtocolComposition",
- "printedName": "Any"
- }
- ],
- "usr": "s:SD"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Func",
- "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)presentMessageCenterFromViewController:withCustomData:",
- "mangledName": "$s13ApptentiveKit0A0C26presentMessageCenterCompat4from14withCustomDataySo16UIViewControllerCSg_SDys11AnyHashableVypGSgtF",
- "moduleName": "ApptentiveKit",
- "objc_name": "presentMessageCenterFromViewController:withCustomData:",
- "declAttributes": [
- "Dynamic",
- "AccessControl",
- "ObjC"
- ],
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "presentMessageCenterCompat",
- "printedName": "presentMessageCenterCompat(from:withCustomData:completion:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "UIKit.UIViewController?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIViewController",
- "printedName": "UIKit.UIViewController",
- "usr": "c:objc(cs)UIViewController"
- }
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "[Swift.AnyHashable : Any]?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Dictionary",
- "printedName": "[Swift.AnyHashable : Any]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "AnyHashable",
- "printedName": "Swift.AnyHashable",
- "usr": "s:s11AnyHashableV"
- },
- {
- "kind": "TypeNominal",
- "name": "ProtocolComposition",
- "printedName": "Any"
- }
- ],
- "usr": "s:SD"
- }
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "((Swift.Bool) -> ())?",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(Swift.Bool) -> ()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ]
- }
- ],
- "hasDefaultArg": true,
- "usr": "s:Sq"
- }
- ],
- "declKind": "Func",
- "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)presentMessageCenterFromViewController:withCustomData:completion:",
- "mangledName": "$s13ApptentiveKit0A0C26presentMessageCenterCompat4from14withCustomData10completionySo16UIViewControllerCSg_SDys11AnyHashableVypGSgySbcSgtF",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "objc_name": "presentMessageCenterFromViewController:withCustomData:completion:",
- "declAttributes": [
- "Dynamic",
- "AccessControl",
- "ObjC",
- "Available"
- ],
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "dismissMessageCenter",
- "printedName": "dismissMessageCenter(animated:completion:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "(() -> ())?",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "() -> ()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ]
- }
- ],
- "hasDefaultArg": true,
- "usr": "s:Sq"
- }
- ],
- "declKind": "Func",
- "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)dismissMessageCenterWithAnimated:completion:",
- "mangledName": "$s13ApptentiveKit0A0C20dismissMessageCenter8animated10completionySb_yycSgtF",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "objc_name": "dismissMessageCenterWithAnimated:completion:",
- "declAttributes": [
- "Dynamic",
- "AccessControl",
- "ObjC",
- "Available"
- ],
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "unreadMessageCountAccessoryView",
- "printedName": "unreadMessageCountAccessoryView(apptentiveHeart:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIView",
- "printedName": "UIKit.UIView",
- "usr": "c:objc(cs)UIView"
- },
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ],
- "declKind": "Func",
- "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)unreadMessageCountAccessoryViewWithApptentiveHeart:",
- "mangledName": "$s13ApptentiveKit0A0C31unreadMessageCountAccessoryView15apptentiveHeartSo6UIViewCSb_tF",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "objc_name": "unreadMessageCountAccessoryViewWithApptentiveHeart:",
- "declAttributes": [
- "Dynamic",
- "AccessControl",
- "ObjC",
- "Available"
- ],
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "openAppStore",
- "printedName": "openAppStore()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Func",
- "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)openAppStore",
- "mangledName": "$s13ApptentiveKit0A0C12openAppStoreyyF",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "declAttributes": [
- "Dynamic",
- "AccessControl",
- "ObjC",
- "Available"
- ],
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "setPushProvider",
- "printedName": "setPushProvider(_:deviceToken:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "ApptentivePushProvider",
- "printedName": "ApptentiveKit.ApptentivePushProvider",
- "usr": "c:@M@ApptentiveKit@E@ApptentivePushProvider"
- },
- {
- "kind": "TypeNominal",
- "name": "Data",
- "printedName": "Foundation.Data",
- "usr": "s:10Foundation4DataV"
- }
- ],
- "declKind": "Func",
- "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)setPushProvider:deviceToken:",
- "mangledName": "$s13ApptentiveKit0A0C15setPushProvider_11deviceTokenyAA0adE0O_10Foundation4DataVtF",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "declAttributes": [
- "Dynamic",
- "AccessControl",
- "ObjC",
- "Available"
- ],
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "didReceveUserNotificationResponse",
- "printedName": "didReceveUserNotificationResponse(_:from:withCompletionHandler:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- },
- {
- "kind": "TypeNominal",
- "name": "UNNotificationResponse",
- "printedName": "UserNotifications.UNNotificationResponse",
- "usr": "c:objc(cs)UNNotificationResponse"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "UIKit.UIViewController?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIViewController",
- "printedName": "UIKit.UIViewController",
- "usr": "c:objc(cs)UIViewController"
- }
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "() -> ()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ]
- }
- ],
- "declKind": "Func",
- "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)didReceveUserNotificationResponse:from:withCompletionHandler:",
- "mangledName": "$s13ApptentiveKit0A0C33didReceveUserNotificationResponse_4from21withCompletionHandlerSbSo014UNNotificationG0C_So16UIViewControllerCSgyyctF",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "declAttributes": [
- "Dynamic",
- "AccessControl",
- "ObjC",
- "Available"
- ],
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Var",
- "name": "advertisingIdentifier",
- "printedName": "advertisingIdentifier",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Foundation.UUID?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UUID",
- "printedName": "Foundation.UUID",
- "usr": "s:10Foundation4UUIDV"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(py)advertisingIdentifier",
- "mangledName": "$s13ApptentiveKit0A0C21advertisingIdentifier10Foundation4UUIDVSgvp",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "declAttributes": [
- "Dynamic",
- "AccessControl",
- "ObjC",
- "Available"
- ],
- "isFromExtension": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Foundation.UUID?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UUID",
- "printedName": "Foundation.UUID",
- "usr": "s:10Foundation4UUIDV"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)advertisingIdentifier",
- "mangledName": "$s13ApptentiveKit0A0C21advertisingIdentifier10Foundation4UUIDVSgvg",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Dynamic",
- "ObjC"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Foundation.UUID?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UUID",
- "printedName": "Foundation.UUID",
- "usr": "s:10Foundation4UUIDV"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)setAdvertisingIdentifier:",
- "mangledName": "$s13ApptentiveKit0A0C21advertisingIdentifier10Foundation4UUIDVSgvs",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Dynamic",
- "ObjC"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "mParticleId",
- "printedName": "mParticleId",
- "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@ApptentiveKit@objc(cs)Apptentive(py)mParticleId",
- "mangledName": "$s13ApptentiveKit0A0C11mParticleIdSSSgvp",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "declAttributes": [
- "Dynamic",
- "AccessControl",
- "ObjC",
- "Available"
- ],
- "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@ApptentiveKit@objc(cs)Apptentive(im)mParticleId",
- "mangledName": "$s13ApptentiveKit0A0C11mParticleIdSSSgvg",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Dynamic",
- "ObjC"
- ],
- "isFromExtension": true,
- "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:@CM@ApptentiveKit@objc(cs)Apptentive(im)setMParticleId:",
- "mangledName": "$s13ApptentiveKit0A0C11mParticleIdSSSgvs",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Dynamic",
- "ObjC"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- }
- ]
- },
- {
- "kind": "Function",
- "name": "removeCustomPersonData",
- "printedName": "removeCustomPersonData(withKey:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Func",
- "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)removeCustomPersonDataWithKey:",
- "mangledName": "$s13ApptentiveKit0A0C22removeCustomPersonData7withKeyySS_tF",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "objc_name": "removeCustomPersonDataWithKey:",
- "declAttributes": [
- "Dynamic",
- "AccessControl",
- "ObjC",
- "Available"
- ],
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "removeCustomDeviceData",
- "printedName": "removeCustomDeviceData(withKey:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Func",
- "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)removeCustomDeviceDataWithKey:",
- "mangledName": "$s13ApptentiveKit0A0C22removeCustomDeviceData7withKeyySS_tF",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "objc_name": "removeCustomDeviceDataWithKey:",
- "declAttributes": [
- "Dynamic",
- "AccessControl",
- "ObjC",
- "Available"
- ],
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "addCustomDeviceData",
- "printedName": "addCustomDeviceData(_:withKey:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Func",
- "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)addCustomDeviceDataString:withKey:",
- "mangledName": "$s13ApptentiveKit0A0C19addCustomDeviceData_7withKeyySS_SStF",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "objc_name": "addCustomDeviceDataString:withKey:",
- "declAttributes": [
- "Dynamic",
- "AccessControl",
- "ObjC",
- "Available"
- ],
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "addCustomDeviceData",
- "printedName": "addCustomDeviceData(_:withKey:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "NSNumber",
- "printedName": "Foundation.NSNumber",
- "usr": "c:objc(cs)NSNumber"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Func",
- "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)addCustomDeviceDataNumber:withKey:",
- "mangledName": "$s13ApptentiveKit0A0C19addCustomDeviceData_7withKeyySo8NSNumberC_SStF",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "objc_name": "addCustomDeviceDataNumber:withKey:",
- "declAttributes": [
- "Dynamic",
- "AccessControl",
- "ObjC",
- "Available"
- ],
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "addCustomDeviceData",
- "printedName": "addCustomDeviceData(_:withKey:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Func",
- "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)addCustomDeviceDataBool:withKey:",
- "mangledName": "$s13ApptentiveKit0A0C19addCustomDeviceData_7withKeyySb_SStF",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "objc_name": "addCustomDeviceDataBool:withKey:",
- "declAttributes": [
- "Dynamic",
- "AccessControl",
- "ObjC",
- "Available"
- ],
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "addCustomPersonData",
- "printedName": "addCustomPersonData(_:withKey:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Func",
- "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)addCustomPersonDataString:withKey:",
- "mangledName": "$s13ApptentiveKit0A0C19addCustomPersonData_7withKeyySS_SStF",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "objc_name": "addCustomPersonDataString:withKey:",
- "declAttributes": [
- "Dynamic",
- "AccessControl",
- "ObjC",
- "Available"
- ],
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "addCustomPersonData",
- "printedName": "addCustomPersonData(_:withKey:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "NSNumber",
- "printedName": "Foundation.NSNumber",
- "usr": "c:objc(cs)NSNumber"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Func",
- "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)addCustomPersonDataNumber:withKey:",
- "mangledName": "$s13ApptentiveKit0A0C19addCustomPersonData_7withKeyySo8NSNumberC_SStF",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "objc_name": "addCustomPersonDataNumber:withKey:",
- "declAttributes": [
- "Dynamic",
- "AccessControl",
- "ObjC",
- "Available"
- ],
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "addCustomPersonData",
- "printedName": "addCustomPersonData(_:withKey:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Func",
- "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)addCustomPersonDataBool:withKey:",
- "mangledName": "$s13ApptentiveKit0A0C19addCustomPersonData_7withKeyySb_SStF",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "objc_name": "addCustomPersonDataBool:withKey:",
- "declAttributes": [
- "Dynamic",
- "AccessControl",
- "ObjC",
- "Available"
- ],
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Var",
- "name": "styleSheet",
- "printedName": "styleSheet",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Any?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ProtocolComposition",
- "printedName": "Any"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(py)styleSheet",
- "mangledName": "$s13ApptentiveKit0A0C10styleSheetypSgvp",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "declAttributes": [
- "Dynamic",
- "AccessControl",
- "ObjC",
- "Available"
- ],
- "isFromExtension": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Any?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ProtocolComposition",
- "printedName": "Any"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)styleSheet",
- "mangledName": "$s13ApptentiveKit0A0C10styleSheetypSgvg",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Dynamic",
- "ObjC"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Any?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ProtocolComposition",
- "printedName": "Any"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)setStyleSheet:",
- "mangledName": "$s13ApptentiveKit0A0C10styleSheetypSgvs",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Dynamic",
- "ObjC"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- }
- ]
- },
- {
- "kind": "Function",
- "name": "checkSDKConfiguration",
- "printedName": "checkSDKConfiguration()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Func",
- "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)checkSDKConfiguration",
- "mangledName": "$s13ApptentiveKit0A0C21checkSDKConfigurationyyF",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "declAttributes": [
- "Dynamic",
- "AccessControl",
- "ObjC",
- "Available"
- ],
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "logIn",
- "printedName": "logIn(withToken:completion:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- },
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(Swift.Bool, Swift.Error) -> ()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Tuple",
- "printedName": "(Swift.Bool, Swift.Error)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- },
- {
- "kind": "TypeNominal",
- "name": "Error",
- "printedName": "Swift.Error",
- "usr": "s:s5ErrorP"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "Func",
- "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)logInWithToken:completion:",
- "mangledName": "$s13ApptentiveKit0A0C5logIn9withToken10completionySS_ySb_s5Error_ptctF",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "objc_name": "logInWithToken:completion:",
- "declAttributes": [
- "Dynamic",
- "AccessControl",
- "ObjC",
- "Available"
- ],
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "logOut",
- "printedName": "logOut()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Func",
- "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)logOut",
- "mangledName": "$s13ApptentiveKit0A0C6logOutyyF",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "declAttributes": [
- "Dynamic",
- "AccessControl",
- "ObjC",
- "Available"
- ],
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Var",
- "name": "authenticationFailureCallback",
- "printedName": "authenticationFailureCallback",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "((ApptentiveKit.ApptentiveAuthenticationFailureReason, Swift.String) -> ())?",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.ApptentiveAuthenticationFailureReason, Swift.String) -> ()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Tuple",
- "printedName": "(ApptentiveKit.ApptentiveAuthenticationFailureReason, Swift.String)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveAuthenticationFailureReason",
- "printedName": "ApptentiveKit.ApptentiveAuthenticationFailureReason",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveAuthenticationFailureReason"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ]
- }
- ]
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(py)authenticationFailureCallback",
- "mangledName": "$s13ApptentiveKit0A0C29authenticationFailureCallbackyAA0a14AuthenticationD6ReasonO_SStcSgvp",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "declAttributes": [
- "Dynamic",
- "AccessControl",
- "ObjC",
- "Available"
- ],
- "isFromExtension": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "((ApptentiveKit.ApptentiveAuthenticationFailureReason, Swift.String) -> ())?",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.ApptentiveAuthenticationFailureReason, Swift.String) -> ()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Tuple",
- "printedName": "(ApptentiveKit.ApptentiveAuthenticationFailureReason, Swift.String)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveAuthenticationFailureReason",
- "printedName": "ApptentiveKit.ApptentiveAuthenticationFailureReason",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveAuthenticationFailureReason"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ]
- }
- ]
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)authenticationFailureCallback",
- "mangledName": "$s13ApptentiveKit0A0C29authenticationFailureCallbackyAA0a14AuthenticationD6ReasonO_SStcSgvg",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Dynamic",
- "ObjC"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "((ApptentiveKit.ApptentiveAuthenticationFailureReason, Swift.String) -> ())?",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.ApptentiveAuthenticationFailureReason, Swift.String) -> ()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Tuple",
- "printedName": "(ApptentiveKit.ApptentiveAuthenticationFailureReason, Swift.String)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveAuthenticationFailureReason",
- "printedName": "ApptentiveKit.ApptentiveAuthenticationFailureReason",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveAuthenticationFailureReason"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ]
- }
- ]
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)setAuthenticationFailureCallback:",
- "mangledName": "$s13ApptentiveKit0A0C29authenticationFailureCallbackyAA0a14AuthenticationD6ReasonO_SStcSgvs",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Dynamic",
- "ObjC"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "preInteractionCallback",
- "printedName": "preInteractionCallback",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "((Swift.String, [Swift.AnyHashable : Any]?) -> Swift.Bool)?",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(Swift.String, [Swift.AnyHashable : Any]?) -> Swift.Bool",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- },
- {
- "kind": "TypeNominal",
- "name": "Tuple",
- "printedName": "(Swift.String, [Swift.AnyHashable : Any]?)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "[Swift.AnyHashable : Any]?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Dictionary",
- "printedName": "[Swift.AnyHashable : Any]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "AnyHashable",
- "printedName": "Swift.AnyHashable",
- "usr": "s:s11AnyHashableV"
- },
- {
- "kind": "TypeNominal",
- "name": "ProtocolComposition",
- "printedName": "Any"
- }
- ],
- "usr": "s:SD"
- }
- ],
- "usr": "s:Sq"
- }
- ]
- }
- ]
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(py)preInteractionCallback",
- "mangledName": "$s13ApptentiveKit0A0C22preInteractionCallbackSbSS_SDys11AnyHashableVypGSgtcSgvp",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "declAttributes": [
- "Dynamic",
- "AccessControl",
- "ObjC",
- "Available"
- ],
- "isFromExtension": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "((Swift.String, [Swift.AnyHashable : Any]?) -> Swift.Bool)?",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(Swift.String, [Swift.AnyHashable : Any]?) -> Swift.Bool",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- },
- {
- "kind": "TypeNominal",
- "name": "Tuple",
- "printedName": "(Swift.String, [Swift.AnyHashable : Any]?)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "[Swift.AnyHashable : Any]?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Dictionary",
- "printedName": "[Swift.AnyHashable : Any]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "AnyHashable",
- "printedName": "Swift.AnyHashable",
- "usr": "s:s11AnyHashableV"
- },
- {
- "kind": "TypeNominal",
- "name": "ProtocolComposition",
- "printedName": "Any"
- }
- ],
- "usr": "s:SD"
- }
- ],
- "usr": "s:Sq"
- }
- ]
- }
- ]
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)preInteractionCallback",
- "mangledName": "$s13ApptentiveKit0A0C22preInteractionCallbackSbSS_SDys11AnyHashableVypGSgtcSgvg",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Dynamic",
- "ObjC"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "((Swift.String, [Swift.AnyHashable : Any]?) -> Swift.Bool)?",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(Swift.String, [Swift.AnyHashable : Any]?) -> Swift.Bool",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- },
- {
- "kind": "TypeNominal",
- "name": "Tuple",
- "printedName": "(Swift.String, [Swift.AnyHashable : Any]?)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "[Swift.AnyHashable : Any]?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Dictionary",
- "printedName": "[Swift.AnyHashable : Any]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "AnyHashable",
- "printedName": "Swift.AnyHashable",
- "usr": "s:s11AnyHashableV"
- },
- {
- "kind": "TypeNominal",
- "name": "ProtocolComposition",
- "printedName": "Any"
- }
- ],
- "usr": "s:SD"
- }
- ],
- "usr": "s:Sq"
- }
- ]
- }
- ]
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)setPreInteractionCallback:",
- "mangledName": "$s13ApptentiveKit0A0C22preInteractionCallbackSbSS_SDys11AnyHashableVypGSgtcSgvs",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Dynamic",
- "ObjC"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- }
- ]
- },
- {
- "kind": "Function",
- "name": "updateToken",
- "printedName": "updateToken(_:completion:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "((Swift.Bool) -> ())?",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(Swift.Bool) -> ()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ]
- }
- ],
- "hasDefaultArg": true,
- "usr": "s:Sq"
- }
- ],
- "declKind": "Func",
- "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)updateToken:completion:",
- "mangledName": "$s13ApptentiveKit0A0C11updateToken_10completionySS_ySbcSgtF",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "declAttributes": [
- "Dynamic",
- "AccessControl",
- "ObjC",
- "Available"
- ],
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Var",
- "name": "logLevel",
- "printedName": "logLevel",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveLogLevel",
- "printedName": "ApptentiveKit.ApptentiveLogLevel",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveLogLevel"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(py)logLevel",
- "mangledName": "$s13ApptentiveKit0A0C8logLevelAA0a3LogD0Ovp",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "declAttributes": [
- "Dynamic",
- "AccessControl",
- "ObjC",
- "Available"
- ],
- "isFromExtension": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveLogLevel",
- "printedName": "ApptentiveKit.ApptentiveLogLevel",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveLogLevel"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)logLevel",
- "mangledName": "$s13ApptentiveKit0A0C8logLevelAA0a3LogD0Ovg",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Dynamic",
- "ObjC"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "ApptentiveLogLevel",
- "printedName": "ApptentiveKit.ApptentiveLogLevel",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveLogLevel"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)setLogLevel:",
- "mangledName": "$s13ApptentiveKit0A0C8logLevelAA0a3LogD0Ovs",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Dynamic",
- "ObjC"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- }
- ]
- }
- ],
- "declKind": "Class",
- "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive",
- "mangledName": "$s13ApptentiveKit0A0C",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment",
- "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": "TypeDecl",
- "name": "ApptentiveError",
- "printedName": "ApptentiveError",
- "children": [
- {
- "kind": "Var",
- "name": "internalInconsistency",
- "printedName": "internalInconsistency",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.ApptentiveError.Type) -> ApptentiveKit.ApptentiveError",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveError",
- "printedName": "ApptentiveKit.ApptentiveError",
- "usr": "s:13ApptentiveKit0A5ErrorO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.ApptentiveError.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveError",
- "printedName": "ApptentiveKit.ApptentiveError",
- "usr": "s:13ApptentiveKit0A5ErrorO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:13ApptentiveKit0A5ErrorO21internalInconsistencyyA2CmF",
- "mangledName": "$s13ApptentiveKit0A5ErrorO21internalInconsistencyyA2CmF",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "Var",
- "name": "invalidCustomDataType",
- "printedName": "invalidCustomDataType",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.ApptentiveError.Type) -> (Any?) -> ApptentiveKit.ApptentiveError",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(Any?) -> ApptentiveKit.ApptentiveError",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveError",
- "printedName": "ApptentiveKit.ApptentiveError",
- "usr": "s:13ApptentiveKit0A5ErrorO"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Any?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ProtocolComposition",
- "printedName": "Any"
- }
- ],
- "usr": "s:Sq"
- }
- ]
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.ApptentiveError.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveError",
- "printedName": "ApptentiveKit.ApptentiveError",
- "usr": "s:13ApptentiveKit0A5ErrorO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:13ApptentiveKit0A5ErrorO21invalidCustomDataTypeyACypSgcACmF",
- "mangledName": "$s13ApptentiveKit0A5ErrorO21invalidCustomDataTypeyACypSgcACmF",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "Var",
- "name": "fileExistsAtContainerDirectoryPath",
- "printedName": "fileExistsAtContainerDirectoryPath",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.ApptentiveError.Type) -> ApptentiveKit.ApptentiveError",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveError",
- "printedName": "ApptentiveKit.ApptentiveError",
- "usr": "s:13ApptentiveKit0A5ErrorO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.ApptentiveError.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveError",
- "printedName": "ApptentiveKit.ApptentiveError",
- "usr": "s:13ApptentiveKit0A5ErrorO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:13ApptentiveKit0A5ErrorO34fileExistsAtContainerDirectoryPathyA2CmF",
- "mangledName": "$s13ApptentiveKit0A5ErrorO34fileExistsAtContainerDirectoryPathyA2CmF",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "Var",
- "name": "mismatchedCredentials",
- "printedName": "mismatchedCredentials",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.ApptentiveError.Type) -> ApptentiveKit.ApptentiveError",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveError",
- "printedName": "ApptentiveKit.ApptentiveError",
- "usr": "s:13ApptentiveKit0A5ErrorO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.ApptentiveError.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveError",
- "printedName": "ApptentiveKit.ApptentiveError",
- "usr": "s:13ApptentiveKit0A5ErrorO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:13ApptentiveKit0A5ErrorO21mismatchedCredentialsyA2CmF",
- "mangledName": "$s13ApptentiveKit0A5ErrorO21mismatchedCredentialsyA2CmF",
- "moduleName": "ApptentiveKit"
- }
- ],
- "declKind": "Enum",
- "usr": "s:13ApptentiveKit0A5ErrorO",
- "mangledName": "$s13ApptentiveKit0A5ErrorO",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl"
- ],
- "conformances": [
- {
- "kind": "Conformance",
- "name": "Error",
- "printedName": "Error",
- "usr": "s:s5ErrorP",
- "mangledName": "$ss5ErrorP"
- },
- {
- "kind": "Conformance",
- "name": "Sendable",
- "printedName": "Sendable",
- "usr": "s:s8SendableP",
- "mangledName": "$ss8SendableP"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveAssertionHandler",
- "printedName": "apptentiveAssertionHandler",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(@autoclosure () -> Swift.String, Swift.StaticString, Swift.UInt) -> ()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Tuple",
- "printedName": "(@autoclosure () -> Swift.String, Swift.StaticString, Swift.UInt)",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "() -> Swift.String",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- },
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "typeAttributes": [
- "noescape"
- ]
- },
- {
- "kind": "TypeNominal",
- "name": "StaticString",
- "printedName": "Swift.StaticString",
- "usr": "s:s12StaticStringV"
- },
- {
- "kind": "TypeNominal",
- "name": "UInt",
- "printedName": "Swift.UInt",
- "usr": "s:Su"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit26apptentiveAssertionHandleryySSyXK_s12StaticStringVSutcvp",
- "mangledName": "$s13ApptentiveKit26apptentiveAssertionHandleryySSyXK_s12StaticStringVSutcvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(@autoclosure () -> Swift.String, Swift.StaticString, Swift.UInt) -> ()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Tuple",
- "printedName": "(@autoclosure () -> Swift.String, Swift.StaticString, Swift.UInt)",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "() -> Swift.String",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- },
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "typeAttributes": [
- "noescape"
- ]
- },
- {
- "kind": "TypeNominal",
- "name": "StaticString",
- "printedName": "Swift.StaticString",
- "usr": "s:s12StaticStringV"
- },
- {
- "kind": "TypeNominal",
- "name": "UInt",
- "printedName": "Swift.UInt",
- "usr": "s:Su"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit26apptentiveAssertionHandleryySSyXK_s12StaticStringVSutcvg",
- "mangledName": "$s13ApptentiveKit26apptentiveAssertionHandleryySSyXK_s12StaticStringVSutcvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(@autoclosure () -> Swift.String, Swift.StaticString, Swift.UInt) -> ()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Tuple",
- "printedName": "(@autoclosure () -> Swift.String, Swift.StaticString, Swift.UInt)",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "() -> Swift.String",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- },
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "typeAttributes": [
- "noescape"
- ]
- },
- {
- "kind": "TypeNominal",
- "name": "StaticString",
- "printedName": "Swift.StaticString",
- "usr": "s:s12StaticStringV"
- },
- {
- "kind": "TypeNominal",
- "name": "UInt",
- "printedName": "Swift.UInt",
- "usr": "s:Su"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit26apptentiveAssertionHandleryySSyXK_s12StaticStringVSutcvs",
- "mangledName": "$s13ApptentiveKit26apptentiveAssertionHandleryySSyXK_s12StaticStringVSutcvs",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit26apptentiveAssertionHandleryySSyXK_s12StaticStringVSutcvM",
- "mangledName": "$s13ApptentiveKit26apptentiveAssertionHandleryySSyXK_s12StaticStringVSutcvM",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "UIKit",
- "printedName": "UIKit",
- "declKind": "Import",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "UIKit",
- "printedName": "UIKit",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "UIKit",
- "printedName": "UIKit",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "UIKit",
- "printedName": "UIKit",
- "declKind": "Import",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "Import",
- "name": "UIKit",
- "printedName": "UIKit",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "UIKit",
- "printedName": "UIKit",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "MobileCoreServices",
- "printedName": "MobileCoreServices",
- "declKind": "Import",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "Import",
- "name": "PhotosUI",
- "printedName": "PhotosUI",
- "declKind": "Import",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "Import",
- "name": "UIKit",
- "printedName": "UIKit",
- "declKind": "Import",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "UIKit",
- "printedName": "UIKit",
- "declKind": "Import",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "TypeDecl",
- "name": "CustomDataCompatible",
- "printedName": "CustomDataCompatible",
- "declKind": "Protocol",
- "usr": "s:13ApptentiveKit20CustomDataCompatibleP",
- "mangledName": "$s13ApptentiveKit20CustomDataCompatibleP",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "CustomData",
- "printedName": "CustomData",
- "children": [
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "CustomData",
- "printedName": "ApptentiveKit.CustomData",
- "usr": "s:13ApptentiveKit10CustomDataV"
- }
- ],
- "declKind": "Constructor",
- "usr": "s:13ApptentiveKit10CustomDataVACycfc",
- "mangledName": "$s13ApptentiveKit10CustomDataVACycfc",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "init_kind": "Designated"
- },
- {
- "kind": "Subscript",
- "name": "subscript",
- "printedName": "subscript(_:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "ApptentiveKit.CustomDataCompatible?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "CustomDataCompatible",
- "printedName": "ApptentiveKit.CustomDataCompatible",
- "usr": "s:13ApptentiveKit20CustomDataCompatibleP"
- }
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Subscript",
- "usr": "s:13ApptentiveKit10CustomDataVyAA0cD10Compatible_pSgSScip",
- "mangledName": "$s13ApptentiveKit10CustomDataVyAA0cD10Compatible_pSgSScip",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "ApptentiveKit.CustomDataCompatible?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "CustomDataCompatible",
- "printedName": "ApptentiveKit.CustomDataCompatible",
- "usr": "s:13ApptentiveKit20CustomDataCompatibleP"
- }
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit10CustomDataVyAA0cD10Compatible_pSgSScig",
- "mangledName": "$s13ApptentiveKit10CustomDataVyAA0cD10Compatible_pSgSScig",
- "moduleName": "ApptentiveKit",
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "ApptentiveKit.CustomDataCompatible?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "CustomDataCompatible",
- "printedName": "ApptentiveKit.CustomDataCompatible",
- "usr": "s:13ApptentiveKit20CustomDataCompatibleP"
- }
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit10CustomDataVyAA0cD10Compatible_pSgSScis",
- "mangledName": "$s13ApptentiveKit10CustomDataVyAA0cD10Compatible_pSgSScis",
- "moduleName": "ApptentiveKit",
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit10CustomDataVyAA0cD10Compatible_pSgSSciM",
- "mangledName": "$s13ApptentiveKit10CustomDataVyAA0cD10Compatible_pSgSSciM",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "keys",
- "printedName": "keys",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Keys",
- "printedName": "Swift.Dictionary.Keys",
- "usr": "s:SD4KeysV"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit10CustomDataV4keysSD4KeysVySSAA0cD10Compatible_p_Gvp",
- "mangledName": "$s13ApptentiveKit10CustomDataV4keysSD4KeysVySSAA0cD10Compatible_p_Gvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Keys",
- "printedName": "Swift.Dictionary.Keys",
- "usr": "s:SD4KeysV"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit10CustomDataV4keysSD4KeysVySSAA0cD10Compatible_p_Gvg",
- "mangledName": "$s13ApptentiveKit10CustomDataV4keysSD4KeysVySSAA0cD10Compatible_p_Gvg",
- "moduleName": "ApptentiveKit",
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Function",
- "name": "encode",
- "printedName": "encode(to:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Encoder",
- "printedName": "Swift.Encoder",
- "usr": "s:s7EncoderP"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit10CustomDataV6encode2toys7Encoder_p_tKF",
- "mangledName": "$s13ApptentiveKit10CustomDataV6encode2toys7Encoder_p_tKF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "throwing": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(from:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "CustomData",
- "printedName": "ApptentiveKit.CustomData",
- "usr": "s:13ApptentiveKit10CustomDataV"
- },
- {
- "kind": "TypeNominal",
- "name": "Decoder",
- "printedName": "Swift.Decoder",
- "usr": "s:s7DecoderP"
- }
- ],
- "declKind": "Constructor",
- "usr": "s:13ApptentiveKit10CustomDataV4fromACs7Decoder_p_tKcfc",
- "mangledName": "$s13ApptentiveKit10CustomDataV4fromACs7Decoder_p_tKcfc",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "throwing": true,
- "init_kind": "Designated"
- },
- {
- "kind": "Function",
- "name": "==",
- "printedName": "==(_:_:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- },
- {
- "kind": "TypeNominal",
- "name": "CustomData",
- "printedName": "ApptentiveKit.CustomData",
- "usr": "s:13ApptentiveKit10CustomDataV"
- },
- {
- "kind": "TypeNominal",
- "name": "CustomData",
- "printedName": "ApptentiveKit.CustomData",
- "usr": "s:13ApptentiveKit10CustomDataV"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit10CustomDataV2eeoiySbAC_ACtFZ",
- "mangledName": "$s13ApptentiveKit10CustomDataV2eeoiySbAC_ACtFZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "funcSelfKind": "NonMutating"
- }
- ],
- "declKind": "Struct",
- "usr": "s:13ApptentiveKit10CustomDataV",
- "mangledName": "$s13ApptentiveKit10CustomDataV",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "conformances": [
- {
- "kind": "Conformance",
- "name": "Equatable",
- "printedName": "Equatable",
- "usr": "s:SQ",
- "mangledName": "$sSQ"
- },
- {
- "kind": "Conformance",
- "name": "Decodable",
- "printedName": "Decodable",
- "usr": "s:Se",
- "mangledName": "$sSe"
- },
- {
- "kind": "Conformance",
- "name": "Encodable",
- "printedName": "Encodable",
- "usr": "s:SE",
- "mangledName": "$sSE"
- }
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "SurveyViewModelDelegate",
- "printedName": "SurveyViewModelDelegate",
- "children": [
- {
- "kind": "Function",
- "name": "surveyViewModelDidFinish",
- "printedName": "surveyViewModelDidFinish(_:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "SurveyViewModel",
- "printedName": "ApptentiveKit.SurveyViewModel",
- "usr": "s:13ApptentiveKit15SurveyViewModelC"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit23SurveyViewModelDelegateP06surveydE9DidFinishyyAA0cdE0CF",
- "mangledName": "$s13ApptentiveKit23SurveyViewModelDelegateP06surveydE9DidFinishyyAA0cdE0CF",
- "moduleName": "ApptentiveKit",
- "genericSig": "<τ_0_0 where τ_0_0 : ApptentiveKit.SurveyViewModelDelegate>",
- "sugared_genericSig": "",
- "protocolReq": true,
- "declAttributes": [
- "RawDocComment"
- ],
- "reqNewWitnessTableEntry": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "surveyViewModelValidationDidChange",
- "printedName": "surveyViewModelValidationDidChange(_:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "SurveyViewModel",
- "printedName": "ApptentiveKit.SurveyViewModel",
- "usr": "s:13ApptentiveKit15SurveyViewModelC"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit23SurveyViewModelDelegateP06surveydE19ValidationDidChangeyyAA0cdE0CF",
- "mangledName": "$s13ApptentiveKit23SurveyViewModelDelegateP06surveydE19ValidationDidChangeyyAA0cdE0CF",
- "moduleName": "ApptentiveKit",
- "genericSig": "<τ_0_0 where τ_0_0 : ApptentiveKit.SurveyViewModelDelegate>",
- "sugared_genericSig": "",
- "protocolReq": true,
- "declAttributes": [
- "RawDocComment"
- ],
- "reqNewWitnessTableEntry": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "surveyViewModelSelectionDidChange",
- "printedName": "surveyViewModelSelectionDidChange(_:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "SurveyViewModel",
- "printedName": "ApptentiveKit.SurveyViewModel",
- "usr": "s:13ApptentiveKit15SurveyViewModelC"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit23SurveyViewModelDelegateP06surveydE18SelectionDidChangeyyAA0cdE0CF",
- "mangledName": "$s13ApptentiveKit23SurveyViewModelDelegateP06surveydE18SelectionDidChangeyyAA0cdE0CF",
- "moduleName": "ApptentiveKit",
- "genericSig": "<τ_0_0 where τ_0_0 : ApptentiveKit.SurveyViewModelDelegate>",
- "sugared_genericSig": "",
- "protocolReq": true,
- "declAttributes": [
- "RawDocComment"
- ],
- "reqNewWitnessTableEntry": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "surveyViewModelPageWillChange",
- "printedName": "surveyViewModelPageWillChange(_:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "SurveyViewModel",
- "printedName": "ApptentiveKit.SurveyViewModel",
- "usr": "s:13ApptentiveKit15SurveyViewModelC"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit23SurveyViewModelDelegateP06surveydE14PageWillChangeyyAA0cdE0CF",
- "mangledName": "$s13ApptentiveKit23SurveyViewModelDelegateP06surveydE14PageWillChangeyyAA0cdE0CF",
- "moduleName": "ApptentiveKit",
- "genericSig": "<τ_0_0 where τ_0_0 : ApptentiveKit.SurveyViewModelDelegate>",
- "sugared_genericSig": "",
- "protocolReq": true,
- "declAttributes": [
- "RawDocComment"
- ],
- "reqNewWitnessTableEntry": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "surveyViewModelPageDidChange",
- "printedName": "surveyViewModelPageDidChange(_:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "SurveyViewModel",
- "printedName": "ApptentiveKit.SurveyViewModel",
- "usr": "s:13ApptentiveKit15SurveyViewModelC"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit23SurveyViewModelDelegateP06surveydE13PageDidChangeyyAA0cdE0CF",
- "mangledName": "$s13ApptentiveKit23SurveyViewModelDelegateP06surveydE13PageDidChangeyyAA0cdE0CF",
- "moduleName": "ApptentiveKit",
- "genericSig": "<τ_0_0 where τ_0_0 : ApptentiveKit.SurveyViewModelDelegate>",
- "sugared_genericSig": "",
- "protocolReq": true,
- "declAttributes": [
- "RawDocComment"
- ],
- "reqNewWitnessTableEntry": true,
- "funcSelfKind": "NonMutating"
- }
- ],
- "declKind": "Protocol",
- "usr": "s:13ApptentiveKit23SurveyViewModelDelegateP",
- "mangledName": "$s13ApptentiveKit23SurveyViewModelDelegateP",
- "moduleName": "ApptentiveKit",
- "genericSig": "<τ_0_0 : AnyObject>",
- "sugared_genericSig": "",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "SurveyViewModel",
- "printedName": "SurveyViewModel",
- "children": [
- {
- "kind": "Var",
- "name": "name",
- "printedName": "name",
- "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": "s:13ApptentiveKit15SurveyViewModelC4nameSSSgvp",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC4nameSSSgvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "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": "s:13ApptentiveKit15SurveyViewModelC4nameSSSgvg",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC4nameSSSgvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "isRequired",
- "printedName": "isRequired",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit15SurveyViewModelC10isRequiredSbvp",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC10isRequiredSbvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit15SurveyViewModelC10isRequiredSbvg",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC10isRequiredSbvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "pageIndicatorSegmentCount",
- "printedName": "pageIndicatorSegmentCount",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit15SurveyViewModelC25pageIndicatorSegmentCountSivp",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC25pageIndicatorSegmentCountSivp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit15SurveyViewModelC25pageIndicatorSegmentCountSivg",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC25pageIndicatorSegmentCountSivg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "validationErrorMessage",
- "printedName": "validationErrorMessage",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit15SurveyViewModelC22validationErrorMessageSSvp",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC22validationErrorMessageSSvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit15SurveyViewModelC22validationErrorMessageSSvg",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC22validationErrorMessageSSvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "disclaimerText",
- "printedName": "disclaimerText",
- "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": "s:13ApptentiveKit15SurveyViewModelC14disclaimerTextSSSgvp",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC14disclaimerTextSSSgvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "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": "s:13ApptentiveKit15SurveyViewModelC14disclaimerTextSSSgvg",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC14disclaimerTextSSSgvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "TermsAndConditions",
- "printedName": "TermsAndConditions",
- "declKind": "Struct",
- "usr": "s:13ApptentiveKit15SurveyViewModelC18TermsAndConditionsV",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC18TermsAndConditionsV",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "termsAndConditions",
- "printedName": "termsAndConditions",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "ApptentiveKit.SurveyViewModel.TermsAndConditions?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "TermsAndConditions",
- "printedName": "ApptentiveKit.SurveyViewModel.TermsAndConditions",
- "usr": "s:13ApptentiveKit15SurveyViewModelC18TermsAndConditionsV"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit15SurveyViewModelC18termsAndConditionsAC05TermsgH0VSgvp",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC18termsAndConditionsAC05TermsgH0VSgvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "ApptentiveKit.SurveyViewModel.TermsAndConditions?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "TermsAndConditions",
- "printedName": "ApptentiveKit.SurveyViewModel.TermsAndConditions",
- "usr": "s:13ApptentiveKit15SurveyViewModelC18TermsAndConditionsV"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit15SurveyViewModelC18termsAndConditionsAC05TermsgH0VSgvg",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC18termsAndConditionsAC05TermsgH0VSgvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "CloseConfirmation",
- "printedName": "CloseConfirmation",
- "declKind": "Struct",
- "usr": "s:13ApptentiveKit15SurveyViewModelC17CloseConfirmationV",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC17CloseConfirmationV",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "closeConfirmation",
- "printedName": "closeConfirmation",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "CloseConfirmation",
- "printedName": "ApptentiveKit.SurveyViewModel.CloseConfirmation",
- "usr": "s:13ApptentiveKit15SurveyViewModelC17CloseConfirmationV"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit15SurveyViewModelC17closeConfirmationAC05CloseG0Vvp",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC17closeConfirmationAC05CloseG0Vvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "CloseConfirmation",
- "printedName": "ApptentiveKit.SurveyViewModel.CloseConfirmation",
- "usr": "s:13ApptentiveKit15SurveyViewModelC17CloseConfirmationV"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit15SurveyViewModelC17closeConfirmationAC05CloseG0Vvg",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC17closeConfirmationAC05CloseG0Vvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "delegate",
- "printedName": "delegate",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "WeakStorage",
- "printedName": "ApptentiveKit.SurveyViewModelDelegate?"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit15SurveyViewModelC8delegateAA0cdE8Delegate_pSgvp",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC8delegateAA0cdE8Delegate_pSgvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "ReferenceOwnership",
- "AccessControl",
- "RawDocComment"
- ],
- "ownership": 1,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "ApptentiveKit.SurveyViewModelDelegate?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "SurveyViewModelDelegate",
- "printedName": "ApptentiveKit.SurveyViewModelDelegate",
- "usr": "s:13ApptentiveKit23SurveyViewModelDelegateP"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit15SurveyViewModelC8delegateAA0cdE8Delegate_pSgvg",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC8delegateAA0cdE8Delegate_pSgvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "ApptentiveKit.SurveyViewModelDelegate?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "SurveyViewModelDelegate",
- "printedName": "ApptentiveKit.SurveyViewModelDelegate",
- "usr": "s:13ApptentiveKit23SurveyViewModelDelegateP"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit15SurveyViewModelC8delegateAA0cdE8Delegate_pSgvs",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC8delegateAA0cdE8Delegate_pSgvs",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit15SurveyViewModelC8delegateAA0cdE8Delegate_pSgvM",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC8delegateAA0cdE8Delegate_pSgvM",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "currentPage",
- "printedName": "currentPage",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Page",
- "printedName": "ApptentiveKit.SurveyViewModel.Page",
- "usr": "s:13ApptentiveKit15SurveyViewModelC4PageC"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit15SurveyViewModelC11currentPageAC0G0Cvp",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC11currentPageAC0G0Cvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Page",
- "printedName": "ApptentiveKit.SurveyViewModel.Page",
- "usr": "s:13ApptentiveKit15SurveyViewModelC4PageC"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit15SurveyViewModelC11currentPageAC0G0Cvg",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC11currentPageAC0G0Cvg",
- "moduleName": "ApptentiveKit",
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "questions",
- "printedName": "questions",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Array",
- "printedName": "[ApptentiveKit.SurveyViewModel.Question]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Question",
- "printedName": "ApptentiveKit.SurveyViewModel.Question",
- "usr": "s:13ApptentiveKit15SurveyViewModelC8QuestionC"
- }
- ],
- "usr": "s:Sa"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit15SurveyViewModelC9questionsSayAC8QuestionCGvp",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC9questionsSayAC8QuestionCGvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Array",
- "printedName": "[ApptentiveKit.SurveyViewModel.Question]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Question",
- "printedName": "ApptentiveKit.SurveyViewModel.Question",
- "usr": "s:13ApptentiveKit15SurveyViewModelC8QuestionC"
- }
- ],
- "usr": "s:Sa"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit15SurveyViewModelC9questionsSayAC8QuestionCGvg",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC9questionsSayAC8QuestionCGvg",
- "moduleName": "ApptentiveKit",
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "isMarkedAsInvalid",
- "printedName": "isMarkedAsInvalid",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit15SurveyViewModelC17isMarkedAsInvalidSbvp",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC17isMarkedAsInvalidSbvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit15SurveyViewModelC17isMarkedAsInvalidSbvg",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC17isMarkedAsInvalidSbvg",
- "moduleName": "ApptentiveKit",
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "thankYouMessage",
- "printedName": "thankYouMessage",
- "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": "s:13ApptentiveKit15SurveyViewModelC15thankYouMessageSSSgvp",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC15thankYouMessageSSSgvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit15SurveyViewModelC15thankYouMessageSSSgvg",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC15thankYouMessageSSSgvg",
- "moduleName": "ApptentiveKit",
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "introduction",
- "printedName": "introduction",
- "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": "s:13ApptentiveKit15SurveyViewModelC12introductionSSSgvp",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC12introductionSSSgvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit15SurveyViewModelC12introductionSSSgvg",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC12introductionSSSgvg",
- "moduleName": "ApptentiveKit",
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "advanceButtonText",
- "printedName": "advanceButtonText",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit15SurveyViewModelC17advanceButtonTextSSvp",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC17advanceButtonTextSSvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit15SurveyViewModelC17advanceButtonTextSSvg",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC17advanceButtonTextSSvg",
- "moduleName": "ApptentiveKit",
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "invalidQuestionIndexes",
- "printedName": "invalidQuestionIndexes",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "IndexSet",
- "printedName": "Foundation.IndexSet",
- "usr": "s:10Foundation8IndexSetV"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit15SurveyViewModelC22invalidQuestionIndexes10Foundation8IndexSetVvp",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC22invalidQuestionIndexes10Foundation8IndexSetVvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "IndexSet",
- "printedName": "Foundation.IndexSet",
- "usr": "s:10Foundation8IndexSetV"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit15SurveyViewModelC22invalidQuestionIndexes10Foundation8IndexSetVvg",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC22invalidQuestionIndexes10Foundation8IndexSetVvg",
- "moduleName": "ApptentiveKit",
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "surveyDidSendResponse",
- "printedName": "surveyDidSendResponse",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit15SurveyViewModelC21surveyDidSendResponseSbvp",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC21surveyDidSendResponseSbvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit15SurveyViewModelC21surveyDidSendResponseSbvg",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC21surveyDidSendResponseSbvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "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": "s:13ApptentiveKit15SurveyViewModelC21surveyDidSendResponseSbvs",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC21surveyDidSendResponseSbvs",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit15SurveyViewModelC21surveyDidSendResponseSbvM",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC21surveyDidSendResponseSbvM",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "highlightFirstQuestionSegment",
- "printedName": "highlightFirstQuestionSegment",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit15SurveyViewModelC29highlightFirstQuestionSegmentSbvp",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC29highlightFirstQuestionSegmentSbvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit15SurveyViewModelC29highlightFirstQuestionSegmentSbvg",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC29highlightFirstQuestionSegmentSbvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "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": "s:13ApptentiveKit15SurveyViewModelC29highlightFirstQuestionSegmentSbvs",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC29highlightFirstQuestionSegmentSbvs",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit15SurveyViewModelC29highlightFirstQuestionSegmentSbvM",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC29highlightFirstQuestionSegmentSbvM",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Function",
- "name": "setValue",
- "printedName": "setValue(_:for:)",
- "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": "TypeNominal",
- "name": "IndexPath",
- "printedName": "Foundation.IndexPath",
- "usr": "s:10Foundation9IndexPathV"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit15SurveyViewModelC8setValue_3forySSSg_10Foundation9IndexPathVtF",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC8setValue_3forySSSg_10Foundation9IndexPathVtF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "selectValueFromRange",
- "printedName": "selectValueFromRange(at:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "IndexPath",
- "printedName": "Foundation.IndexPath",
- "usr": "s:10Foundation9IndexPathV"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit15SurveyViewModelC20selectValueFromRange2aty10Foundation9IndexPathV_tF",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC20selectValueFromRange2aty10Foundation9IndexPathV_tF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "openTermsAndConditions",
- "printedName": "openTermsAndConditions()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit15SurveyViewModelC22openTermsAndConditionsyyF",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC22openTermsAndConditionsyyF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "advance",
- "printedName": "advance()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit15SurveyViewModelC7advanceyyF",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC7advanceyyF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Var",
- "name": "isValid",
- "printedName": "isValid",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit15SurveyViewModelC7isValidSbvp",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC7isValidSbvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit15SurveyViewModelC7isValidSbvg",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC7isValidSbvg",
- "moduleName": "ApptentiveKit",
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "DisplayMode",
- "printedName": "DisplayMode",
- "children": [
- {
- "kind": "Var",
- "name": "list",
- "printedName": "list",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.SurveyViewModel.DisplayMode.Type) -> ApptentiveKit.SurveyViewModel.DisplayMode",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "DisplayMode",
- "printedName": "ApptentiveKit.SurveyViewModel.DisplayMode",
- "usr": "s:13ApptentiveKit15SurveyViewModelC11DisplayModeO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.SurveyViewModel.DisplayMode.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "DisplayMode",
- "printedName": "ApptentiveKit.SurveyViewModel.DisplayMode",
- "usr": "s:13ApptentiveKit15SurveyViewModelC11DisplayModeO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:13ApptentiveKit15SurveyViewModelC11DisplayModeO4listyA2EmF",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC11DisplayModeO4listyA2EmF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "paged",
- "printedName": "paged",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.SurveyViewModel.DisplayMode.Type) -> ApptentiveKit.SurveyViewModel.DisplayMode",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "DisplayMode",
- "printedName": "ApptentiveKit.SurveyViewModel.DisplayMode",
- "usr": "s:13ApptentiveKit15SurveyViewModelC11DisplayModeO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.SurveyViewModel.DisplayMode.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "DisplayMode",
- "printedName": "ApptentiveKit.SurveyViewModel.DisplayMode",
- "usr": "s:13ApptentiveKit15SurveyViewModelC11DisplayModeO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:13ApptentiveKit15SurveyViewModelC11DisplayModeO5pagedyA2EmF",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC11DisplayModeO5pagedyA2EmF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Function",
- "name": "==",
- "printedName": "==(_:_:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- },
- {
- "kind": "TypeNominal",
- "name": "DisplayMode",
- "printedName": "ApptentiveKit.SurveyViewModel.DisplayMode",
- "usr": "s:13ApptentiveKit15SurveyViewModelC11DisplayModeO"
- },
- {
- "kind": "TypeNominal",
- "name": "DisplayMode",
- "printedName": "ApptentiveKit.SurveyViewModel.DisplayMode",
- "usr": "s:13ApptentiveKit15SurveyViewModelC11DisplayModeO"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit15SurveyViewModelC11DisplayModeO2eeoiySbAE_AEtFZ",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC11DisplayModeO2eeoiySbAE_AEtFZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Var",
- "name": "hashValue",
- "printedName": "hashValue",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit15SurveyViewModelC11DisplayModeO9hashValueSivp",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC11DisplayModeO9hashValueSivp",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit15SurveyViewModelC11DisplayModeO9hashValueSivg",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC11DisplayModeO9hashValueSivg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Function",
- "name": "hash",
- "printedName": "hash(into:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Hasher",
- "printedName": "Swift.Hasher",
- "paramValueOwnership": "InOut",
- "usr": "s:s6HasherV"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit15SurveyViewModelC11DisplayModeO4hash4intoys6HasherVz_tF",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC11DisplayModeO4hash4intoys6HasherVz_tF",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "funcSelfKind": "NonMutating"
- }
- ],
- "declKind": "Enum",
- "usr": "s:13ApptentiveKit15SurveyViewModelC11DisplayModeO",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC11DisplayModeO",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "conformances": [
- {
- "kind": "Conformance",
- "name": "Equatable",
- "printedName": "Equatable",
- "usr": "s:SQ",
- "mangledName": "$sSQ"
- },
- {
- "kind": "Conformance",
- "name": "Hashable",
- "printedName": "Hashable",
- "usr": "s:SH",
- "mangledName": "$sSH"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "displayMode",
- "printedName": "displayMode",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "DisplayMode",
- "printedName": "ApptentiveKit.SurveyViewModel.DisplayMode",
- "usr": "s:13ApptentiveKit15SurveyViewModelC11DisplayModeO"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit15SurveyViewModelC11displayModeAC07DisplayG0Ovp",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC11displayModeAC07DisplayG0Ovp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "DisplayMode",
- "printedName": "ApptentiveKit.SurveyViewModel.DisplayMode",
- "usr": "s:13ApptentiveKit15SurveyViewModelC11DisplayModeO"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit15SurveyViewModelC11displayModeAC07DisplayG0Ovg",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC11displayModeAC07DisplayG0Ovg",
- "moduleName": "ApptentiveKit",
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "shouldConfirmCancel",
- "printedName": "shouldConfirmCancel",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit15SurveyViewModelC19shouldConfirmCancelSbvp",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC19shouldConfirmCancelSbvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit15SurveyViewModelC19shouldConfirmCancelSbvg",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC19shouldConfirmCancelSbvg",
- "moduleName": "ApptentiveKit",
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "currentSelectedSegmentIndex",
- "printedName": "currentSelectedSegmentIndex",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.Int?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit15SurveyViewModelC27currentSelectedSegmentIndexSiSgvp",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC27currentSelectedSegmentIndexSiSgvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.Int?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit15SurveyViewModelC27currentSelectedSegmentIndexSiSgvg",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC27currentSelectedSegmentIndexSiSgvg",
- "moduleName": "ApptentiveKit",
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Function",
- "name": "launch",
- "printedName": "launch()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit15SurveyViewModelC6launchyyF",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC6launchyyF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "continuePartial",
- "printedName": "continuePartial()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit15SurveyViewModelC15continuePartialyyF",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC15continuePartialyyF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "cancel",
- "printedName": "cancel(partial:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit15SurveyViewModelC6cancel7partialySb_tF",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC6cancel7partialySb_tF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "TypeDecl",
- "name": "RangeQuestion",
- "printedName": "RangeQuestion",
- "children": [
- {
- "kind": "Var",
- "name": "minValue",
- "printedName": "minValue",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit15SurveyViewModelC13RangeQuestionC8minValueSivp",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC13RangeQuestionC8minValueSivp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit15SurveyViewModelC13RangeQuestionC8minValueSivg",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC13RangeQuestionC8minValueSivg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "maxValue",
- "printedName": "maxValue",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit15SurveyViewModelC13RangeQuestionC8maxValueSivp",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC13RangeQuestionC8maxValueSivp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit15SurveyViewModelC13RangeQuestionC8maxValueSivg",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC13RangeQuestionC8maxValueSivg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "minText",
- "printedName": "minText",
- "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": "s:13ApptentiveKit15SurveyViewModelC13RangeQuestionC7minTextSSSgvp",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC13RangeQuestionC7minTextSSSgvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "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": "s:13ApptentiveKit15SurveyViewModelC13RangeQuestionC7minTextSSSgvg",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC13RangeQuestionC7minTextSSSgvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "maxText",
- "printedName": "maxText",
- "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": "s:13ApptentiveKit15SurveyViewModelC13RangeQuestionC7maxTextSSSgvp",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC13RangeQuestionC7maxTextSSSgvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "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": "s:13ApptentiveKit15SurveyViewModelC13RangeQuestionC7maxTextSSSgvg",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC13RangeQuestionC7maxTextSSSgvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "selectedValueIndex",
- "printedName": "selectedValueIndex",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.Int?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit15SurveyViewModelC13RangeQuestionC18selectedValueIndexSiSgvp",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC13RangeQuestionC18selectedValueIndexSiSgvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "SetterAccess",
- "AccessControl",
- "RawDocComment"
- ],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.Int?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit15SurveyViewModelC13RangeQuestionC18selectedValueIndexSiSgvg",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC13RangeQuestionC18selectedValueIndexSiSgvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "value",
- "printedName": "value",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.Int?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit15SurveyViewModelC13RangeQuestionC5valueSiSgvp",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC13RangeQuestionC5valueSiSgvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.Int?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit15SurveyViewModelC13RangeQuestionC5valueSiSgvg",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC13RangeQuestionC5valueSiSgvg",
- "moduleName": "ApptentiveKit",
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "choiceLabels",
- "printedName": "choiceLabels",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Array",
- "printedName": "[Swift.String]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sa"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit15SurveyViewModelC13RangeQuestionC12choiceLabelsSaySSGvp",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC13RangeQuestionC12choiceLabelsSaySSGvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Array",
- "printedName": "[Swift.String]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sa"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit15SurveyViewModelC13RangeQuestionC12choiceLabelsSaySSGvg",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC13RangeQuestionC12choiceLabelsSaySSGvg",
- "moduleName": "ApptentiveKit",
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Function",
- "name": "selectValue",
- "printedName": "selectValue(at:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit15SurveyViewModelC13RangeQuestionC11selectValue2atySi_tF",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC13RangeQuestionC11selectValue2atySi_tF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Var",
- "name": "accessibilityHintForSegment",
- "printedName": "accessibilityHintForSegment",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit15SurveyViewModelC13RangeQuestionC27accessibilityHintForSegmentSSvp",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC13RangeQuestionC27accessibilityHintForSegmentSSvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit15SurveyViewModelC13RangeQuestionC27accessibilityHintForSegmentSSvg",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC13RangeQuestionC27accessibilityHintForSegmentSSvg",
- "moduleName": "ApptentiveKit",
- "accessorKind": "get"
- }
- ]
- }
- ],
- "declKind": "Class",
- "usr": "s:13ApptentiveKit15SurveyViewModelC13RangeQuestionC",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC13RangeQuestionC",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "superclassUsr": "s:13ApptentiveKit15SurveyViewModelC8QuestionC",
- "hasMissingDesignatedInitializers": true,
- "inheritsConvenienceInitializers": true,
- "superclassNames": [
- "ApptentiveKit.SurveyViewModel.Question"
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "ChoiceQuestion",
- "printedName": "ChoiceQuestion",
- "children": [
- {
- "kind": "Var",
- "name": "choices",
- "printedName": "choices",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Array",
- "printedName": "[ApptentiveKit.SurveyViewModel.ChoiceQuestion.Choice]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Choice",
- "printedName": "ApptentiveKit.SurveyViewModel.ChoiceQuestion.Choice",
- "usr": "s:13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC0F0C"
- }
- ],
- "usr": "s:Sa"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC7choicesSayAE0F0CGvp",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC7choicesSayAE0F0CGvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Array",
- "printedName": "[ApptentiveKit.SurveyViewModel.ChoiceQuestion.Choice]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Choice",
- "printedName": "ApptentiveKit.SurveyViewModel.ChoiceQuestion.Choice",
- "usr": "s:13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC0F0C"
- }
- ],
- "usr": "s:Sa"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC7choicesSayAE0F0CGvg",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC7choicesSayAE0F0CGvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Function",
- "name": "toggleChoice",
- "printedName": "toggleChoice(at:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC06toggleF02atySi_tF",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC06toggleF02atySi_tF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Var",
- "name": "selectionStyle",
- "printedName": "selectionStyle",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "SelectionStyle",
- "printedName": "ApptentiveKit.SurveyViewModel.ChoiceQuestion.SelectionStyle",
- "usr": "s:13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC14SelectionStyleO"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC14selectionStyleAE09SelectionI0Ovp",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC14selectionStyleAE09SelectionI0Ovp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "SelectionStyle",
- "printedName": "ApptentiveKit.SurveyViewModel.ChoiceQuestion.SelectionStyle",
- "usr": "s:13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC14SelectionStyleO"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC14selectionStyleAE09SelectionI0Ovg",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC14selectionStyleAE09SelectionI0Ovg",
- "moduleName": "ApptentiveKit",
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "SelectionStyle",
- "printedName": "SelectionStyle",
- "children": [
- {
- "kind": "Var",
- "name": "checkbox",
- "printedName": "checkbox",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.SurveyViewModel.ChoiceQuestion.SelectionStyle.Type) -> ApptentiveKit.SurveyViewModel.ChoiceQuestion.SelectionStyle",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "SelectionStyle",
- "printedName": "ApptentiveKit.SurveyViewModel.ChoiceQuestion.SelectionStyle",
- "usr": "s:13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC14SelectionStyleO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.SurveyViewModel.ChoiceQuestion.SelectionStyle.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "SelectionStyle",
- "printedName": "ApptentiveKit.SurveyViewModel.ChoiceQuestion.SelectionStyle",
- "usr": "s:13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC14SelectionStyleO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC14SelectionStyleO8checkboxyA2GmF",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC14SelectionStyleO8checkboxyA2GmF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "radioButton",
- "printedName": "radioButton",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.SurveyViewModel.ChoiceQuestion.SelectionStyle.Type) -> ApptentiveKit.SurveyViewModel.ChoiceQuestion.SelectionStyle",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "SelectionStyle",
- "printedName": "ApptentiveKit.SurveyViewModel.ChoiceQuestion.SelectionStyle",
- "usr": "s:13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC14SelectionStyleO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.SurveyViewModel.ChoiceQuestion.SelectionStyle.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "SelectionStyle",
- "printedName": "ApptentiveKit.SurveyViewModel.ChoiceQuestion.SelectionStyle",
- "usr": "s:13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC14SelectionStyleO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC14SelectionStyleO11radioButtonyA2GmF",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC14SelectionStyleO11radioButtonyA2GmF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Function",
- "name": "==",
- "printedName": "==(_:_:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- },
- {
- "kind": "TypeNominal",
- "name": "SelectionStyle",
- "printedName": "ApptentiveKit.SurveyViewModel.ChoiceQuestion.SelectionStyle",
- "usr": "s:13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC14SelectionStyleO"
- },
- {
- "kind": "TypeNominal",
- "name": "SelectionStyle",
- "printedName": "ApptentiveKit.SurveyViewModel.ChoiceQuestion.SelectionStyle",
- "usr": "s:13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC14SelectionStyleO"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC14SelectionStyleO2eeoiySbAG_AGtFZ",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC14SelectionStyleO2eeoiySbAG_AGtFZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Var",
- "name": "hashValue",
- "printedName": "hashValue",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC14SelectionStyleO9hashValueSivp",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC14SelectionStyleO9hashValueSivp",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC14SelectionStyleO9hashValueSivg",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC14SelectionStyleO9hashValueSivg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Function",
- "name": "hash",
- "printedName": "hash(into:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Hasher",
- "printedName": "Swift.Hasher",
- "paramValueOwnership": "InOut",
- "usr": "s:s6HasherV"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC14SelectionStyleO4hash4intoys6HasherVz_tF",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC14SelectionStyleO4hash4intoys6HasherVz_tF",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "funcSelfKind": "NonMutating"
- }
- ],
- "declKind": "Enum",
- "usr": "s:13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC14SelectionStyleO",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC14SelectionStyleO",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "conformances": [
- {
- "kind": "Conformance",
- "name": "Equatable",
- "printedName": "Equatable",
- "usr": "s:SQ",
- "mangledName": "$sSQ"
- },
- {
- "kind": "Conformance",
- "name": "Hashable",
- "printedName": "Hashable",
- "usr": "s:SH",
- "mangledName": "$sSH"
- }
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "Choice",
- "printedName": "Choice",
- "children": [
- {
- "kind": "Var",
- "name": "label",
- "printedName": "label",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC0F0C5labelSSvp",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC0F0C5labelSSvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC0F0C5labelSSvg",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC0F0C5labelSSvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "placeholderText",
- "printedName": "placeholderText",
- "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": "s:13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC0F0C15placeholderTextSSSgvp",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC0F0C15placeholderTextSSSgvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "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": "s:13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC0F0C15placeholderTextSSSgvg",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC0F0C15placeholderTextSSSgvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "supportsOther",
- "printedName": "supportsOther",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC0F0C13supportsOtherSbvp",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC0F0C13supportsOtherSbvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC0F0C13supportsOtherSbvg",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC0F0C13supportsOtherSbvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "isSelected",
- "printedName": "isSelected",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC0F0C10isSelectedSbvp",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC0F0C10isSelectedSbvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "HasStorage",
- "SetterAccess",
- "AccessControl",
- "RawDocComment"
- ],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC0F0C10isSelectedSbvg",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC0F0C10isSelectedSbvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "isMarkedAsInvalid",
- "printedName": "isMarkedAsInvalid",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC0F0C17isMarkedAsInvalidSbvp",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC0F0C17isMarkedAsInvalidSbvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "HasStorage",
- "SetterAccess",
- "AccessControl",
- "RawDocComment"
- ],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC0F0C17isMarkedAsInvalidSbvg",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC0F0C17isMarkedAsInvalidSbvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "value",
- "printedName": "value",
- "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": "s:13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC0F0C5valueSSSgvp",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC0F0C5valueSSSgvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC0F0C5valueSSSgvg",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC0F0C5valueSSSgvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "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": "s:13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC0F0C5valueSSSgvs",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC0F0C5valueSSSgvs",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC0F0C5valueSSSgvM",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC0F0C5valueSSSgvM",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "_modify"
- }
- ]
- }
- ],
- "declKind": "Class",
- "usr": "s:13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC0F0C",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC0F0C",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "hasMissingDesignatedInitializers": true
- }
- ],
- "declKind": "Class",
- "usr": "s:13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "superclassUsr": "s:13ApptentiveKit15SurveyViewModelC8QuestionC",
- "hasMissingDesignatedInitializers": true,
- "inheritsConvenienceInitializers": true,
- "superclassNames": [
- "ApptentiveKit.SurveyViewModel.Question"
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "Page",
- "printedName": "Page",
- "children": [
- {
- "kind": "Var",
- "name": "id",
- "printedName": "id",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit15SurveyViewModelC4PageC2idSSvp",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC4PageC2idSSvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit15SurveyViewModelC4PageC2idSSvg",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC4PageC2idSSvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "description",
- "printedName": "description",
- "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": "s:13ApptentiveKit15SurveyViewModelC4PageC11descriptionSSSgvp",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC4PageC11descriptionSSSgvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "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": "s:13ApptentiveKit15SurveyViewModelC4PageC11descriptionSSSgvg",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC4PageC11descriptionSSSgvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "questions",
- "printedName": "questions",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Array",
- "printedName": "[ApptentiveKit.SurveyViewModel.Question]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Question",
- "printedName": "ApptentiveKit.SurveyViewModel.Question",
- "usr": "s:13ApptentiveKit15SurveyViewModelC8QuestionC"
- }
- ],
- "usr": "s:Sa"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit15SurveyViewModelC4PageC9questionsSayAC8QuestionCGvp",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC4PageC9questionsSayAC8QuestionCGvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Array",
- "printedName": "[ApptentiveKit.SurveyViewModel.Question]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Question",
- "printedName": "ApptentiveKit.SurveyViewModel.Question",
- "usr": "s:13ApptentiveKit15SurveyViewModelC8QuestionC"
- }
- ],
- "usr": "s:Sa"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit15SurveyViewModelC4PageC9questionsSayAC8QuestionCGvg",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC4PageC9questionsSayAC8QuestionCGvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "advanceButtonLabel",
- "printedName": "advanceButtonLabel",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit15SurveyViewModelC4PageC18advanceButtonLabelSSvp",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC4PageC18advanceButtonLabelSSvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit15SurveyViewModelC4PageC18advanceButtonLabelSSvg",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC4PageC18advanceButtonLabelSSvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "pageIndicatorValue",
- "printedName": "pageIndicatorValue",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.Int?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit15SurveyViewModelC4PageC18pageIndicatorValueSiSgvp",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC4PageC18pageIndicatorValueSiSgvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.Int?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit15SurveyViewModelC4PageC18pageIndicatorValueSiSgvg",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC4PageC18pageIndicatorValueSiSgvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- }
- ],
- "declKind": "Class",
- "usr": "s:13ApptentiveKit15SurveyViewModelC4PageC",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC4PageC",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasMissingDesignatedInitializers": true
- },
- {
- "kind": "TypeDecl",
- "name": "Question",
- "printedName": "Question",
- "children": [
- {
- "kind": "Var",
- "name": "text",
- "printedName": "text",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit15SurveyViewModelC8QuestionC4textSSvp",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC8QuestionC4textSSvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "HasStorage",
- "Final",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit15SurveyViewModelC8QuestionC4textSSvg",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC8QuestionC4textSSvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "isRequired",
- "printedName": "isRequired",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit15SurveyViewModelC8QuestionC10isRequiredSbvp",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC8QuestionC10isRequiredSbvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "HasStorage",
- "Final",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit15SurveyViewModelC8QuestionC10isRequiredSbvg",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC8QuestionC10isRequiredSbvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "requiredText",
- "printedName": "requiredText",
- "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": "s:13ApptentiveKit15SurveyViewModelC8QuestionC12requiredTextSSSgvp",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC8QuestionC12requiredTextSSSgvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "HasStorage",
- "Final",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "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": "s:13ApptentiveKit15SurveyViewModelC8QuestionC12requiredTextSSSgvg",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC8QuestionC12requiredTextSSSgvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "errorMessage",
- "printedName": "errorMessage",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit15SurveyViewModelC8QuestionC12errorMessageSSvp",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC8QuestionC12errorMessageSSvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "HasStorage",
- "Final",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit15SurveyViewModelC8QuestionC12errorMessageSSvg",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC8QuestionC12errorMessageSSvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "instructions",
- "printedName": "instructions",
- "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": "s:13ApptentiveKit15SurveyViewModelC8QuestionC12instructionsSSSgvp",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC8QuestionC12instructionsSSSgvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "HasStorage",
- "Final",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "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": "s:13ApptentiveKit15SurveyViewModelC8QuestionC12instructionsSSSgvg",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC8QuestionC12instructionsSSSgvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "isMarkedAsInvalid",
- "printedName": "isMarkedAsInvalid",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit15SurveyViewModelC8QuestionC17isMarkedAsInvalidSbvp",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC8QuestionC17isMarkedAsInvalidSbvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit15SurveyViewModelC8QuestionC17isMarkedAsInvalidSbvg",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC8QuestionC17isMarkedAsInvalidSbvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "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": "s:13ApptentiveKit15SurveyViewModelC8QuestionC17isMarkedAsInvalidSbvs",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC8QuestionC17isMarkedAsInvalidSbvs",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit15SurveyViewModelC8QuestionC17isMarkedAsInvalidSbvM",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC8QuestionC17isMarkedAsInvalidSbvM",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "accessibilityLabel",
- "printedName": "accessibilityLabel",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit15SurveyViewModelC8QuestionC18accessibilityLabelSSvp",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC8QuestionC18accessibilityLabelSSvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit15SurveyViewModelC8QuestionC18accessibilityLabelSSvg",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC8QuestionC18accessibilityLabelSSvg",
- "moduleName": "ApptentiveKit",
- "accessorKind": "get"
- }
- ]
- }
- ],
- "declKind": "Class",
- "usr": "s:13ApptentiveKit15SurveyViewModelC8QuestionC",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC8QuestionC",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasMissingDesignatedInitializers": true
- },
- {
- "kind": "TypeDecl",
- "name": "FreeformQuestion",
- "printedName": "FreeformQuestion",
- "children": [
- {
- "kind": "Var",
- "name": "placeholderText",
- "printedName": "placeholderText",
- "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": "s:13ApptentiveKit15SurveyViewModelC16FreeformQuestionC15placeholderTextSSSgvp",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC16FreeformQuestionC15placeholderTextSSSgvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "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": "s:13ApptentiveKit15SurveyViewModelC16FreeformQuestionC15placeholderTextSSSgvg",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC16FreeformQuestionC15placeholderTextSSSgvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "allowMultipleLines",
- "printedName": "allowMultipleLines",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit15SurveyViewModelC16FreeformQuestionC18allowMultipleLinesSbvp",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC16FreeformQuestionC18allowMultipleLinesSbvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit15SurveyViewModelC16FreeformQuestionC18allowMultipleLinesSbvg",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC16FreeformQuestionC18allowMultipleLinesSbvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "value",
- "printedName": "value",
- "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": "s:13ApptentiveKit15SurveyViewModelC16FreeformQuestionC5valueSSSgvp",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC16FreeformQuestionC5valueSSSgvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit15SurveyViewModelC16FreeformQuestionC5valueSSSgvg",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC16FreeformQuestionC5valueSSSgvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "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": "s:13ApptentiveKit15SurveyViewModelC16FreeformQuestionC5valueSSSgvs",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC16FreeformQuestionC5valueSSSgvs",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit15SurveyViewModelC16FreeformQuestionC5valueSSSgvM",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC16FreeformQuestionC5valueSSSgvM",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "_modify"
- }
- ]
- }
- ],
- "declKind": "Class",
- "usr": "s:13ApptentiveKit15SurveyViewModelC16FreeformQuestionC",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC16FreeformQuestionC",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "superclassUsr": "s:13ApptentiveKit15SurveyViewModelC8QuestionC",
- "hasMissingDesignatedInitializers": true,
- "inheritsConvenienceInitializers": true,
- "superclassNames": [
- "ApptentiveKit.SurveyViewModel.Question"
- ]
- }
- ],
- "declKind": "Class",
- "usr": "s:13ApptentiveKit15SurveyViewModelC",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "hasMissingDesignatedInitializers": true
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "UIKit",
- "printedName": "UIKit",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "UIKit",
- "printedName": "UIKit",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "UIKit",
- "printedName": "UIKit",
- "declKind": "Import",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "TypeDecl",
- "name": "MessageCenterViewModelDelegate",
- "printedName": "MessageCenterViewModelDelegate",
- "children": [
- {
- "kind": "Function",
- "name": "messageCenterViewModelDidBeginUpdates",
- "printedName": "messageCenterViewModelDidBeginUpdates(_:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "MessageCenterViewModel",
- "printedName": "ApptentiveKit.MessageCenterViewModel",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit30MessageCenterViewModelDelegateP07messagedeF15DidBeginUpdatesyyAA0cdeF0CF",
- "mangledName": "$s13ApptentiveKit30MessageCenterViewModelDelegateP07messagedeF15DidBeginUpdatesyyAA0cdeF0CF",
- "moduleName": "ApptentiveKit",
- "genericSig": "<τ_0_0 where τ_0_0 : ApptentiveKit.MessageCenterViewModelDelegate>",
- "sugared_genericSig": "",
- "protocolReq": true,
- "reqNewWitnessTableEntry": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "messageCenterViewModel",
- "printedName": "messageCenterViewModel(_:didInsertSectionsWith:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "MessageCenterViewModel",
- "printedName": "ApptentiveKit.MessageCenterViewModel",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC"
- },
- {
- "kind": "TypeNominal",
- "name": "IndexSet",
- "printedName": "Foundation.IndexSet",
- "usr": "s:10Foundation8IndexSetV"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit30MessageCenterViewModelDelegateP07messagedeF0_21didInsertSectionsWithyAA0cdeF0C_10Foundation8IndexSetVtF",
- "mangledName": "$s13ApptentiveKit30MessageCenterViewModelDelegateP07messagedeF0_21didInsertSectionsWithyAA0cdeF0C_10Foundation8IndexSetVtF",
- "moduleName": "ApptentiveKit",
- "genericSig": "<τ_0_0 where τ_0_0 : ApptentiveKit.MessageCenterViewModelDelegate>",
- "sugared_genericSig": "",
- "protocolReq": true,
- "reqNewWitnessTableEntry": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "messageCenterViewModel",
- "printedName": "messageCenterViewModel(_:didDeleteSectionsWith:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "MessageCenterViewModel",
- "printedName": "ApptentiveKit.MessageCenterViewModel",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC"
- },
- {
- "kind": "TypeNominal",
- "name": "IndexSet",
- "printedName": "Foundation.IndexSet",
- "usr": "s:10Foundation8IndexSetV"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit30MessageCenterViewModelDelegateP07messagedeF0_21didDeleteSectionsWithyAA0cdeF0C_10Foundation8IndexSetVtF",
- "mangledName": "$s13ApptentiveKit30MessageCenterViewModelDelegateP07messagedeF0_21didDeleteSectionsWithyAA0cdeF0C_10Foundation8IndexSetVtF",
- "moduleName": "ApptentiveKit",
- "genericSig": "<τ_0_0 where τ_0_0 : ApptentiveKit.MessageCenterViewModelDelegate>",
- "sugared_genericSig": "",
- "protocolReq": true,
- "reqNewWitnessTableEntry": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "messageCenterViewModel",
- "printedName": "messageCenterViewModel(_:didDeleteRowsAt:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "MessageCenterViewModel",
- "printedName": "ApptentiveKit.MessageCenterViewModel",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC"
- },
- {
- "kind": "TypeNominal",
- "name": "Array",
- "printedName": "[Foundation.IndexPath]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "IndexPath",
- "printedName": "Foundation.IndexPath",
- "usr": "s:10Foundation9IndexPathV"
- }
- ],
- "usr": "s:Sa"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit30MessageCenterViewModelDelegateP07messagedeF0_15didDeleteRowsAtyAA0cdeF0C_Say10Foundation9IndexPathVGtF",
- "mangledName": "$s13ApptentiveKit30MessageCenterViewModelDelegateP07messagedeF0_15didDeleteRowsAtyAA0cdeF0C_Say10Foundation9IndexPathVGtF",
- "moduleName": "ApptentiveKit",
- "genericSig": "<τ_0_0 where τ_0_0 : ApptentiveKit.MessageCenterViewModelDelegate>",
- "sugared_genericSig": "",
- "protocolReq": true,
- "reqNewWitnessTableEntry": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "messageCenterViewModel",
- "printedName": "messageCenterViewModel(_:didUpdateRowsAt:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "MessageCenterViewModel",
- "printedName": "ApptentiveKit.MessageCenterViewModel",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC"
- },
- {
- "kind": "TypeNominal",
- "name": "Array",
- "printedName": "[Foundation.IndexPath]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "IndexPath",
- "printedName": "Foundation.IndexPath",
- "usr": "s:10Foundation9IndexPathV"
- }
- ],
- "usr": "s:Sa"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit30MessageCenterViewModelDelegateP07messagedeF0_15didUpdateRowsAtyAA0cdeF0C_Say10Foundation9IndexPathVGtF",
- "mangledName": "$s13ApptentiveKit30MessageCenterViewModelDelegateP07messagedeF0_15didUpdateRowsAtyAA0cdeF0C_Say10Foundation9IndexPathVGtF",
- "moduleName": "ApptentiveKit",
- "genericSig": "<τ_0_0 where τ_0_0 : ApptentiveKit.MessageCenterViewModelDelegate>",
- "sugared_genericSig": "",
- "protocolReq": true,
- "reqNewWitnessTableEntry": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "messageCenterViewModel",
- "printedName": "messageCenterViewModel(_:didInsertRowsAt:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "MessageCenterViewModel",
- "printedName": "ApptentiveKit.MessageCenterViewModel",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC"
- },
- {
- "kind": "TypeNominal",
- "name": "Array",
- "printedName": "[Foundation.IndexPath]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "IndexPath",
- "printedName": "Foundation.IndexPath",
- "usr": "s:10Foundation9IndexPathV"
- }
- ],
- "usr": "s:Sa"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit30MessageCenterViewModelDelegateP07messagedeF0_15didInsertRowsAtyAA0cdeF0C_Say10Foundation9IndexPathVGtF",
- "mangledName": "$s13ApptentiveKit30MessageCenterViewModelDelegateP07messagedeF0_15didInsertRowsAtyAA0cdeF0C_Say10Foundation9IndexPathVGtF",
- "moduleName": "ApptentiveKit",
- "genericSig": "<τ_0_0 where τ_0_0 : ApptentiveKit.MessageCenterViewModelDelegate>",
- "sugared_genericSig": "",
- "protocolReq": true,
- "reqNewWitnessTableEntry": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "messageCenterViewModel",
- "printedName": "messageCenterViewModel(_:didMoveRowsAt:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "MessageCenterViewModel",
- "printedName": "ApptentiveKit.MessageCenterViewModel",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC"
- },
- {
- "kind": "TypeNominal",
- "name": "Array",
- "printedName": "[(Foundation.IndexPath, Foundation.IndexPath)]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Tuple",
- "printedName": "(Foundation.IndexPath, Foundation.IndexPath)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "IndexPath",
- "printedName": "Foundation.IndexPath",
- "usr": "s:10Foundation9IndexPathV"
- },
- {
- "kind": "TypeNominal",
- "name": "IndexPath",
- "printedName": "Foundation.IndexPath",
- "usr": "s:10Foundation9IndexPathV"
- }
- ]
- }
- ],
- "usr": "s:Sa"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit30MessageCenterViewModelDelegateP07messagedeF0_13didMoveRowsAtyAA0cdeF0C_Say10Foundation9IndexPathV_AJtGtF",
- "mangledName": "$s13ApptentiveKit30MessageCenterViewModelDelegateP07messagedeF0_13didMoveRowsAtyAA0cdeF0C_Say10Foundation9IndexPathV_AJtGtF",
- "moduleName": "ApptentiveKit",
- "genericSig": "<τ_0_0 where τ_0_0 : ApptentiveKit.MessageCenterViewModelDelegate>",
- "sugared_genericSig": "",
- "protocolReq": true,
- "reqNewWitnessTableEntry": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "messageCenterViewModelDidEndUpdates",
- "printedName": "messageCenterViewModelDidEndUpdates(_:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "MessageCenterViewModel",
- "printedName": "ApptentiveKit.MessageCenterViewModel",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit30MessageCenterViewModelDelegateP07messagedeF13DidEndUpdatesyyAA0cdeF0CF",
- "mangledName": "$s13ApptentiveKit30MessageCenterViewModelDelegateP07messagedeF13DidEndUpdatesyyAA0cdeF0CF",
- "moduleName": "ApptentiveKit",
- "genericSig": "<τ_0_0 where τ_0_0 : ApptentiveKit.MessageCenterViewModelDelegate>",
- "sugared_genericSig": "",
- "protocolReq": true,
- "reqNewWitnessTableEntry": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "messageCenterViewModelMessageListDidLoad",
- "printedName": "messageCenterViewModelMessageListDidLoad(_:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "MessageCenterViewModel",
- "printedName": "ApptentiveKit.MessageCenterViewModel",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit30MessageCenterViewModelDelegateP07messagedefC11ListDidLoadyyAA0cdeF0CF",
- "mangledName": "$s13ApptentiveKit30MessageCenterViewModelDelegateP07messagedefC11ListDidLoadyyAA0cdeF0CF",
- "moduleName": "ApptentiveKit",
- "genericSig": "<τ_0_0 where τ_0_0 : ApptentiveKit.MessageCenterViewModelDelegate>",
- "sugared_genericSig": "",
- "protocolReq": true,
- "reqNewWitnessTableEntry": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "messageCenterViewModelDraftMessageDidUpdate",
- "printedName": "messageCenterViewModelDraftMessageDidUpdate(_:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "MessageCenterViewModel",
- "printedName": "ApptentiveKit.MessageCenterViewModel",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit30MessageCenterViewModelDelegateP07messagedef5DraftC9DidUpdateyyAA0cdeF0CF",
- "mangledName": "$s13ApptentiveKit30MessageCenterViewModelDelegateP07messagedef5DraftC9DidUpdateyyAA0cdeF0CF",
- "moduleName": "ApptentiveKit",
- "genericSig": "<τ_0_0 where τ_0_0 : ApptentiveKit.MessageCenterViewModelDelegate>",
- "sugared_genericSig": "",
- "protocolReq": true,
- "reqNewWitnessTableEntry": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "messageCenterViewModel",
- "printedName": "messageCenterViewModel(_:didFailToRemoveAttachmentAt:with:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "MessageCenterViewModel",
- "printedName": "ApptentiveKit.MessageCenterViewModel",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC"
- },
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- },
- {
- "kind": "TypeNominal",
- "name": "Error",
- "printedName": "Swift.Error",
- "usr": "s:s5ErrorP"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit30MessageCenterViewModelDelegateP07messagedeF0_27didFailToRemoveAttachmentAt4withyAA0cdeF0C_Sis5Error_ptF",
- "mangledName": "$s13ApptentiveKit30MessageCenterViewModelDelegateP07messagedeF0_27didFailToRemoveAttachmentAt4withyAA0cdeF0C_Sis5Error_ptF",
- "moduleName": "ApptentiveKit",
- "genericSig": "<τ_0_0 where τ_0_0 : ApptentiveKit.MessageCenterViewModelDelegate>",
- "sugared_genericSig": "",
- "protocolReq": true,
- "reqNewWitnessTableEntry": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "messageCenterViewModel",
- "printedName": "messageCenterViewModel(_:didFailToAddAttachmentWith:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "MessageCenterViewModel",
- "printedName": "ApptentiveKit.MessageCenterViewModel",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC"
- },
- {
- "kind": "TypeNominal",
- "name": "Error",
- "printedName": "Swift.Error",
- "usr": "s:s5ErrorP"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit30MessageCenterViewModelDelegateP07messagedeF0_26didFailToAddAttachmentWithyAA0cdeF0C_s5Error_ptF",
- "mangledName": "$s13ApptentiveKit30MessageCenterViewModelDelegateP07messagedeF0_26didFailToAddAttachmentWithyAA0cdeF0C_s5Error_ptF",
- "moduleName": "ApptentiveKit",
- "genericSig": "<τ_0_0 where τ_0_0 : ApptentiveKit.MessageCenterViewModelDelegate>",
- "sugared_genericSig": "",
- "protocolReq": true,
- "reqNewWitnessTableEntry": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "messageCenterViewModel",
- "printedName": "messageCenterViewModel(_:didFailToSendMessageWith:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "MessageCenterViewModel",
- "printedName": "ApptentiveKit.MessageCenterViewModel",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC"
- },
- {
- "kind": "TypeNominal",
- "name": "Error",
- "printedName": "Swift.Error",
- "usr": "s:s5ErrorP"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit30MessageCenterViewModelDelegateP07messagedeF0_013didFailToSendC4WithyAA0cdeF0C_s5Error_ptF",
- "mangledName": "$s13ApptentiveKit30MessageCenterViewModelDelegateP07messagedeF0_013didFailToSendC4WithyAA0cdeF0C_s5Error_ptF",
- "moduleName": "ApptentiveKit",
- "genericSig": "<τ_0_0 where τ_0_0 : ApptentiveKit.MessageCenterViewModelDelegate>",
- "sugared_genericSig": "",
- "protocolReq": true,
- "reqNewWitnessTableEntry": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "messageCenterViewModel",
- "printedName": "messageCenterViewModel(_:attachmentDownloadDidFinishAt:inMessageAt:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "MessageCenterViewModel",
- "printedName": "ApptentiveKit.MessageCenterViewModel",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC"
- },
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- },
- {
- "kind": "TypeNominal",
- "name": "IndexPath",
- "printedName": "Foundation.IndexPath",
- "usr": "s:10Foundation9IndexPathV"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit30MessageCenterViewModelDelegateP07messagedeF0_29attachmentDownloadDidFinishAt02incM0yAA0cdeF0C_Si10Foundation9IndexPathVtF",
- "mangledName": "$s13ApptentiveKit30MessageCenterViewModelDelegateP07messagedeF0_29attachmentDownloadDidFinishAt02incM0yAA0cdeF0C_Si10Foundation9IndexPathVtF",
- "moduleName": "ApptentiveKit",
- "genericSig": "<τ_0_0 where τ_0_0 : ApptentiveKit.MessageCenterViewModelDelegate>",
- "sugared_genericSig": "",
- "protocolReq": true,
- "reqNewWitnessTableEntry": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "messageCenterViewModel",
- "printedName": "messageCenterViewModel(_:attachmentDownloadDidFailAt:inMessageAt:with:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "MessageCenterViewModel",
- "printedName": "ApptentiveKit.MessageCenterViewModel",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC"
- },
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- },
- {
- "kind": "TypeNominal",
- "name": "IndexPath",
- "printedName": "Foundation.IndexPath",
- "usr": "s:10Foundation9IndexPathV"
- },
- {
- "kind": "TypeNominal",
- "name": "Error",
- "printedName": "Swift.Error",
- "usr": "s:s5ErrorP"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit30MessageCenterViewModelDelegateP07messagedeF0_27attachmentDownloadDidFailAt02incM04withyAA0cdeF0C_Si10Foundation9IndexPathVs5Error_ptF",
- "mangledName": "$s13ApptentiveKit30MessageCenterViewModelDelegateP07messagedeF0_27attachmentDownloadDidFailAt02incM04withyAA0cdeF0C_Si10Foundation9IndexPathVs5Error_ptF",
- "moduleName": "ApptentiveKit",
- "genericSig": "<τ_0_0 where τ_0_0 : ApptentiveKit.MessageCenterViewModelDelegate>",
- "sugared_genericSig": "",
- "protocolReq": true,
- "reqNewWitnessTableEntry": true,
- "funcSelfKind": "NonMutating"
- }
- ],
- "declKind": "Protocol",
- "usr": "s:13ApptentiveKit30MessageCenterViewModelDelegateP",
- "mangledName": "$s13ApptentiveKit30MessageCenterViewModelDelegateP",
- "moduleName": "ApptentiveKit",
- "genericSig": "<τ_0_0 : AnyObject>",
- "sugared_genericSig": "",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "MessageCenterViewModel",
- "printedName": "MessageCenterViewModel",
- "children": [
- {
- "kind": "Var",
- "name": "headingTitle",
- "printedName": "headingTitle",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC12headingTitleSSvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC12headingTitleSSvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC12headingTitleSSvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC12headingTitleSSvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "branding",
- "printedName": "branding",
- "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": "s:13ApptentiveKit22MessageCenterViewModelC8brandingSSSgvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC8brandingSSSgvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "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": "s:13ApptentiveKit22MessageCenterViewModelC8brandingSSSgvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC8brandingSSSgvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "composerTitle",
- "printedName": "composerTitle",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC13composerTitleSSvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC13composerTitleSSvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC13composerTitleSSvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC13composerTitleSSvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "composerSendButtonTitle",
- "printedName": "composerSendButtonTitle",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC23composerSendButtonTitleSSvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC23composerSendButtonTitleSSvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC23composerSendButtonTitleSSvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC23composerSendButtonTitleSSvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "composerAttachButtonTitle",
- "printedName": "composerAttachButtonTitle",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC25composerAttachButtonTitleSSvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC25composerAttachButtonTitleSSvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC25composerAttachButtonTitleSSvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC25composerAttachButtonTitleSSvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "composerPlaceholderText",
- "printedName": "composerPlaceholderText",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC23composerPlaceholderTextSSvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC23composerPlaceholderTextSSvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC23composerPlaceholderTextSSvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC23composerPlaceholderTextSSvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "composerCloseConfirmBody",
- "printedName": "composerCloseConfirmBody",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC24composerCloseConfirmBodySSvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC24composerCloseConfirmBodySSvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC24composerCloseConfirmBodySSvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC24composerCloseConfirmBodySSvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "composerCloseDiscardButtonTitle",
- "printedName": "composerCloseDiscardButtonTitle",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC31composerCloseDiscardButtonTitleSSvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC31composerCloseDiscardButtonTitleSSvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC31composerCloseDiscardButtonTitleSSvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC31composerCloseDiscardButtonTitleSSvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "composerCloseCancelButtonTitle",
- "printedName": "composerCloseCancelButtonTitle",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC30composerCloseCancelButtonTitleSSvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC30composerCloseCancelButtonTitleSSvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC30composerCloseCancelButtonTitleSSvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC30composerCloseCancelButtonTitleSSvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "greetingTitle",
- "printedName": "greetingTitle",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC13greetingTitleSSvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC13greetingTitleSSvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC13greetingTitleSSvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC13greetingTitleSSvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "greetingBody",
- "printedName": "greetingBody",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC12greetingBodySSvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC12greetingBodySSvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC12greetingBodySSvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC12greetingBodySSvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "greetingImageURL",
- "printedName": "greetingImageURL",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "URL",
- "printedName": "Foundation.URL",
- "usr": "s:10Foundation3URLV"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC16greetingImageURL10Foundation0I0Vvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC16greetingImageURL10Foundation0I0Vvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "URL",
- "printedName": "Foundation.URL",
- "usr": "s:10Foundation3URLV"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC16greetingImageURL10Foundation0I0Vvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC16greetingImageURL10Foundation0I0Vvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "statusBody",
- "printedName": "statusBody",
- "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": "s:13ApptentiveKit22MessageCenterViewModelC10statusBodySSSgvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC10statusBodySSSgvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "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": "s:13ApptentiveKit22MessageCenterViewModelC10statusBodySSSgvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC10statusBodySSSgvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "groupedMessages",
- "printedName": "groupedMessages",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Array",
- "printedName": "[[ApptentiveKit.MessageCenterViewModel.Message]]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Array",
- "printedName": "[ApptentiveKit.MessageCenterViewModel.Message]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Message",
- "printedName": "ApptentiveKit.MessageCenterViewModel.Message",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C"
- }
- ],
- "usr": "s:Sa"
- }
- ],
- "usr": "s:Sa"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC15groupedMessagesSaySayAC0C0CGGvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC15groupedMessagesSaySayAC0C0CGGvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Array",
- "printedName": "[[ApptentiveKit.MessageCenterViewModel.Message]]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Array",
- "printedName": "[ApptentiveKit.MessageCenterViewModel.Message]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Message",
- "printedName": "ApptentiveKit.MessageCenterViewModel.Message",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C"
- }
- ],
- "usr": "s:Sa"
- }
- ],
- "usr": "s:Sa"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC15groupedMessagesSaySayAC0C0CGGvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC15groupedMessagesSaySayAC0C0CGGvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Array",
- "printedName": "[[ApptentiveKit.MessageCenterViewModel.Message]]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Array",
- "printedName": "[ApptentiveKit.MessageCenterViewModel.Message]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Message",
- "printedName": "ApptentiveKit.MessageCenterViewModel.Message",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C"
- }
- ],
- "usr": "s:Sa"
- }
- ],
- "usr": "s:Sa"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC15groupedMessagesSaySayAC0C0CGGvs",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC15groupedMessagesSaySayAC0C0CGGvs",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC15groupedMessagesSaySayAC0C0CGGvM",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC15groupedMessagesSaySayAC0C0CGGvM",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "hasLoadedMessages",
- "printedName": "hasLoadedMessages",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC17hasLoadedMessagesSbvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC17hasLoadedMessagesSbvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC17hasLoadedMessagesSbvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC17hasLoadedMessagesSbvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "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": "s:13ApptentiveKit22MessageCenterViewModelC17hasLoadedMessagesSbvs",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC17hasLoadedMessagesSbvs",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC17hasLoadedMessagesSbvM",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC17hasLoadedMessagesSbvM",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "thumbnailSize",
- "printedName": "thumbnailSize",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "CGSize",
- "printedName": "CoreFoundation.CGSize",
- "usr": "c:@S@CGSize"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC13thumbnailSizeSo6CGSizeVvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC13thumbnailSizeSo6CGSizeVvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "CGSize",
- "printedName": "CoreFoundation.CGSize",
- "usr": "c:@S@CGSize"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC13thumbnailSizeSo6CGSizeVvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC13thumbnailSizeSo6CGSizeVvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "CGSize",
- "printedName": "CoreFoundation.CGSize",
- "usr": "c:@S@CGSize"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC13thumbnailSizeSo6CGSizeVvs",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC13thumbnailSizeSo6CGSizeVvs",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC13thumbnailSizeSo6CGSizeVvM",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC13thumbnailSizeSo6CGSizeVvM",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "profileNamePlaceholder",
- "printedName": "profileNamePlaceholder",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC22profileNamePlaceholderSSvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC22profileNamePlaceholderSSvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC22profileNamePlaceholderSSvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC22profileNamePlaceholderSSvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "profileEmailPlaceholder",
- "printedName": "profileEmailPlaceholder",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC23profileEmailPlaceholderSSvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC23profileEmailPlaceholderSSvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC23profileEmailPlaceholderSSvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC23profileEmailPlaceholderSSvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "profileCancelButtonText",
- "printedName": "profileCancelButtonText",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC23profileCancelButtonTextSSvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC23profileCancelButtonTextSSvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC23profileCancelButtonTextSSvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC23profileCancelButtonTextSSvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "profileSaveButtonText",
- "printedName": "profileSaveButtonText",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC21profileSaveButtonTextSSvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC21profileSaveButtonTextSSvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC21profileSaveButtonTextSSvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC21profileSaveButtonTextSSvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "editProfileViewTitle",
- "printedName": "editProfileViewTitle",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC011editProfileE5TitleSSvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC011editProfileE5TitleSSvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC011editProfileE5TitleSSvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC011editProfileE5TitleSSvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "editProfileNamePlaceholder",
- "printedName": "editProfileNamePlaceholder",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC26editProfileNamePlaceholderSSvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC26editProfileNamePlaceholderSSvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC26editProfileNamePlaceholderSSvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC26editProfileNamePlaceholderSSvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "editProfileEmailPlaceholder",
- "printedName": "editProfileEmailPlaceholder",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC27editProfileEmailPlaceholderSSvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC27editProfileEmailPlaceholderSSvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC27editProfileEmailPlaceholderSSvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC27editProfileEmailPlaceholderSSvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "editProfileCancelButtonText",
- "printedName": "editProfileCancelButtonText",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC27editProfileCancelButtonTextSSvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC27editProfileCancelButtonTextSSvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC27editProfileCancelButtonTextSSvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC27editProfileCancelButtonTextSSvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "editProfileSaveButtonText",
- "printedName": "editProfileSaveButtonText",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC25editProfileSaveButtonTextSSvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC25editProfileSaveButtonTextSSvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC25editProfileSaveButtonTextSSvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC25editProfileSaveButtonTextSSvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "profileMode",
- "printedName": "profileMode",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ProfileMode",
- "printedName": "ApptentiveKit.MessageCenterViewModel.ProfileMode",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC11ProfileModeO"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC11profileModeAC07ProfileH0Ovp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC11profileModeAC07ProfileH0Ovp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ProfileMode",
- "printedName": "ApptentiveKit.MessageCenterViewModel.ProfileMode",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC11ProfileModeO"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC11profileModeAC07ProfileH0Ovg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC11profileModeAC07ProfileH0Ovg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "closeButtonAccessibilityLabel",
- "printedName": "closeButtonAccessibilityLabel",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC29closeButtonAccessibilityLabelSSvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC29closeButtonAccessibilityLabelSSvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC29closeButtonAccessibilityLabelSSvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC29closeButtonAccessibilityLabelSSvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "closeButtonAccessibilityHint",
- "printedName": "closeButtonAccessibilityHint",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC28closeButtonAccessibilityHintSSvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC28closeButtonAccessibilityHintSSvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC28closeButtonAccessibilityHintSSvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC28closeButtonAccessibilityHintSSvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "profileButtonAccessibilityLabel",
- "printedName": "profileButtonAccessibilityLabel",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC31profileButtonAccessibilityLabelSSvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC31profileButtonAccessibilityLabelSSvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC31profileButtonAccessibilityLabelSSvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC31profileButtonAccessibilityLabelSSvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "profileButtonAccessibilityHint",
- "printedName": "profileButtonAccessibilityHint",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC30profileButtonAccessibilityHintSSvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC30profileButtonAccessibilityHintSSvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC30profileButtonAccessibilityHintSSvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC30profileButtonAccessibilityHintSSvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "sendButtonAccessibilityLabel",
- "printedName": "sendButtonAccessibilityLabel",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC28sendButtonAccessibilityLabelSSvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC28sendButtonAccessibilityLabelSSvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC28sendButtonAccessibilityLabelSSvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC28sendButtonAccessibilityLabelSSvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "sendButtonAccessibilityHint",
- "printedName": "sendButtonAccessibilityHint",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC27sendButtonAccessibilityHintSSvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC27sendButtonAccessibilityHintSSvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC27sendButtonAccessibilityHintSSvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC27sendButtonAccessibilityHintSSvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "attachButtonAccessibilityLabel",
- "printedName": "attachButtonAccessibilityLabel",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC30attachButtonAccessibilityLabelSSvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC30attachButtonAccessibilityLabelSSvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC30attachButtonAccessibilityLabelSSvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC30attachButtonAccessibilityLabelSSvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "attachButtonAccessibilityHint",
- "printedName": "attachButtonAccessibilityHint",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC29attachButtonAccessibilityHintSSvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC29attachButtonAccessibilityHintSSvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC29attachButtonAccessibilityHintSSvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC29attachButtonAccessibilityHintSSvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "attachmentOptionsTitle",
- "printedName": "attachmentOptionsTitle",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC22attachmentOptionsTitleSSvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC22attachmentOptionsTitleSSvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC22attachmentOptionsTitleSSvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC22attachmentOptionsTitleSSvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "attachmentOptionsImagesButton",
- "printedName": "attachmentOptionsImagesButton",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC29attachmentOptionsImagesButtonSSvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC29attachmentOptionsImagesButtonSSvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC29attachmentOptionsImagesButtonSSvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC29attachmentOptionsImagesButtonSSvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "attachmentOptionsFilesButton",
- "printedName": "attachmentOptionsFilesButton",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC28attachmentOptionsFilesButtonSSvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC28attachmentOptionsFilesButtonSSvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC28attachmentOptionsFilesButtonSSvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC28attachmentOptionsFilesButtonSSvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "attachmentOptionsCancelButton",
- "printedName": "attachmentOptionsCancelButton",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC29attachmentOptionsCancelButtonSSvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC29attachmentOptionsCancelButtonSSvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC29attachmentOptionsCancelButtonSSvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC29attachmentOptionsCancelButtonSSvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "showAttachmentButtonAccessibilityHint",
- "printedName": "showAttachmentButtonAccessibilityHint",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC37showAttachmentButtonAccessibilityHintSSvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC37showAttachmentButtonAccessibilityHintSSvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC37showAttachmentButtonAccessibilityHintSSvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC37showAttachmentButtonAccessibilityHintSSvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "downloadAttachmentButtonAccessibilityHint",
- "printedName": "downloadAttachmentButtonAccessibilityHint",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC41downloadAttachmentButtonAccessibilityHintSSvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC41downloadAttachmentButtonAccessibilityHintSSvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC41downloadAttachmentButtonAccessibilityHintSSvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC41downloadAttachmentButtonAccessibilityHintSSvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "emailAddress",
- "printedName": "emailAddress",
- "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": "s:13ApptentiveKit22MessageCenterViewModelC12emailAddressSSSgvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC12emailAddressSSSgvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC12emailAddressSSSgvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC12emailAddressSSSgvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "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": "s:13ApptentiveKit22MessageCenterViewModelC12emailAddressSSSgvs",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC12emailAddressSSSgvs",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC12emailAddressSSSgvM",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC12emailAddressSSSgvM",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "name",
- "printedName": "name",
- "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": "s:13ApptentiveKit22MessageCenterViewModelC4nameSSSgvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC4nameSSSgvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC4nameSSSgvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC4nameSSSgvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "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": "s:13ApptentiveKit22MessageCenterViewModelC4nameSSSgvs",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC4nameSSSgvs",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC4nameSSSgvM",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC4nameSSSgvM",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "profileIsValid",
- "printedName": "profileIsValid",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC14profileIsValidSbvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC14profileIsValidSbvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC14profileIsValidSbvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC14profileIsValidSbvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "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": "s:13ApptentiveKit22MessageCenterViewModelC14profileIsValidSbvs",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC14profileIsValidSbvs",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC14profileIsValidSbvM",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC14profileIsValidSbvM",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "shouldRequestProfile",
- "printedName": "shouldRequestProfile",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC20shouldRequestProfileSbvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC20shouldRequestProfileSbvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC20shouldRequestProfileSbvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC20shouldRequestProfileSbvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "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": "s:13ApptentiveKit22MessageCenterViewModelC20shouldRequestProfileSbvs",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC20shouldRequestProfileSbvs",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC20shouldRequestProfileSbvM",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC20shouldRequestProfileSbvM",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "ProfileMode",
- "printedName": "ProfileMode",
- "children": [
- {
- "kind": "Var",
- "name": "optionalEmail",
- "printedName": "optionalEmail",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.MessageCenterViewModel.ProfileMode.Type) -> ApptentiveKit.MessageCenterViewModel.ProfileMode",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ProfileMode",
- "printedName": "ApptentiveKit.MessageCenterViewModel.ProfileMode",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC11ProfileModeO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.MessageCenterViewModel.ProfileMode.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ProfileMode",
- "printedName": "ApptentiveKit.MessageCenterViewModel.ProfileMode",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC11ProfileModeO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC11ProfileModeO13optionalEmailyA2EmF",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC11ProfileModeO13optionalEmailyA2EmF",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "Var",
- "name": "requiredEmail",
- "printedName": "requiredEmail",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.MessageCenterViewModel.ProfileMode.Type) -> ApptentiveKit.MessageCenterViewModel.ProfileMode",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ProfileMode",
- "printedName": "ApptentiveKit.MessageCenterViewModel.ProfileMode",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC11ProfileModeO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.MessageCenterViewModel.ProfileMode.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ProfileMode",
- "printedName": "ApptentiveKit.MessageCenterViewModel.ProfileMode",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC11ProfileModeO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC11ProfileModeO13requiredEmailyA2EmF",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC11ProfileModeO13requiredEmailyA2EmF",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "Var",
- "name": "hidden",
- "printedName": "hidden",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.MessageCenterViewModel.ProfileMode.Type) -> ApptentiveKit.MessageCenterViewModel.ProfileMode",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ProfileMode",
- "printedName": "ApptentiveKit.MessageCenterViewModel.ProfileMode",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC11ProfileModeO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.MessageCenterViewModel.ProfileMode.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ProfileMode",
- "printedName": "ApptentiveKit.MessageCenterViewModel.ProfileMode",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC11ProfileModeO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC11ProfileModeO6hiddenyA2EmF",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC11ProfileModeO6hiddenyA2EmF",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "Function",
- "name": "==",
- "printedName": "==(_:_:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- },
- {
- "kind": "TypeNominal",
- "name": "ProfileMode",
- "printedName": "ApptentiveKit.MessageCenterViewModel.ProfileMode",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC11ProfileModeO"
- },
- {
- "kind": "TypeNominal",
- "name": "ProfileMode",
- "printedName": "ApptentiveKit.MessageCenterViewModel.ProfileMode",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC11ProfileModeO"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC11ProfileModeO2eeoiySbAE_AEtFZ",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC11ProfileModeO2eeoiySbAE_AEtFZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Var",
- "name": "hashValue",
- "printedName": "hashValue",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC11ProfileModeO9hashValueSivp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC11ProfileModeO9hashValueSivp",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC11ProfileModeO9hashValueSivg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC11ProfileModeO9hashValueSivg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Function",
- "name": "hash",
- "printedName": "hash(into:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Hasher",
- "printedName": "Swift.Hasher",
- "paramValueOwnership": "InOut",
- "usr": "s:s6HasherV"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC11ProfileModeO4hash4intoys6HasherVz_tF",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC11ProfileModeO4hash4intoys6HasherVz_tF",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "funcSelfKind": "NonMutating"
- }
- ],
- "declKind": "Enum",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC11ProfileModeO",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC11ProfileModeO",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "conformances": [
- {
- "kind": "Conformance",
- "name": "Equatable",
- "printedName": "Equatable",
- "usr": "s:SQ",
- "mangledName": "$sSQ"
- },
- {
- "kind": "Conformance",
- "name": "Hashable",
- "printedName": "Hashable",
- "usr": "s:SH",
- "mangledName": "$sSH"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "oldestUnreadMessageIndexPath",
- "printedName": "oldestUnreadMessageIndexPath",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Foundation.IndexPath?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "IndexPath",
- "printedName": "Foundation.IndexPath",
- "usr": "s:10Foundation9IndexPathV"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC012oldestUnreadC9IndexPath10Foundation0iJ0VSgvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC012oldestUnreadC9IndexPath10Foundation0iJ0VSgvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Foundation.IndexPath?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "IndexPath",
- "printedName": "Foundation.IndexPath",
- "usr": "s:10Foundation9IndexPathV"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC012oldestUnreadC9IndexPath10Foundation0iJ0VSgvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC012oldestUnreadC9IndexPath10Foundation0iJ0VSgvg",
- "moduleName": "ApptentiveKit",
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "newestMessageIndexPath",
- "printedName": "newestMessageIndexPath",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Foundation.IndexPath?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "IndexPath",
- "printedName": "Foundation.IndexPath",
- "usr": "s:10Foundation9IndexPathV"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC06newestC9IndexPath10Foundation0hI0VSgvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC06newestC9IndexPath10Foundation0hI0VSgvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Foundation.IndexPath?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "IndexPath",
- "printedName": "Foundation.IndexPath",
- "usr": "s:10Foundation9IndexPathV"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC06newestC9IndexPath10Foundation0hI0VSgvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC06newestC9IndexPath10Foundation0hI0VSgvg",
- "moduleName": "ApptentiveKit",
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Function",
- "name": "commitProfileEdits",
- "printedName": "commitProfileEdits()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC18commitProfileEditsyyF",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC18commitProfileEditsyyF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "cancelProfileEdits",
- "printedName": "cancelProfileEdits()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC18cancelProfileEditsyyF",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC18cancelProfileEditsyyF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "launch",
- "printedName": "launch()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC6launchyyF",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC6launchyyF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "cancel",
- "printedName": "cancel()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC6cancelyyF",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC6cancelyyF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Var",
- "name": "numberOfMessageGroups",
- "printedName": "numberOfMessageGroups",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC08numberOfC6GroupsSivp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC08numberOfC6GroupsSivp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC08numberOfC6GroupsSivg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC08numberOfC6GroupsSivg",
- "moduleName": "ApptentiveKit",
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Function",
- "name": "markMessageAsRead",
- "printedName": "markMessageAsRead(at:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "IndexPath",
- "printedName": "Foundation.IndexPath",
- "usr": "s:10Foundation9IndexPathV"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC04markC6AsRead2aty10Foundation9IndexPathV_tF",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC04markC6AsRead2aty10Foundation9IndexPathV_tF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "numberOfMessagesInGroup",
- "printedName": "numberOfMessagesInGroup(at:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- },
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC23numberOfMessagesInGroup2atS2i_tF",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC23numberOfMessagesInGroup2atS2i_tF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "dateStringForMessagesInGroup",
- "printedName": "dateStringForMessagesInGroup(at:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC28dateStringForMessagesInGroup2atSSSgSi_tF",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC28dateStringForMessagesInGroup2atSSSgSi_tF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "message",
- "printedName": "message(at:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Message",
- "printedName": "ApptentiveKit.MessageCenterViewModel.Message",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C"
- },
- {
- "kind": "TypeNominal",
- "name": "IndexPath",
- "printedName": "Foundation.IndexPath",
- "usr": "s:10Foundation9IndexPathV"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC7message2atAC0C0C10Foundation9IndexPathV_tF",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC7message2atAC0C0C10Foundation9IndexPathV_tF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "downloadAttachment",
- "printedName": "downloadAttachment(at:inMessageAt:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- },
- {
- "kind": "TypeNominal",
- "name": "IndexPath",
- "printedName": "Foundation.IndexPath",
- "usr": "s:10Foundation9IndexPathV"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC18downloadAttachment2at02inC2AtySi_10Foundation9IndexPathVtF",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC18downloadAttachment2at02inC2AtySi_10Foundation9IndexPathVtF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Var",
- "name": "draftMessage",
- "printedName": "draftMessage",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Message",
- "printedName": "ApptentiveKit.MessageCenterViewModel.Message",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC05draftC0AC0C0Cvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC05draftC0AC0C0Cvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "HasStorage",
- "SetterAccess",
- "AccessControl",
- "RawDocComment"
- ],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Message",
- "printedName": "ApptentiveKit.MessageCenterViewModel.Message",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC05draftC0AC0C0Cvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC05draftC0AC0C0Cvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "draftMessageBody",
- "printedName": "draftMessageBody",
- "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": "s:13ApptentiveKit22MessageCenterViewModelC05draftC4BodySSSgvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC05draftC4BodySSSgvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC05draftC4BodySSSgvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC05draftC4BodySSSgvg",
- "moduleName": "ApptentiveKit",
- "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": "s:13ApptentiveKit22MessageCenterViewModelC05draftC4BodySSSgvs",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC05draftC4BodySSSgvs",
- "moduleName": "ApptentiveKit",
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC05draftC4BodySSSgvM",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC05draftC4BodySSSgvM",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "draftAttachments",
- "printedName": "draftAttachments",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Array",
- "printedName": "[ApptentiveKit.MessageCenterViewModel.Message.Attachment]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Attachment",
- "printedName": "ApptentiveKit.MessageCenterViewModel.Message.Attachment",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10AttachmentC"
- }
- ],
- "usr": "s:Sa"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC16draftAttachmentsSayAC0C0C10AttachmentCGvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC16draftAttachmentsSayAC0C0C10AttachmentCGvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Array",
- "printedName": "[ApptentiveKit.MessageCenterViewModel.Message.Attachment]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Attachment",
- "printedName": "ApptentiveKit.MessageCenterViewModel.Message.Attachment",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10AttachmentC"
- }
- ],
- "usr": "s:Sa"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC16draftAttachmentsSayAC0C0C10AttachmentCGvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC16draftAttachmentsSayAC0C0C10AttachmentCGvg",
- "moduleName": "ApptentiveKit",
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Function",
- "name": "addImageAttachment",
- "printedName": "addImageAttachment(_:name:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIImage",
- "printedName": "UIKit.UIImage",
- "usr": "c:objc(cs)UIImage"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC18addImageAttachment_4nameySo7UIImageC_SSSgtF",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC18addImageAttachment_4nameySo7UIImageC_SSSgtF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "addFileAttachment",
- "printedName": "addFileAttachment(at:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "URL",
- "printedName": "Foundation.URL",
- "usr": "s:10Foundation3URLV"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC17addFileAttachment2aty10Foundation3URLV_tF",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC17addFileAttachment2aty10Foundation3URLV_tF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "removeAttachment",
- "printedName": "removeAttachment(at:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC16removeAttachment2atySi_tF",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC16removeAttachment2atySi_tF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Var",
- "name": "remainingAttachmentSlots",
- "printedName": "remainingAttachmentSlots",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC24remainingAttachmentSlotsSivp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC24remainingAttachmentSlotsSivp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC24remainingAttachmentSlotsSivg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC24remainingAttachmentSlotsSivg",
- "moduleName": "ApptentiveKit",
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "canAddAttachment",
- "printedName": "canAddAttachment",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC16canAddAttachmentSbvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC16canAddAttachmentSbvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC16canAddAttachmentSbvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC16canAddAttachmentSbvg",
- "moduleName": "ApptentiveKit",
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "canSendMessage",
- "printedName": "canSendMessage",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC07canSendC0Sbvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC07canSendC0Sbvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC07canSendC0Sbvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC07canSendC0Sbvg",
- "moduleName": "ApptentiveKit",
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Function",
- "name": "sendMessage",
- "printedName": "sendMessage()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC04sendC0yyF",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC04sendC0yyF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "TypeDecl",
- "name": "Message",
- "printedName": "Message",
- "children": [
- {
- "kind": "Var",
- "name": "nonce",
- "printedName": "nonce",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C5nonceSSvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C5nonceSSvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C5nonceSSvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C5nonceSSvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "direction",
- "printedName": "direction",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Direction",
- "printedName": "ApptentiveKit.MessageCenterViewModel.Message.Direction",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C9DirectionO"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C9directionAE9DirectionOvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C9directionAE9DirectionOvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Direction",
- "printedName": "ApptentiveKit.MessageCenterViewModel.Message.Direction",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C9DirectionO"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C9directionAE9DirectionOvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C9directionAE9DirectionOvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "isAutomated",
- "printedName": "isAutomated",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C11isAutomatedSbvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C11isAutomatedSbvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C11isAutomatedSbvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C11isAutomatedSbvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "attachments",
- "printedName": "attachments",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Array",
- "printedName": "[ApptentiveKit.MessageCenterViewModel.Message.Attachment]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Attachment",
- "printedName": "ApptentiveKit.MessageCenterViewModel.Message.Attachment",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10AttachmentC"
- }
- ],
- "usr": "s:Sa"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C11attachmentsSayAE10AttachmentCGvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C11attachmentsSayAE10AttachmentCGvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Array",
- "printedName": "[ApptentiveKit.MessageCenterViewModel.Message.Attachment]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Attachment",
- "printedName": "ApptentiveKit.MessageCenterViewModel.Message.Attachment",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10AttachmentC"
- }
- ],
- "usr": "s:Sa"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C11attachmentsSayAE10AttachmentCGvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C11attachmentsSayAE10AttachmentCGvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "sender",
- "printedName": "sender",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "ApptentiveKit.MessageCenterViewModel.Message.Sender?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Sender",
- "printedName": "ApptentiveKit.MessageCenterViewModel.Message.Sender",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C6SenderV"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C6senderAE6SenderVSgvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C6senderAE6SenderVSgvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "ApptentiveKit.MessageCenterViewModel.Message.Sender?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Sender",
- "printedName": "ApptentiveKit.MessageCenterViewModel.Message.Sender",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C6SenderV"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C6senderAE6SenderVSgvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C6senderAE6SenderVSgvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "body",
- "printedName": "body",
- "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": "s:13ApptentiveKit22MessageCenterViewModelC0C0C4bodySSSgvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C4bodySSSgvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "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": "s:13ApptentiveKit22MessageCenterViewModelC0C0C4bodySSSgvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C4bodySSSgvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "sentDate",
- "printedName": "sentDate",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Date",
- "printedName": "Foundation.Date",
- "usr": "s:10Foundation4DateV"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C8sentDate10Foundation0H0Vvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C8sentDate10Foundation0H0Vvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Date",
- "printedName": "Foundation.Date",
- "usr": "s:10Foundation4DateV"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C8sentDate10Foundation0H0Vvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C8sentDate10Foundation0H0Vvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "accessibilityLabel",
- "printedName": "accessibilityLabel",
- "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": "s:13ApptentiveKit22MessageCenterViewModelC0C0C18accessibilityLabelSSSgvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C18accessibilityLabelSSSgvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "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": "s:13ApptentiveKit22MessageCenterViewModelC0C0C18accessibilityLabelSSSgvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C18accessibilityLabelSSSgvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "accessibilityHint",
- "printedName": "accessibilityHint",
- "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": "s:13ApptentiveKit22MessageCenterViewModelC0C0C17accessibilityHintSSSgvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C17accessibilityHintSSSgvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "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": "s:13ApptentiveKit22MessageCenterViewModelC0C0C17accessibilityHintSSSgvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C17accessibilityHintSSSgvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "statusText",
- "printedName": "statusText",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10statusTextSSvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C10statusTextSSvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10statusTextSSvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C10statusTextSSvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Function",
- "name": "==",
- "printedName": "==(_:_:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- },
- {
- "kind": "TypeNominal",
- "name": "Message",
- "printedName": "ApptentiveKit.MessageCenterViewModel.Message",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C"
- },
- {
- "kind": "TypeNominal",
- "name": "Message",
- "printedName": "ApptentiveKit.MessageCenterViewModel.Message",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C2eeoiySbAE_AEtFZ",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C2eeoiySbAE_AEtFZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "Final",
- "AccessControl",
- "RawDocComment"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "TypeDecl",
- "name": "Direction",
- "printedName": "Direction",
- "children": [
- {
- "kind": "Var",
- "name": "sentFromDashboard",
- "printedName": "sentFromDashboard",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.MessageCenterViewModel.Message.Direction.Type) -> (ApptentiveKit.MessageCenterViewModel.Message.ReadStatus) -> ApptentiveKit.MessageCenterViewModel.Message.Direction",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.MessageCenterViewModel.Message.ReadStatus) -> ApptentiveKit.MessageCenterViewModel.Message.Direction",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Direction",
- "printedName": "ApptentiveKit.MessageCenterViewModel.Message.Direction",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C9DirectionO"
- },
- {
- "kind": "TypeNominal",
- "name": "ReadStatus",
- "printedName": "ApptentiveKit.MessageCenterViewModel.Message.ReadStatus",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10ReadStatusO"
- }
- ]
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.MessageCenterViewModel.Message.Direction.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Direction",
- "printedName": "ApptentiveKit.MessageCenterViewModel.Message.Direction",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C9DirectionO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C9DirectionO17sentFromDashboardyAgE10ReadStatusOcAGmF",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C9DirectionO17sentFromDashboardyAgE10ReadStatusOcAGmF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "sentFromDevice",
- "printedName": "sentFromDevice",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.MessageCenterViewModel.Message.Direction.Type) -> (ApptentiveKit.MessageCenterViewModel.Message.SentStatus) -> ApptentiveKit.MessageCenterViewModel.Message.Direction",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.MessageCenterViewModel.Message.SentStatus) -> ApptentiveKit.MessageCenterViewModel.Message.Direction",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Direction",
- "printedName": "ApptentiveKit.MessageCenterViewModel.Message.Direction",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C9DirectionO"
- },
- {
- "kind": "TypeNominal",
- "name": "SentStatus",
- "printedName": "ApptentiveKit.MessageCenterViewModel.Message.SentStatus",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10SentStatusO"
- }
- ]
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.MessageCenterViewModel.Message.Direction.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Direction",
- "printedName": "ApptentiveKit.MessageCenterViewModel.Message.Direction",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C9DirectionO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C9DirectionO14sentFromDeviceyAgE10SentStatusOcAGmF",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C9DirectionO14sentFromDeviceyAgE10SentStatusOcAGmF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "automated",
- "printedName": "automated",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.MessageCenterViewModel.Message.Direction.Type) -> ApptentiveKit.MessageCenterViewModel.Message.Direction",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Direction",
- "printedName": "ApptentiveKit.MessageCenterViewModel.Message.Direction",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C9DirectionO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.MessageCenterViewModel.Message.Direction.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Direction",
- "printedName": "ApptentiveKit.MessageCenterViewModel.Message.Direction",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C9DirectionO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C9DirectionO9automatedyA2GmF",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C9DirectionO9automatedyA2GmF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Function",
- "name": "==",
- "printedName": "==(_:_:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- },
- {
- "kind": "TypeNominal",
- "name": "Direction",
- "printedName": "ApptentiveKit.MessageCenterViewModel.Message.Direction",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C9DirectionO"
- },
- {
- "kind": "TypeNominal",
- "name": "Direction",
- "printedName": "ApptentiveKit.MessageCenterViewModel.Message.Direction",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C9DirectionO"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C9DirectionO2eeoiySbAG_AGtFZ",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C9DirectionO2eeoiySbAG_AGtFZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "funcSelfKind": "NonMutating"
- }
- ],
- "declKind": "Enum",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C9DirectionO",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C9DirectionO",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "conformances": [
- {
- "kind": "Conformance",
- "name": "Equatable",
- "printedName": "Equatable",
- "usr": "s:SQ",
- "mangledName": "$sSQ"
- }
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "SentStatus",
- "printedName": "SentStatus",
- "children": [
- {
- "kind": "Var",
- "name": "draft",
- "printedName": "draft",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.MessageCenterViewModel.Message.SentStatus.Type) -> ApptentiveKit.MessageCenterViewModel.Message.SentStatus",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "SentStatus",
- "printedName": "ApptentiveKit.MessageCenterViewModel.Message.SentStatus",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10SentStatusO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.MessageCenterViewModel.Message.SentStatus.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "SentStatus",
- "printedName": "ApptentiveKit.MessageCenterViewModel.Message.SentStatus",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10SentStatusO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10SentStatusO5draftyA2GmF",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C10SentStatusO5draftyA2GmF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "queued",
- "printedName": "queued",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.MessageCenterViewModel.Message.SentStatus.Type) -> ApptentiveKit.MessageCenterViewModel.Message.SentStatus",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "SentStatus",
- "printedName": "ApptentiveKit.MessageCenterViewModel.Message.SentStatus",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10SentStatusO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.MessageCenterViewModel.Message.SentStatus.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "SentStatus",
- "printedName": "ApptentiveKit.MessageCenterViewModel.Message.SentStatus",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10SentStatusO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10SentStatusO6queuedyA2GmF",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C10SentStatusO6queuedyA2GmF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "sending",
- "printedName": "sending",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.MessageCenterViewModel.Message.SentStatus.Type) -> ApptentiveKit.MessageCenterViewModel.Message.SentStatus",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "SentStatus",
- "printedName": "ApptentiveKit.MessageCenterViewModel.Message.SentStatus",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10SentStatusO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.MessageCenterViewModel.Message.SentStatus.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "SentStatus",
- "printedName": "ApptentiveKit.MessageCenterViewModel.Message.SentStatus",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10SentStatusO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10SentStatusO7sendingyA2GmF",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C10SentStatusO7sendingyA2GmF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "sent",
- "printedName": "sent",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.MessageCenterViewModel.Message.SentStatus.Type) -> ApptentiveKit.MessageCenterViewModel.Message.SentStatus",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "SentStatus",
- "printedName": "ApptentiveKit.MessageCenterViewModel.Message.SentStatus",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10SentStatusO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.MessageCenterViewModel.Message.SentStatus.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "SentStatus",
- "printedName": "ApptentiveKit.MessageCenterViewModel.Message.SentStatus",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10SentStatusO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10SentStatusO4sentyA2GmF",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C10SentStatusO4sentyA2GmF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "failed",
- "printedName": "failed",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.MessageCenterViewModel.Message.SentStatus.Type) -> ApptentiveKit.MessageCenterViewModel.Message.SentStatus",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "SentStatus",
- "printedName": "ApptentiveKit.MessageCenterViewModel.Message.SentStatus",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10SentStatusO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.MessageCenterViewModel.Message.SentStatus.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "SentStatus",
- "printedName": "ApptentiveKit.MessageCenterViewModel.Message.SentStatus",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10SentStatusO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10SentStatusO6failedyA2GmF",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C10SentStatusO6failedyA2GmF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "hashValue",
- "printedName": "hashValue",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10SentStatusO9hashValueSivp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C10SentStatusO9hashValueSivp",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10SentStatusO9hashValueSivg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C10SentStatusO9hashValueSivg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Function",
- "name": "hash",
- "printedName": "hash(into:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Hasher",
- "printedName": "Swift.Hasher",
- "paramValueOwnership": "InOut",
- "usr": "s:s6HasherV"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10SentStatusO4hash4intoys6HasherVz_tF",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C10SentStatusO4hash4intoys6HasherVz_tF",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(from:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "SentStatus",
- "printedName": "ApptentiveKit.MessageCenterViewModel.Message.SentStatus",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10SentStatusO"
- },
- {
- "kind": "TypeNominal",
- "name": "Decoder",
- "printedName": "Swift.Decoder",
- "usr": "s:s7DecoderP"
- }
- ],
- "declKind": "Constructor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10SentStatusO4fromAGs7Decoder_p_tKcfc",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C10SentStatusO4fromAGs7Decoder_p_tKcfc",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "throwing": true,
- "init_kind": "Designated"
- },
- {
- "kind": "Function",
- "name": "encode",
- "printedName": "encode(to:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Encoder",
- "printedName": "Swift.Encoder",
- "usr": "s:s7EncoderP"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10SentStatusO6encode2toys7Encoder_p_tKF",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C10SentStatusO6encode2toys7Encoder_p_tKF",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "throwing": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "==",
- "printedName": "==(_:_:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- },
- {
- "kind": "TypeNominal",
- "name": "SentStatus",
- "printedName": "ApptentiveKit.MessageCenterViewModel.Message.SentStatus",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10SentStatusO"
- },
- {
- "kind": "TypeNominal",
- "name": "SentStatus",
- "printedName": "ApptentiveKit.MessageCenterViewModel.Message.SentStatus",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10SentStatusO"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10SentStatusO2eeoiySbAG_AGtFZ",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C10SentStatusO2eeoiySbAG_AGtFZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "funcSelfKind": "NonMutating"
- }
- ],
- "declKind": "Enum",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10SentStatusO",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C10SentStatusO",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "conformances": [
- {
- "kind": "Conformance",
- "name": "Hashable",
- "printedName": "Hashable",
- "usr": "s:SH",
- "mangledName": "$sSH"
- },
- {
- "kind": "Conformance",
- "name": "Decodable",
- "printedName": "Decodable",
- "usr": "s:Se",
- "mangledName": "$sSe"
- },
- {
- "kind": "Conformance",
- "name": "Encodable",
- "printedName": "Encodable",
- "usr": "s:SE",
- "mangledName": "$sSE"
- },
- {
- "kind": "Conformance",
- "name": "Equatable",
- "printedName": "Equatable",
- "usr": "s:SQ",
- "mangledName": "$sSQ"
- }
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "ReadStatus",
- "printedName": "ReadStatus",
- "children": [
- {
- "kind": "Var",
- "name": "read",
- "printedName": "read",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.MessageCenterViewModel.Message.ReadStatus.Type) -> ApptentiveKit.MessageCenterViewModel.Message.ReadStatus",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ReadStatus",
- "printedName": "ApptentiveKit.MessageCenterViewModel.Message.ReadStatus",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10ReadStatusO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.MessageCenterViewModel.Message.ReadStatus.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ReadStatus",
- "printedName": "ApptentiveKit.MessageCenterViewModel.Message.ReadStatus",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10ReadStatusO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10ReadStatusO4readyA2GmF",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C10ReadStatusO4readyA2GmF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "unread",
- "printedName": "unread",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.MessageCenterViewModel.Message.ReadStatus.Type) -> (Swift.String?) -> ApptentiveKit.MessageCenterViewModel.Message.ReadStatus",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(Swift.String?) -> ApptentiveKit.MessageCenterViewModel.Message.ReadStatus",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ReadStatus",
- "printedName": "ApptentiveKit.MessageCenterViewModel.Message.ReadStatus",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10ReadStatusO"
- },
- {
- "kind": "TypeNominal",
- "name": "Tuple",
- "printedName": "(messageID: Swift.String?)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
- }
- ]
- }
- ]
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.MessageCenterViewModel.Message.ReadStatus.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ReadStatus",
- "printedName": "ApptentiveKit.MessageCenterViewModel.Message.ReadStatus",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10ReadStatusO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10ReadStatusO6unreadyAGSSSg_tcAGmF",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C10ReadStatusO6unreadyAGSSSg_tcAGmF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(from:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ReadStatus",
- "printedName": "ApptentiveKit.MessageCenterViewModel.Message.ReadStatus",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10ReadStatusO"
- },
- {
- "kind": "TypeNominal",
- "name": "Decoder",
- "printedName": "Swift.Decoder",
- "usr": "s:s7DecoderP"
- }
- ],
- "declKind": "Constructor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10ReadStatusO4fromAGs7Decoder_p_tKcfc",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C10ReadStatusO4fromAGs7Decoder_p_tKcfc",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "throwing": true,
- "init_kind": "Designated"
- },
- {
- "kind": "Function",
- "name": "encode",
- "printedName": "encode(to:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Encoder",
- "printedName": "Swift.Encoder",
- "usr": "s:s7EncoderP"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10ReadStatusO6encode2toys7Encoder_p_tKF",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C10ReadStatusO6encode2toys7Encoder_p_tKF",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "throwing": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "==",
- "printedName": "==(_:_:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- },
- {
- "kind": "TypeNominal",
- "name": "ReadStatus",
- "printedName": "ApptentiveKit.MessageCenterViewModel.Message.ReadStatus",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10ReadStatusO"
- },
- {
- "kind": "TypeNominal",
- "name": "ReadStatus",
- "printedName": "ApptentiveKit.MessageCenterViewModel.Message.ReadStatus",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10ReadStatusO"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10ReadStatusO2eeoiySbAG_AGtFZ",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C10ReadStatusO2eeoiySbAG_AGtFZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "funcSelfKind": "NonMutating"
- }
- ],
- "declKind": "Enum",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10ReadStatusO",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C10ReadStatusO",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "conformances": [
- {
- "kind": "Conformance",
- "name": "Decodable",
- "printedName": "Decodable",
- "usr": "s:Se",
- "mangledName": "$sSe"
- },
- {
- "kind": "Conformance",
- "name": "Encodable",
- "printedName": "Encodable",
- "usr": "s:SE",
- "mangledName": "$sSE"
- },
- {
- "kind": "Conformance",
- "name": "Equatable",
- "printedName": "Equatable",
- "usr": "s:SQ",
- "mangledName": "$sSQ"
- }
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "Sender",
- "printedName": "Sender",
- "children": [
- {
- "kind": "Function",
- "name": "==",
- "printedName": "==(_:_:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- },
- {
- "kind": "TypeNominal",
- "name": "Sender",
- "printedName": "ApptentiveKit.MessageCenterViewModel.Message.Sender",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C6SenderV"
- },
- {
- "kind": "TypeNominal",
- "name": "Sender",
- "printedName": "ApptentiveKit.MessageCenterViewModel.Message.Sender",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C6SenderV"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C6SenderV2eeoiySbAG_AGtFZ",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C6SenderV2eeoiySbAG_AGtFZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "funcSelfKind": "NonMutating"
- }
- ],
- "declKind": "Struct",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C6SenderV",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C6SenderV",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "conformances": [
- {
- "kind": "Conformance",
- "name": "Equatable",
- "printedName": "Equatable",
- "usr": "s:SQ",
- "mangledName": "$sSQ"
- }
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "Attachment",
- "printedName": "Attachment",
- "children": [
- {
- "kind": "Var",
- "name": "fileExtension",
- "printedName": "fileExtension",
- "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": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10AttachmentC13fileExtensionSSSgvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C10AttachmentC13fileExtensionSSSgvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "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": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10AttachmentC13fileExtensionSSSgvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C10AttachmentC13fileExtensionSSSgvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "thumbnail",
- "printedName": "thumbnail",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "UIKit.UIImage?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIImage",
- "printedName": "UIKit.UIImage",
- "usr": "c:objc(cs)UIImage"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10AttachmentC9thumbnailSo7UIImageCSgvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C10AttachmentC9thumbnailSo7UIImageCSgvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "UIKit.UIImage?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIImage",
- "printedName": "UIKit.UIImage",
- "usr": "c:objc(cs)UIImage"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10AttachmentC9thumbnailSo7UIImageCSgvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C10AttachmentC9thumbnailSo7UIImageCSgvg",
- "moduleName": "ApptentiveKit",
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "downloadProgress",
- "printedName": "downloadProgress",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Float",
- "printedName": "Swift.Float",
- "usr": "s:Sf"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10AttachmentC16downloadProgressSfvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C10AttachmentC16downloadProgressSfvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Float",
- "printedName": "Swift.Float",
- "usr": "s:Sf"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10AttachmentC16downloadProgressSfvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C10AttachmentC16downloadProgressSfvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Float",
- "printedName": "Swift.Float",
- "usr": "s:Sf"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10AttachmentC16downloadProgressSfvs",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C10AttachmentC16downloadProgressSfvs",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10AttachmentC16downloadProgressSfvM",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C10AttachmentC16downloadProgressSfvM",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "localURL",
- "printedName": "localURL",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Foundation.URL?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "URL",
- "printedName": "Foundation.URL",
- "usr": "s:10Foundation3URLV"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10AttachmentC8localURL10Foundation0I0VSgvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C10AttachmentC8localURL10Foundation0I0VSgvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Foundation.URL?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "URL",
- "printedName": "Foundation.URL",
- "usr": "s:10Foundation3URLV"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10AttachmentC8localURL10Foundation0I0VSgvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C10AttachmentC8localURL10Foundation0I0VSgvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Foundation.URL?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "URL",
- "printedName": "Foundation.URL",
- "usr": "s:10Foundation3URLV"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10AttachmentC8localURL10Foundation0I0VSgvs",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C10AttachmentC8localURL10Foundation0I0VSgvs",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10AttachmentC8localURL10Foundation0I0VSgvM",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C10AttachmentC8localURL10Foundation0I0VSgvM",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "displayName",
- "printedName": "displayName",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10AttachmentC11displayNameSSvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C10AttachmentC11displayNameSSvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10AttachmentC11displayNameSSvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C10AttachmentC11displayNameSSvg",
- "moduleName": "ApptentiveKit",
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "previewItemURL",
- "printedName": "previewItemURL",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Foundation.URL?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "URL",
- "printedName": "Foundation.URL",
- "usr": "s:10Foundation3URLV"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10AttachmentC14previewItemURL10Foundation0J0VSgvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C10AttachmentC14previewItemURL10Foundation0J0VSgvp",
- "moduleName": "ApptentiveKit",
- "objc_name": "previewItemURL",
- "declAttributes": [
- "ObjC",
- "AccessControl",
- "RawDocComment"
- ],
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Foundation.URL?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "URL",
- "printedName": "Foundation.URL",
- "usr": "s:10Foundation3URLV"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10AttachmentC14previewItemURL10Foundation0J0VSgvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C10AttachmentC14previewItemURL10Foundation0J0VSgvg",
- "moduleName": "ApptentiveKit",
- "objc_name": "previewItemURL",
- "declAttributes": [
- "ObjC"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "previewItemTitle",
- "printedName": "previewItemTitle",
- "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": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10AttachmentC16previewItemTitleSSSgvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C10AttachmentC16previewItemTitleSSSgvp",
- "moduleName": "ApptentiveKit",
- "objc_name": "previewItemTitle",
- "declAttributes": [
- "ObjC",
- "AccessControl",
- "RawDocComment"
- ],
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10AttachmentC16previewItemTitleSSSgvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C10AttachmentC16previewItemTitleSSSgvg",
- "moduleName": "ApptentiveKit",
- "objc_name": "previewItemTitle",
- "declAttributes": [
- "ObjC"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "accessibilityLabel",
- "printedName": "accessibilityLabel",
- "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": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10AttachmentC18accessibilityLabelSSSgvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C10AttachmentC18accessibilityLabelSSSgvp",
- "moduleName": "ApptentiveKit",
- "overriding": true,
- "objc_name": "accessibilityLabel",
- "declAttributes": [
- "Dynamic",
- "ObjC",
- "Override",
- "AccessControl"
- ],
- "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": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10AttachmentC18accessibilityLabelSSSgvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C10AttachmentC18accessibilityLabelSSSgvg",
- "moduleName": "ApptentiveKit",
- "overriding": true,
- "objc_name": "accessibilityLabel",
- "declAttributes": [
- "Dynamic",
- "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": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10AttachmentC18accessibilityLabelSSSgvs",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C10AttachmentC18accessibilityLabelSSSgvs",
- "moduleName": "ApptentiveKit",
- "overriding": true,
- "objc_name": "setAccessibilityLabel:",
- "declAttributes": [
- "Dynamic",
- "ObjC"
- ],
- "accessorKind": "set"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "removeButtonAccessibilityLabel",
- "printedName": "removeButtonAccessibilityLabel",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10AttachmentC30removeButtonAccessibilityLabelSSvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C10AttachmentC30removeButtonAccessibilityLabelSSvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10AttachmentC30removeButtonAccessibilityLabelSSvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C10AttachmentC30removeButtonAccessibilityLabelSSvg",
- "moduleName": "ApptentiveKit",
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "viewButtonAccessibilityLabel",
- "printedName": "viewButtonAccessibilityLabel",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10AttachmentC28viewButtonAccessibilityLabelSSvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C10AttachmentC28viewButtonAccessibilityLabelSSvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10AttachmentC28viewButtonAccessibilityLabelSSvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C10AttachmentC28viewButtonAccessibilityLabelSSvg",
- "moduleName": "ApptentiveKit",
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Attachment",
- "printedName": "ApptentiveKit.MessageCenterViewModel.Message.Attachment",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10AttachmentC"
- }
- ],
- "declKind": "Constructor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10AttachmentCAGycfc",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C10AttachmentCAGycfc",
- "moduleName": "ApptentiveKit",
- "overriding": true,
- "implicit": true,
- "objc_name": "init",
- "declAttributes": [
- "Dynamic",
- "ObjC",
- "Override"
- ],
- "init_kind": "Designated"
- }
- ],
- "declKind": "Class",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10AttachmentC",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C10AttachmentC",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment",
- "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"
- }
- ]
- }
- ],
- "declKind": "Class",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasMissingDesignatedInitializers": true,
- "conformances": [
- {
- "kind": "Conformance",
- "name": "Equatable",
- "printedName": "Equatable",
- "usr": "s:SQ",
- "mangledName": "$sSQ"
- }
- ]
- }
- ],
- "declKind": "Class",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "hasMissingDesignatedInitializers": true
- },
- {
- "kind": "TypeDecl",
- "name": "MessageCenterViewModelError",
- "printedName": "MessageCenterViewModelError",
- "children": [
- {
- "kind": "Var",
- "name": "attachmentCountGreaterThanMax",
- "printedName": "attachmentCountGreaterThanMax",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.MessageCenterViewModelError.Type) -> ApptentiveKit.MessageCenterViewModelError",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "MessageCenterViewModelError",
- "printedName": "ApptentiveKit.MessageCenterViewModelError",
- "usr": "s:13ApptentiveKit27MessageCenterViewModelErrorO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.MessageCenterViewModelError.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "MessageCenterViewModelError",
- "printedName": "ApptentiveKit.MessageCenterViewModelError",
- "usr": "s:13ApptentiveKit27MessageCenterViewModelErrorO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:13ApptentiveKit27MessageCenterViewModelErrorO29attachmentCountGreaterThanMaxyA2CmF",
- "mangledName": "$s13ApptentiveKit27MessageCenterViewModelErrorO29attachmentCountGreaterThanMaxyA2CmF",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "Var",
- "name": "unableToGetImageData",
- "printedName": "unableToGetImageData",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.MessageCenterViewModelError.Type) -> ApptentiveKit.MessageCenterViewModelError",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "MessageCenterViewModelError",
- "printedName": "ApptentiveKit.MessageCenterViewModelError",
- "usr": "s:13ApptentiveKit27MessageCenterViewModelErrorO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.MessageCenterViewModelError.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "MessageCenterViewModelError",
- "printedName": "ApptentiveKit.MessageCenterViewModelError",
- "usr": "s:13ApptentiveKit27MessageCenterViewModelErrorO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:13ApptentiveKit27MessageCenterViewModelErrorO20unableToGetImageDatayA2CmF",
- "mangledName": "$s13ApptentiveKit27MessageCenterViewModelErrorO20unableToGetImageDatayA2CmF",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "Function",
- "name": "==",
- "printedName": "==(_:_:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- },
- {
- "kind": "TypeNominal",
- "name": "MessageCenterViewModelError",
- "printedName": "ApptentiveKit.MessageCenterViewModelError",
- "usr": "s:13ApptentiveKit27MessageCenterViewModelErrorO"
- },
- {
- "kind": "TypeNominal",
- "name": "MessageCenterViewModelError",
- "printedName": "ApptentiveKit.MessageCenterViewModelError",
- "usr": "s:13ApptentiveKit27MessageCenterViewModelErrorO"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit27MessageCenterViewModelErrorO2eeoiySbAC_ACtFZ",
- "mangledName": "$s13ApptentiveKit27MessageCenterViewModelErrorO2eeoiySbAC_ACtFZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Var",
- "name": "hashValue",
- "printedName": "hashValue",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit27MessageCenterViewModelErrorO9hashValueSivp",
- "mangledName": "$s13ApptentiveKit27MessageCenterViewModelErrorO9hashValueSivp",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit27MessageCenterViewModelErrorO9hashValueSivg",
- "mangledName": "$s13ApptentiveKit27MessageCenterViewModelErrorO9hashValueSivg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Function",
- "name": "hash",
- "printedName": "hash(into:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Hasher",
- "printedName": "Swift.Hasher",
- "paramValueOwnership": "InOut",
- "usr": "s:s6HasherV"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit27MessageCenterViewModelErrorO4hash4intoys6HasherVz_tF",
- "mangledName": "$s13ApptentiveKit27MessageCenterViewModelErrorO4hash4intoys6HasherVz_tF",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "funcSelfKind": "NonMutating"
- }
- ],
- "declKind": "Enum",
- "usr": "s:13ApptentiveKit27MessageCenterViewModelErrorO",
- "mangledName": "$s13ApptentiveKit27MessageCenterViewModelErrorO",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl"
- ],
- "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": "Error",
- "printedName": "Error",
- "usr": "s:s5ErrorP",
- "mangledName": "$ss5ErrorP"
- },
- {
- "kind": "Conformance",
- "name": "Sendable",
- "printedName": "Sendable",
- "usr": "s:s8SendableP",
- "mangledName": "$ss8SendableP"
- }
- ]
- },
- {
- "kind": "Import",
- "name": "UIKit",
- "printedName": "UIKit",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "UIKit",
- "printedName": "UIKit",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "UIKit",
- "printedName": "UIKit",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "UIKit",
- "printedName": "UIKit",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "Event",
- "printedName": "Event",
- "children": [
- {
- "kind": "Var",
- "name": "customData",
- "printedName": "customData",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "CustomData",
- "printedName": "ApptentiveKit.CustomData",
- "usr": "s:13ApptentiveKit10CustomDataV"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit5EventV10customDataAA06CustomE0Vvp",
- "mangledName": "$s13ApptentiveKit5EventV10customDataAA06CustomE0Vvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "CustomData",
- "printedName": "ApptentiveKit.CustomData",
- "usr": "s:13ApptentiveKit10CustomDataV"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit5EventV10customDataAA06CustomE0Vvg",
- "mangledName": "$s13ApptentiveKit5EventV10customDataAA06CustomE0Vvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "CustomData",
- "printedName": "ApptentiveKit.CustomData",
- "usr": "s:13ApptentiveKit10CustomDataV"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit5EventV10customDataAA06CustomE0Vvs",
- "mangledName": "$s13ApptentiveKit5EventV10customDataAA06CustomE0Vvs",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit5EventV10customDataAA06CustomE0VvM",
- "mangledName": "$s13ApptentiveKit5EventV10customDataAA06CustomE0VvM",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(name:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Event",
- "printedName": "ApptentiveKit.Event",
- "usr": "s:13ApptentiveKit5EventV"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Constructor",
- "usr": "s:13ApptentiveKit5EventV4nameACSS_tcfc",
- "mangledName": "$s13ApptentiveKit5EventV4nameACSS_tcfc",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "init_kind": "Designated"
- },
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(stringLiteral:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Event",
- "printedName": "ApptentiveKit.Event",
- "usr": "s:13ApptentiveKit5EventV"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Constructor",
- "usr": "s:13ApptentiveKit5EventV13stringLiteralACSS_tcfc",
- "mangledName": "$s13ApptentiveKit5EventV13stringLiteralACSS_tcfc",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "init_kind": "Designated"
- },
- {
- "kind": "Var",
- "name": "debugDescription",
- "printedName": "debugDescription",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit5EventV16debugDescriptionSSvp",
- "mangledName": "$s13ApptentiveKit5EventV16debugDescriptionSSvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit5EventV16debugDescriptionSSvg",
- "mangledName": "$s13ApptentiveKit5EventV16debugDescriptionSSvg",
- "moduleName": "ApptentiveKit",
- "accessorKind": "get"
- }
- ]
- }
- ],
- "declKind": "Struct",
- "usr": "s:13ApptentiveKit5EventV",
- "mangledName": "$s13ApptentiveKit5EventV",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "conformances": [
- {
- "kind": "Conformance",
- "name": "ExpressibleByStringLiteral",
- "printedName": "ExpressibleByStringLiteral",
- "children": [
- {
- "kind": "TypeWitness",
- "name": "StringLiteralType",
- "printedName": "StringLiteralType",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ]
- }
- ],
- "usr": "s:s26ExpressibleByStringLiteralP",
- "mangledName": "$ss26ExpressibleByStringLiteralP"
- },
- {
- "kind": "Conformance",
- "name": "CustomDebugStringConvertible",
- "printedName": "CustomDebugStringConvertible",
- "usr": "s:s28CustomDebugStringConvertibleP",
- "mangledName": "$ss28CustomDebugStringConvertibleP"
- },
- {
- "kind": "Conformance",
- "name": "ExpressibleByExtendedGraphemeClusterLiteral",
- "printedName": "ExpressibleByExtendedGraphemeClusterLiteral",
- "children": [
- {
- "kind": "TypeWitness",
- "name": "ExtendedGraphemeClusterLiteralType",
- "printedName": "ExtendedGraphemeClusterLiteralType",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ]
- }
- ],
- "usr": "s:s43ExpressibleByExtendedGraphemeClusterLiteralP",
- "mangledName": "$ss43ExpressibleByExtendedGraphemeClusterLiteralP"
- },
- {
- "kind": "Conformance",
- "name": "ExpressibleByUnicodeScalarLiteral",
- "printedName": "ExpressibleByUnicodeScalarLiteral",
- "children": [
- {
- "kind": "TypeWitness",
- "name": "UnicodeScalarLiteralType",
- "printedName": "UnicodeScalarLiteralType",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ]
- }
- ],
- "usr": "s:s33ExpressibleByUnicodeScalarLiteralP",
- "mangledName": "$ss33ExpressibleByUnicodeScalarLiteralP"
- }
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "UIKit",
- "printedName": "UIKit",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "InteractionPresenter",
- "printedName": "InteractionPresenter",
- "children": [
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "InteractionPresenter",
- "printedName": "ApptentiveKit.InteractionPresenter",
- "usr": "s:13ApptentiveKit20InteractionPresenterC"
- }
- ],
- "declKind": "Constructor",
- "usr": "s:13ApptentiveKit20InteractionPresenterCACycfc",
- "mangledName": "$s13ApptentiveKit20InteractionPresenterCACycfc",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "init_kind": "Designated"
- },
- {
- "kind": "Function",
- "name": "presentMessageCenter",
- "printedName": "presentMessageCenter(with:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "MessageCenterViewModel",
- "printedName": "ApptentiveKit.MessageCenterViewModel",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit20InteractionPresenterC20presentMessageCenter4withyAA0fG9ViewModelC_tKF",
- "mangledName": "$s13ApptentiveKit20InteractionPresenterC20presentMessageCenter4withyAA0fG9ViewModelC_tKF",
- "moduleName": "ApptentiveKit",
- "isOpen": true,
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "throwing": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "presentSurvey",
- "printedName": "presentSurvey(with:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "SurveyViewModel",
- "printedName": "ApptentiveKit.SurveyViewModel",
- "usr": "s:13ApptentiveKit15SurveyViewModelC"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit20InteractionPresenterC13presentSurvey4withyAA0F9ViewModelC_tKF",
- "mangledName": "$s13ApptentiveKit20InteractionPresenterC13presentSurvey4withyAA0F9ViewModelC_tKF",
- "moduleName": "ApptentiveKit",
- "isOpen": true,
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "throwing": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "presentEnjoymentDialog",
- "printedName": "presentEnjoymentDialog(with:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "DialogViewModel",
- "printedName": "ApptentiveKit.DialogViewModel",
- "usr": "s:13ApptentiveKit15DialogViewModelC"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit20InteractionPresenterC22presentEnjoymentDialog4withyAA0G9ViewModelC_tKF",
- "mangledName": "$s13ApptentiveKit20InteractionPresenterC22presentEnjoymentDialog4withyAA0G9ViewModelC_tKF",
- "moduleName": "ApptentiveKit",
- "isOpen": true,
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "throwing": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "presentTextModal",
- "printedName": "presentTextModal(with:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "DialogViewModel",
- "printedName": "ApptentiveKit.DialogViewModel",
- "usr": "s:13ApptentiveKit15DialogViewModelC"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit20InteractionPresenterC16presentTextModal4withyAA15DialogViewModelC_tKF",
- "mangledName": "$s13ApptentiveKit20InteractionPresenterC16presentTextModal4withyAA15DialogViewModelC_tKF",
- "moduleName": "ApptentiveKit",
- "isOpen": true,
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "throwing": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "presentViewController",
- "printedName": "presentViewController(_:completion:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIViewController",
- "printedName": "UIKit.UIViewController",
- "usr": "c:objc(cs)UIViewController"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "(() -> ())?",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "() -> ()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ]
- }
- ],
- "hasDefaultArg": true,
- "usr": "s:Sq"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit20InteractionPresenterC21presentViewController_10completionySo06UIViewG0C_yycSgtKF",
- "mangledName": "$s13ApptentiveKit20InteractionPresenterC21presentViewController_10completionySo06UIViewG0C_yycSgtKF",
- "moduleName": "ApptentiveKit",
- "isOpen": true,
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "throwing": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Var",
- "name": "validatedPresentingViewController",
- "printedName": "validatedPresentingViewController",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "UIKit.UIViewController?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIViewController",
- "printedName": "UIKit.UIViewController",
- "usr": "c:objc(cs)UIViewController"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit20InteractionPresenterC33validatedPresentingViewControllerSo06UIViewH0CSgvp",
- "mangledName": "$s13ApptentiveKit20InteractionPresenterC33validatedPresentingViewControllerSo06UIViewH0CSgvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "UIKit.UIViewController?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIViewController",
- "printedName": "UIKit.UIViewController",
- "usr": "c:objc(cs)UIViewController"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit20InteractionPresenterC33validatedPresentingViewControllerSo06UIViewH0CSgvg",
- "mangledName": "$s13ApptentiveKit20InteractionPresenterC33validatedPresentingViewControllerSo06UIViewH0CSgvg",
- "moduleName": "ApptentiveKit",
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Function",
- "name": "dismissPresentedViewController",
- "printedName": "dismissPresentedViewController(animated:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit20InteractionPresenterC30dismissPresentedViewController8animatedySb_tF",
- "mangledName": "$s13ApptentiveKit20InteractionPresenterC30dismissPresentedViewController8animatedySb_tF",
- "moduleName": "ApptentiveKit",
- "isOpen": true,
- "declAttributes": [
- "AccessControl"
- ],
- "funcSelfKind": "NonMutating"
- }
- ],
- "declKind": "Class",
- "usr": "s:13ApptentiveKit20InteractionPresenterC",
- "mangledName": "$s13ApptentiveKit20InteractionPresenterC",
- "moduleName": "ApptentiveKit",
- "isOpen": true,
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "InteractionPresenterError",
- "printedName": "InteractionPresenterError",
- "children": [
- {
- "kind": "Var",
- "name": "notImplemented",
- "printedName": "notImplemented",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.InteractionPresenterError.Type) -> (Swift.String, Swift.String) -> ApptentiveKit.InteractionPresenterError",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(Swift.String, Swift.String) -> ApptentiveKit.InteractionPresenterError",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "InteractionPresenterError",
- "printedName": "ApptentiveKit.InteractionPresenterError",
- "usr": "s:13ApptentiveKit25InteractionPresenterErrorO"
- },
- {
- "kind": "TypeNominal",
- "name": "Tuple",
- "printedName": "(Swift.String, Swift.String)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ]
- }
- ]
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.InteractionPresenterError.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "InteractionPresenterError",
- "printedName": "ApptentiveKit.InteractionPresenterError",
- "usr": "s:13ApptentiveKit25InteractionPresenterErrorO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:13ApptentiveKit25InteractionPresenterErrorO14notImplementedyACSS_SStcACmF",
- "mangledName": "$s13ApptentiveKit25InteractionPresenterErrorO14notImplementedyACSS_SStcACmF",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "Var",
- "name": "decodingFailed",
- "printedName": "decodingFailed",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.InteractionPresenterError.Type) -> (Swift.String, Swift.String) -> ApptentiveKit.InteractionPresenterError",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(Swift.String, Swift.String) -> ApptentiveKit.InteractionPresenterError",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "InteractionPresenterError",
- "printedName": "ApptentiveKit.InteractionPresenterError",
- "usr": "s:13ApptentiveKit25InteractionPresenterErrorO"
- },
- {
- "kind": "TypeNominal",
- "name": "Tuple",
- "printedName": "(Swift.String, Swift.String)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ]
- }
- ]
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.InteractionPresenterError.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "InteractionPresenterError",
- "printedName": "ApptentiveKit.InteractionPresenterError",
- "usr": "s:13ApptentiveKit25InteractionPresenterErrorO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:13ApptentiveKit25InteractionPresenterErrorO14decodingFailedyACSS_SStcACmF",
- "mangledName": "$s13ApptentiveKit25InteractionPresenterErrorO14decodingFailedyACSS_SStcACmF",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "Var",
- "name": "noPresentingViewController",
- "printedName": "noPresentingViewController",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.InteractionPresenterError.Type) -> ApptentiveKit.InteractionPresenterError",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "InteractionPresenterError",
- "printedName": "ApptentiveKit.InteractionPresenterError",
- "usr": "s:13ApptentiveKit25InteractionPresenterErrorO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.InteractionPresenterError.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "InteractionPresenterError",
- "printedName": "ApptentiveKit.InteractionPresenterError",
- "usr": "s:13ApptentiveKit25InteractionPresenterErrorO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:13ApptentiveKit25InteractionPresenterErrorO26noPresentingViewControlleryA2CmF",
- "mangledName": "$s13ApptentiveKit25InteractionPresenterErrorO26noPresentingViewControlleryA2CmF",
- "moduleName": "ApptentiveKit"
- }
- ],
- "declKind": "Enum",
- "usr": "s:13ApptentiveKit25InteractionPresenterErrorO",
- "mangledName": "$s13ApptentiveKit25InteractionPresenterErrorO",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "conformances": [
- {
- "kind": "Conformance",
- "name": "Error",
- "printedName": "Error",
- "usr": "s:s5ErrorP",
- "mangledName": "$ss5ErrorP"
- },
- {
- "kind": "Conformance",
- "name": "Sendable",
- "printedName": "Sendable",
- "usr": "s:s8SendableP",
- "mangledName": "$ss8SendableP"
- }
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "UIKit",
- "printedName": "UIKit",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "UIKit",
- "printedName": "UIKit",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "UIKit",
- "printedName": "UIKit",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "PhotosUI",
- "printedName": "PhotosUI",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "QuickLook",
- "printedName": "QuickLook",
- "declKind": "Import",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "Import",
- "name": "UIKit",
- "printedName": "UIKit",
- "declKind": "Import",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "UIKit",
- "printedName": "UIKit",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "DialogViewModelDelegate",
- "printedName": "DialogViewModelDelegate",
- "children": [
- {
- "kind": "Function",
- "name": "dismiss",
- "printedName": "dismiss()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit23DialogViewModelDelegateP7dismissyyF",
- "mangledName": "$s13ApptentiveKit23DialogViewModelDelegateP7dismissyyF",
- "moduleName": "ApptentiveKit",
- "genericSig": "<τ_0_0 where τ_0_0 : ApptentiveKit.DialogViewModelDelegate>",
- "sugared_genericSig": "",
- "protocolReq": true,
- "reqNewWitnessTableEntry": true,
- "funcSelfKind": "NonMutating"
- }
- ],
- "declKind": "Protocol",
- "usr": "s:13ApptentiveKit23DialogViewModelDelegateP",
- "mangledName": "$s13ApptentiveKit23DialogViewModelDelegateP",
- "moduleName": "ApptentiveKit",
- "genericSig": "<τ_0_0 : AnyObject>",
- "sugared_genericSig": "",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "DialogViewModel",
- "printedName": "DialogViewModel",
- "children": [
- {
- "kind": "Var",
- "name": "title",
- "printedName": "title",
- "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": "s:13ApptentiveKit15DialogViewModelC5titleSSSgvp",
- "mangledName": "$s13ApptentiveKit15DialogViewModelC5titleSSSgvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "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": "s:13ApptentiveKit15DialogViewModelC5titleSSSgvg",
- "mangledName": "$s13ApptentiveKit15DialogViewModelC5titleSSSgvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "message",
- "printedName": "message",
- "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": "s:13ApptentiveKit15DialogViewModelC7messageSSSgvp",
- "mangledName": "$s13ApptentiveKit15DialogViewModelC7messageSSSgvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "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": "s:13ApptentiveKit15DialogViewModelC7messageSSSgvg",
- "mangledName": "$s13ApptentiveKit15DialogViewModelC7messageSSSgvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "dialogType",
- "printedName": "dialogType",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "DialogType",
- "printedName": "ApptentiveKit.DialogViewModel.DialogType",
- "usr": "s:13ApptentiveKit15DialogViewModelC0C4TypeO"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit15DialogViewModelC10dialogTypeAC0cG0Ovp",
- "mangledName": "$s13ApptentiveKit15DialogViewModelC10dialogTypeAC0cG0Ovp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "DialogType",
- "printedName": "ApptentiveKit.DialogViewModel.DialogType",
- "usr": "s:13ApptentiveKit15DialogViewModelC0C4TypeO"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit15DialogViewModelC10dialogTypeAC0cG0Ovg",
- "mangledName": "$s13ApptentiveKit15DialogViewModelC10dialogTypeAC0cG0Ovg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "actions",
- "printedName": "actions",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Array",
- "printedName": "[ApptentiveKit.DialogViewModel.Action]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Action",
- "printedName": "ApptentiveKit.DialogViewModel.Action",
- "usr": "s:13ApptentiveKit15DialogViewModelC6ActionC"
- }
- ],
- "usr": "s:Sa"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit15DialogViewModelC7actionsSayAC6ActionCGvp",
- "mangledName": "$s13ApptentiveKit15DialogViewModelC7actionsSayAC6ActionCGvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Array",
- "printedName": "[ApptentiveKit.DialogViewModel.Action]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Action",
- "printedName": "ApptentiveKit.DialogViewModel.Action",
- "usr": "s:13ApptentiveKit15DialogViewModelC6ActionC"
- }
- ],
- "usr": "s:Sa"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit15DialogViewModelC7actionsSayAC6ActionCGvg",
- "mangledName": "$s13ApptentiveKit15DialogViewModelC7actionsSayAC6ActionCGvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "delegate",
- "printedName": "delegate",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "WeakStorage",
- "printedName": "ApptentiveKit.DialogViewModelDelegate?"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit15DialogViewModelC8delegateAA0cdE8Delegate_pSgvp",
- "mangledName": "$s13ApptentiveKit15DialogViewModelC8delegateAA0cdE8Delegate_pSgvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "ReferenceOwnership",
- "AccessControl",
- "RawDocComment"
- ],
- "ownership": 1,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "ApptentiveKit.DialogViewModelDelegate?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "DialogViewModelDelegate",
- "printedName": "ApptentiveKit.DialogViewModelDelegate",
- "usr": "s:13ApptentiveKit23DialogViewModelDelegateP"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit15DialogViewModelC8delegateAA0cdE8Delegate_pSgvg",
- "mangledName": "$s13ApptentiveKit15DialogViewModelC8delegateAA0cdE8Delegate_pSgvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "ApptentiveKit.DialogViewModelDelegate?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "DialogViewModelDelegate",
- "printedName": "ApptentiveKit.DialogViewModelDelegate",
- "usr": "s:13ApptentiveKit23DialogViewModelDelegateP"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit15DialogViewModelC8delegateAA0cdE8Delegate_pSgvs",
- "mangledName": "$s13ApptentiveKit15DialogViewModelC8delegateAA0cdE8Delegate_pSgvs",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit15DialogViewModelC8delegateAA0cdE8Delegate_pSgvM",
- "mangledName": "$s13ApptentiveKit15DialogViewModelC8delegateAA0cdE8Delegate_pSgvM",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Function",
- "name": "buttonSelected",
- "printedName": "buttonSelected(at:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit15DialogViewModelC14buttonSelected2atySi_tF",
- "mangledName": "$s13ApptentiveKit15DialogViewModelC14buttonSelected2atySi_tF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "launch",
- "printedName": "launch()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit15DialogViewModelC6launchyyF",
- "mangledName": "$s13ApptentiveKit15DialogViewModelC6launchyyF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "cancel",
- "printedName": "cancel()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit15DialogViewModelC6cancelyyF",
- "mangledName": "$s13ApptentiveKit15DialogViewModelC6cancelyyF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "TypeDecl",
- "name": "DialogType",
- "printedName": "DialogType",
- "children": [
- {
- "kind": "Var",
- "name": "enjoymentDialog",
- "printedName": "enjoymentDialog",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.DialogViewModel.DialogType.Type) -> ApptentiveKit.DialogViewModel.DialogType",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "DialogType",
- "printedName": "ApptentiveKit.DialogViewModel.DialogType",
- "usr": "s:13ApptentiveKit15DialogViewModelC0C4TypeO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.DialogViewModel.DialogType.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "DialogType",
- "printedName": "ApptentiveKit.DialogViewModel.DialogType",
- "usr": "s:13ApptentiveKit15DialogViewModelC0C4TypeO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:13ApptentiveKit15DialogViewModelC0C4TypeO09enjoymentC0yA2EmF",
- "mangledName": "$s13ApptentiveKit15DialogViewModelC0C4TypeO09enjoymentC0yA2EmF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "textModal",
- "printedName": "textModal",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.DialogViewModel.DialogType.Type) -> ApptentiveKit.DialogViewModel.DialogType",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "DialogType",
- "printedName": "ApptentiveKit.DialogViewModel.DialogType",
- "usr": "s:13ApptentiveKit15DialogViewModelC0C4TypeO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.DialogViewModel.DialogType.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "DialogType",
- "printedName": "ApptentiveKit.DialogViewModel.DialogType",
- "usr": "s:13ApptentiveKit15DialogViewModelC0C4TypeO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:13ApptentiveKit15DialogViewModelC0C4TypeO9textModalyA2EmF",
- "mangledName": "$s13ApptentiveKit15DialogViewModelC0C4TypeO9textModalyA2EmF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Function",
- "name": "==",
- "printedName": "==(_:_:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- },
- {
- "kind": "TypeNominal",
- "name": "DialogType",
- "printedName": "ApptentiveKit.DialogViewModel.DialogType",
- "usr": "s:13ApptentiveKit15DialogViewModelC0C4TypeO"
- },
- {
- "kind": "TypeNominal",
- "name": "DialogType",
- "printedName": "ApptentiveKit.DialogViewModel.DialogType",
- "usr": "s:13ApptentiveKit15DialogViewModelC0C4TypeO"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit15DialogViewModelC0C4TypeO2eeoiySbAE_AEtFZ",
- "mangledName": "$s13ApptentiveKit15DialogViewModelC0C4TypeO2eeoiySbAE_AEtFZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Var",
- "name": "hashValue",
- "printedName": "hashValue",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit15DialogViewModelC0C4TypeO9hashValueSivp",
- "mangledName": "$s13ApptentiveKit15DialogViewModelC0C4TypeO9hashValueSivp",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit15DialogViewModelC0C4TypeO9hashValueSivg",
- "mangledName": "$s13ApptentiveKit15DialogViewModelC0C4TypeO9hashValueSivg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Function",
- "name": "hash",
- "printedName": "hash(into:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Hasher",
- "printedName": "Swift.Hasher",
- "paramValueOwnership": "InOut",
- "usr": "s:s6HasherV"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit15DialogViewModelC0C4TypeO4hash4intoys6HasherVz_tF",
- "mangledName": "$s13ApptentiveKit15DialogViewModelC0C4TypeO4hash4intoys6HasherVz_tF",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "funcSelfKind": "NonMutating"
- }
- ],
- "declKind": "Enum",
- "usr": "s:13ApptentiveKit15DialogViewModelC0C4TypeO",
- "mangledName": "$s13ApptentiveKit15DialogViewModelC0C4TypeO",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "conformances": [
- {
- "kind": "Conformance",
- "name": "Equatable",
- "printedName": "Equatable",
- "usr": "s:SQ",
- "mangledName": "$sSQ"
- },
- {
- "kind": "Conformance",
- "name": "Hashable",
- "printedName": "Hashable",
- "usr": "s:SH",
- "mangledName": "$sSH"
- }
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "Action",
- "printedName": "Action",
- "children": [
- {
- "kind": "Var",
- "name": "label",
- "printedName": "label",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit15DialogViewModelC6ActionC5labelSSvp",
- "mangledName": "$s13ApptentiveKit15DialogViewModelC6ActionC5labelSSvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit15DialogViewModelC6ActionC5labelSSvg",
- "mangledName": "$s13ApptentiveKit15DialogViewModelC6ActionC5labelSSvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "actionType",
- "printedName": "actionType",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ActionType",
- "printedName": "ApptentiveKit.DialogViewModel.Action.ActionType",
- "usr": "s:13ApptentiveKit15DialogViewModelC6ActionC0F4TypeO"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit15DialogViewModelC6ActionC10actionTypeAE0fH0Ovp",
- "mangledName": "$s13ApptentiveKit15DialogViewModelC6ActionC10actionTypeAE0fH0Ovp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ActionType",
- "printedName": "ApptentiveKit.DialogViewModel.Action.ActionType",
- "usr": "s:13ApptentiveKit15DialogViewModelC6ActionC0F4TypeO"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit15DialogViewModelC6ActionC10actionTypeAE0fH0Ovg",
- "mangledName": "$s13ApptentiveKit15DialogViewModelC6ActionC10actionTypeAE0fH0Ovg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "buttonTapped",
- "printedName": "buttonTapped",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "() -> ()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ]
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit15DialogViewModelC6ActionC12buttonTappedyycvp",
- "mangledName": "$s13ApptentiveKit15DialogViewModelC6ActionC12buttonTappedyycvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "() -> ()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ]
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit15DialogViewModelC6ActionC12buttonTappedyycvg",
- "mangledName": "$s13ApptentiveKit15DialogViewModelC6ActionC12buttonTappedyycvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "ActionType",
- "printedName": "ActionType",
- "children": [
- {
- "kind": "Var",
- "name": "dismiss",
- "printedName": "dismiss",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.DialogViewModel.Action.ActionType.Type) -> ApptentiveKit.DialogViewModel.Action.ActionType",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ActionType",
- "printedName": "ApptentiveKit.DialogViewModel.Action.ActionType",
- "usr": "s:13ApptentiveKit15DialogViewModelC6ActionC0F4TypeO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.DialogViewModel.Action.ActionType.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ActionType",
- "printedName": "ApptentiveKit.DialogViewModel.Action.ActionType",
- "usr": "s:13ApptentiveKit15DialogViewModelC6ActionC0F4TypeO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:13ApptentiveKit15DialogViewModelC6ActionC0F4TypeO7dismissyA2GmF",
- "mangledName": "$s13ApptentiveKit15DialogViewModelC6ActionC0F4TypeO7dismissyA2GmF",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "Var",
- "name": "interaction",
- "printedName": "interaction",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.DialogViewModel.Action.ActionType.Type) -> ApptentiveKit.DialogViewModel.Action.ActionType",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ActionType",
- "printedName": "ApptentiveKit.DialogViewModel.Action.ActionType",
- "usr": "s:13ApptentiveKit15DialogViewModelC6ActionC0F4TypeO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.DialogViewModel.Action.ActionType.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ActionType",
- "printedName": "ApptentiveKit.DialogViewModel.Action.ActionType",
- "usr": "s:13ApptentiveKit15DialogViewModelC6ActionC0F4TypeO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:13ApptentiveKit15DialogViewModelC6ActionC0F4TypeO11interactionyA2GmF",
- "mangledName": "$s13ApptentiveKit15DialogViewModelC6ActionC0F4TypeO11interactionyA2GmF",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "Var",
- "name": "yes",
- "printedName": "yes",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.DialogViewModel.Action.ActionType.Type) -> ApptentiveKit.DialogViewModel.Action.ActionType",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ActionType",
- "printedName": "ApptentiveKit.DialogViewModel.Action.ActionType",
- "usr": "s:13ApptentiveKit15DialogViewModelC6ActionC0F4TypeO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.DialogViewModel.Action.ActionType.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ActionType",
- "printedName": "ApptentiveKit.DialogViewModel.Action.ActionType",
- "usr": "s:13ApptentiveKit15DialogViewModelC6ActionC0F4TypeO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:13ApptentiveKit15DialogViewModelC6ActionC0F4TypeO3yesyA2GmF",
- "mangledName": "$s13ApptentiveKit15DialogViewModelC6ActionC0F4TypeO3yesyA2GmF",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "Var",
- "name": "no",
- "printedName": "no",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.DialogViewModel.Action.ActionType.Type) -> ApptentiveKit.DialogViewModel.Action.ActionType",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ActionType",
- "printedName": "ApptentiveKit.DialogViewModel.Action.ActionType",
- "usr": "s:13ApptentiveKit15DialogViewModelC6ActionC0F4TypeO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.DialogViewModel.Action.ActionType.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ActionType",
- "printedName": "ApptentiveKit.DialogViewModel.Action.ActionType",
- "usr": "s:13ApptentiveKit15DialogViewModelC6ActionC0F4TypeO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:13ApptentiveKit15DialogViewModelC6ActionC0F4TypeO2noyA2GmF",
- "mangledName": "$s13ApptentiveKit15DialogViewModelC6ActionC0F4TypeO2noyA2GmF",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(rawValue:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "ApptentiveKit.DialogViewModel.Action.ActionType?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ActionType",
- "printedName": "ApptentiveKit.DialogViewModel.Action.ActionType",
- "usr": "s:13ApptentiveKit15DialogViewModelC6ActionC0F4TypeO"
- }
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Constructor",
- "usr": "s:13ApptentiveKit15DialogViewModelC6ActionC0F4TypeO8rawValueAGSgSS_tcfc",
- "mangledName": "$s13ApptentiveKit15DialogViewModelC6ActionC0F4TypeO8rawValueAGSgSS_tcfc",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "init_kind": "Designated"
- },
- {
- "kind": "Var",
- "name": "rawValue",
- "printedName": "rawValue",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit15DialogViewModelC6ActionC0F4TypeO8rawValueSSvp",
- "mangledName": "$s13ApptentiveKit15DialogViewModelC6ActionC0F4TypeO8rawValueSSvp",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit15DialogViewModelC6ActionC0F4TypeO8rawValueSSvg",
- "mangledName": "$s13ApptentiveKit15DialogViewModelC6ActionC0F4TypeO8rawValueSSvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "get"
- }
- ]
- }
- ],
- "declKind": "Enum",
- "usr": "s:13ApptentiveKit15DialogViewModelC6ActionC0F4TypeO",
- "mangledName": "$s13ApptentiveKit15DialogViewModelC6ActionC0F4TypeO",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl"
- ],
- "enumRawTypeName": "String",
- "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": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ]
- }
- ],
- "usr": "s:SY",
- "mangledName": "$sSY"
- }
- ]
- }
- ],
- "declKind": "Class",
- "usr": "s:13ApptentiveKit15DialogViewModelC6ActionC",
- "mangledName": "$s13ApptentiveKit15DialogViewModelC6ActionC",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasMissingDesignatedInitializers": true
- }
- ],
- "declKind": "Class",
- "usr": "s:13ApptentiveKit15DialogViewModelC",
- "mangledName": "$s13ApptentiveKit15DialogViewModelC",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "hasMissingDesignatedInitializers": true
- },
- {
- "kind": "Import",
- "name": "UIKit",
- "printedName": "UIKit",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "UIKit",
- "printedName": "UIKit",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "DialogView",
- "printedName": "DialogView",
- "children": [
- {
- "kind": "Var",
- "name": "titleTextColor",
- "printedName": "titleTextColor",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Var",
- "usr": "c:@M@ApptentiveKit@objc(cs)DialogView(py)titleTextColor",
- "mangledName": "$s13ApptentiveKit10DialogViewC14titleTextColorSo7UIColorCvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "HasInitialValue",
- "Custom",
- "HasStorage",
- "Dynamic",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@M@ApptentiveKit@objc(cs)DialogView(im)titleTextColor",
- "mangledName": "$s13ApptentiveKit10DialogViewC14titleTextColorSo7UIColorCvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Dynamic",
- "ObjC"
- ],
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@M@ApptentiveKit@objc(cs)DialogView(im)setTitleTextColor:",
- "mangledName": "$s13ApptentiveKit10DialogViewC14titleTextColorSo7UIColorCvs",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Dynamic",
- "ObjC"
- ],
- "accessorKind": "set"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "messageTextColor",
- "printedName": "messageTextColor",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Var",
- "usr": "c:@M@ApptentiveKit@objc(cs)DialogView(py)messageTextColor",
- "mangledName": "$s13ApptentiveKit10DialogViewC16messageTextColorSo7UIColorCvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "HasInitialValue",
- "Custom",
- "HasStorage",
- "Dynamic",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@M@ApptentiveKit@objc(cs)DialogView(im)messageTextColor",
- "mangledName": "$s13ApptentiveKit10DialogViewC16messageTextColorSo7UIColorCvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Dynamic",
- "ObjC"
- ],
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@M@ApptentiveKit@objc(cs)DialogView(im)setMessageTextColor:",
- "mangledName": "$s13ApptentiveKit10DialogViewC16messageTextColorSo7UIColorCvs",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Dynamic",
- "ObjC"
- ],
- "accessorKind": "set"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "titleFont",
- "printedName": "titleFont",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Var",
- "usr": "c:@M@ApptentiveKit@objc(cs)DialogView(py)titleFont",
- "mangledName": "$s13ApptentiveKit10DialogViewC9titleFontSo6UIFontCvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "HasInitialValue",
- "Custom",
- "HasStorage",
- "Dynamic",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@M@ApptentiveKit@objc(cs)DialogView(im)titleFont",
- "mangledName": "$s13ApptentiveKit10DialogViewC9titleFontSo6UIFontCvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Dynamic",
- "ObjC"
- ],
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@M@ApptentiveKit@objc(cs)DialogView(im)setTitleFont:",
- "mangledName": "$s13ApptentiveKit10DialogViewC9titleFontSo6UIFontCvs",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Dynamic",
- "ObjC"
- ],
- "accessorKind": "set"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "messageFont",
- "printedName": "messageFont",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Var",
- "usr": "c:@M@ApptentiveKit@objc(cs)DialogView(py)messageFont",
- "mangledName": "$s13ApptentiveKit10DialogViewC11messageFontSo6UIFontCvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "HasInitialValue",
- "Custom",
- "HasStorage",
- "Dynamic",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@M@ApptentiveKit@objc(cs)DialogView(im)messageFont",
- "mangledName": "$s13ApptentiveKit10DialogViewC11messageFontSo6UIFontCvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Dynamic",
- "ObjC"
- ],
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@M@ApptentiveKit@objc(cs)DialogView(im)setMessageFont:",
- "mangledName": "$s13ApptentiveKit10DialogViewC11messageFontSo6UIFontCvs",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Dynamic",
- "ObjC"
- ],
- "accessorKind": "set"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "headerImage",
- "printedName": "headerImage",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "UIKit.UIImage?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIImage",
- "printedName": "UIKit.UIImage",
- "usr": "c:objc(cs)UIImage"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Var",
- "usr": "c:@M@ApptentiveKit@objc(cs)DialogView(py)headerImage",
- "mangledName": "$s13ApptentiveKit10DialogViewC11headerImageSo7UIImageCSgvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "HasInitialValue",
- "Custom",
- "HasStorage",
- "Dynamic",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "UIKit.UIImage?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIImage",
- "printedName": "UIKit.UIImage",
- "usr": "c:objc(cs)UIImage"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@M@ApptentiveKit@objc(cs)DialogView(im)headerImage",
- "mangledName": "$s13ApptentiveKit10DialogViewC11headerImageSo7UIImageCSgvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Dynamic",
- "ObjC"
- ],
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "UIKit.UIImage?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIImage",
- "printedName": "UIKit.UIImage",
- "usr": "c:objc(cs)UIImage"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@M@ApptentiveKit@objc(cs)DialogView(im)setHeaderImage:",
- "mangledName": "$s13ApptentiveKit10DialogViewC11headerImageSo7UIImageCSgvs",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Dynamic",
- "ObjC"
- ],
- "accessorKind": "set"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "cornerRadius",
- "printedName": "cornerRadius",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "CGFloat",
- "printedName": "CoreGraphics.CGFloat",
- "usr": "s:14CoreFoundation7CGFloatV"
- }
- ],
- "declKind": "Var",
- "usr": "c:@M@ApptentiveKit@objc(cs)DialogView(py)cornerRadius",
- "mangledName": "$s13ApptentiveKit10DialogViewC12cornerRadius12CoreGraphics7CGFloatVvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "HasInitialValue",
- "Custom",
- "HasStorage",
- "Dynamic",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "CGFloat",
- "printedName": "CoreGraphics.CGFloat",
- "usr": "s:14CoreFoundation7CGFloatV"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@M@ApptentiveKit@objc(cs)DialogView(im)cornerRadius",
- "mangledName": "$s13ApptentiveKit10DialogViewC12cornerRadius12CoreGraphics7CGFloatVvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Dynamic",
- "ObjC"
- ],
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "CGFloat",
- "printedName": "CoreGraphics.CGFloat",
- "usr": "s:14CoreFoundation7CGFloatV"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@M@ApptentiveKit@objc(cs)DialogView(im)setCornerRadius:",
- "mangledName": "$s13ApptentiveKit10DialogViewC12cornerRadius12CoreGraphics7CGFloatVvs",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Dynamic",
- "ObjC"
- ],
- "accessorKind": "set"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "buttonSpacing",
- "printedName": "buttonSpacing",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "CGFloat",
- "printedName": "CoreGraphics.CGFloat",
- "usr": "s:14CoreFoundation7CGFloatV"
- }
- ],
- "declKind": "Var",
- "usr": "c:@M@ApptentiveKit@objc(cs)DialogView(py)buttonSpacing",
- "mangledName": "$s13ApptentiveKit10DialogViewC13buttonSpacing12CoreGraphics7CGFloatVvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "HasInitialValue",
- "Custom",
- "HasStorage",
- "Dynamic",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "CGFloat",
- "printedName": "CoreGraphics.CGFloat",
- "usr": "s:14CoreFoundation7CGFloatV"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@M@ApptentiveKit@objc(cs)DialogView(im)buttonSpacing",
- "mangledName": "$s13ApptentiveKit10DialogViewC13buttonSpacing12CoreGraphics7CGFloatVvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Dynamic",
- "ObjC"
- ],
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "CGFloat",
- "printedName": "CoreGraphics.CGFloat",
- "usr": "s:14CoreFoundation7CGFloatV"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@M@ApptentiveKit@objc(cs)DialogView(im)setButtonSpacing:",
- "mangledName": "$s13ApptentiveKit10DialogViewC13buttonSpacing12CoreGraphics7CGFloatVvs",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Dynamic",
- "ObjC"
- ],
- "accessorKind": "set"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "buttonInset",
- "printedName": "buttonInset",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIEdgeInsets",
- "printedName": "UIKit.UIEdgeInsets",
- "usr": "c:@S@UIEdgeInsets"
- }
- ],
- "declKind": "Var",
- "usr": "c:@M@ApptentiveKit@objc(cs)DialogView(py)buttonInset",
- "mangledName": "$s13ApptentiveKit10DialogViewC11buttonInsetSo12UIEdgeInsetsVvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "HasInitialValue",
- "Custom",
- "HasStorage",
- "Dynamic",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIEdgeInsets",
- "printedName": "UIKit.UIEdgeInsets",
- "usr": "c:@S@UIEdgeInsets"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@M@ApptentiveKit@objc(cs)DialogView(im)buttonInset",
- "mangledName": "$s13ApptentiveKit10DialogViewC11buttonInsetSo12UIEdgeInsetsVvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Dynamic",
- "ObjC"
- ],
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIEdgeInsets",
- "printedName": "UIKit.UIEdgeInsets",
- "usr": "c:@S@UIEdgeInsets"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@M@ApptentiveKit@objc(cs)DialogView(im)setButtonInset:",
- "mangledName": "$s13ApptentiveKit10DialogViewC11buttonInsetSo12UIEdgeInsetsVvs",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Dynamic",
- "ObjC"
- ],
- "accessorKind": "set"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "separatorsAreHidden",
- "printedName": "separatorsAreHidden",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ],
- "declKind": "Var",
- "usr": "c:@M@ApptentiveKit@objc(cs)DialogView(py)separatorsAreHidden",
- "mangledName": "$s13ApptentiveKit10DialogViewC19separatorsAreHiddenSbvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "HasInitialValue",
- "Custom",
- "HasStorage",
- "Dynamic",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@M@ApptentiveKit@objc(cs)DialogView(im)separatorsAreHidden",
- "mangledName": "$s13ApptentiveKit10DialogViewC19separatorsAreHiddenSbvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Dynamic",
- "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@ApptentiveKit@objc(cs)DialogView(im)setSeparatorsAreHidden:",
- "mangledName": "$s13ApptentiveKit10DialogViewC19separatorsAreHiddenSbvs",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Dynamic",
- "ObjC"
- ],
- "accessorKind": "set"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "separatorColor",
- "printedName": "separatorColor",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Var",
- "usr": "c:@M@ApptentiveKit@objc(cs)DialogView(py)separatorColor",
- "mangledName": "$s13ApptentiveKit10DialogViewC14separatorColorSo7UIColorCvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "HasInitialValue",
- "Custom",
- "HasStorage",
- "Dynamic",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@M@ApptentiveKit@objc(cs)DialogView(im)separatorColor",
- "mangledName": "$s13ApptentiveKit10DialogViewC14separatorColorSo7UIColorCvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Dynamic",
- "ObjC"
- ],
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@M@ApptentiveKit@objc(cs)DialogView(im)setSeparatorColor:",
- "mangledName": "$s13ApptentiveKit10DialogViewC14separatorColorSo7UIColorCvs",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Dynamic",
- "ObjC"
- ],
- "accessorKind": "set"
- }
- ]
- },
- {
- "kind": "Function",
- "name": "didMoveToWindow",
- "printedName": "didMoveToWindow()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Func",
- "usr": "c:@M@ApptentiveKit@objc(cs)DialogView(im)didMoveToWindow",
- "mangledName": "$s13ApptentiveKit10DialogViewC15didMoveToWindowyyF",
- "moduleName": "ApptentiveKit",
- "overriding": true,
- "objc_name": "didMoveToWindow",
- "declAttributes": [
- "Dynamic",
- "ObjC",
- "Custom",
- "Override",
- "AccessControl",
- "RawDocComment"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "layoutSubviews",
- "printedName": "layoutSubviews()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Func",
- "usr": "c:@M@ApptentiveKit@objc(cs)DialogView(im)layoutSubviews",
- "mangledName": "$s13ApptentiveKit10DialogViewC14layoutSubviewsyyF",
- "moduleName": "ApptentiveKit",
- "overriding": true,
- "objc_name": "layoutSubviews",
- "declAttributes": [
- "Dynamic",
- "ObjC",
- "Custom",
- "Override",
- "AccessControl",
- "RawDocComment"
- ],
- "funcSelfKind": "NonMutating"
- }
- ],
- "declKind": "Class",
- "usr": "c:@M@ApptentiveKit@objc(cs)DialogView",
- "mangledName": "$s13ApptentiveKit10DialogViewC",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Custom",
- "AccessControl",
- "RawDocComment",
- "ObjC"
- ],
- "superclassUsr": "c:objc(cs)UIView",
- "hasMissingDesignatedInitializers": true,
- "inheritsConvenienceInitializers": true,
- "superclassNames": [
- "UIKit.UIView",
- "UIKit.UIResponder",
- "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": "Conformance",
- "name": "__DefaultCustomPlaygroundQuickLookable",
- "printedName": "__DefaultCustomPlaygroundQuickLookable",
- "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP",
- "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP"
- },
- {
- "kind": "Conformance",
- "name": "Sendable",
- "printedName": "Sendable",
- "usr": "s:s8SendableP",
- "mangledName": "$ss8SendableP"
- }
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "UIKit",
- "printedName": "UIKit",
- "declKind": "Import",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "UIKit",
- "printedName": "UIKit",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "UIKit",
- "printedName": "UIKit",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "UIKit",
- "printedName": "UIKit",
- "declKind": "Import",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "UIKit",
- "printedName": "UIKit",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "ApptentiveAuthenticationFailureReason",
- "printedName": "ApptentiveAuthenticationFailureReason",
- "children": [
- {
- "kind": "Var",
- "name": "unknown",
- "printedName": "unknown",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.ApptentiveAuthenticationFailureReason.Type) -> ApptentiveKit.ApptentiveAuthenticationFailureReason",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveAuthenticationFailureReason",
- "printedName": "ApptentiveKit.ApptentiveAuthenticationFailureReason",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveAuthenticationFailureReason"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.ApptentiveAuthenticationFailureReason.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveAuthenticationFailureReason",
- "printedName": "ApptentiveKit.ApptentiveAuthenticationFailureReason",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveAuthenticationFailureReason"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveAuthenticationFailureReason@ApptentiveAuthenticationFailureReasonUnknown",
- "mangledName": "$s13ApptentiveKit0A27AuthenticationFailureReasonO7unknownyA2CmF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment",
- "ObjC"
- ],
- "fixedbinaryorder": 0
- },
- {
- "kind": "Var",
- "name": "invalidAlgorithm",
- "printedName": "invalidAlgorithm",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.ApptentiveAuthenticationFailureReason.Type) -> ApptentiveKit.ApptentiveAuthenticationFailureReason",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveAuthenticationFailureReason",
- "printedName": "ApptentiveKit.ApptentiveAuthenticationFailureReason",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveAuthenticationFailureReason"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.ApptentiveAuthenticationFailureReason.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveAuthenticationFailureReason",
- "printedName": "ApptentiveKit.ApptentiveAuthenticationFailureReason",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveAuthenticationFailureReason"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveAuthenticationFailureReason@ApptentiveAuthenticationFailureReasonInvalidAlgorithm",
- "mangledName": "$s13ApptentiveKit0A27AuthenticationFailureReasonO16invalidAlgorithmyA2CmF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment",
- "ObjC"
- ],
- "fixedbinaryorder": 1
- },
- {
- "kind": "Var",
- "name": "malformedToken",
- "printedName": "malformedToken",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.ApptentiveAuthenticationFailureReason.Type) -> ApptentiveKit.ApptentiveAuthenticationFailureReason",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveAuthenticationFailureReason",
- "printedName": "ApptentiveKit.ApptentiveAuthenticationFailureReason",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveAuthenticationFailureReason"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.ApptentiveAuthenticationFailureReason.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveAuthenticationFailureReason",
- "printedName": "ApptentiveKit.ApptentiveAuthenticationFailureReason",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveAuthenticationFailureReason"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveAuthenticationFailureReason@ApptentiveAuthenticationFailureReasonMalformedToken",
- "mangledName": "$s13ApptentiveKit0A27AuthenticationFailureReasonO14malformedTokenyA2CmF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment",
- "ObjC"
- ],
- "fixedbinaryorder": 2
- },
- {
- "kind": "Var",
- "name": "invalidToken",
- "printedName": "invalidToken",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.ApptentiveAuthenticationFailureReason.Type) -> ApptentiveKit.ApptentiveAuthenticationFailureReason",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveAuthenticationFailureReason",
- "printedName": "ApptentiveKit.ApptentiveAuthenticationFailureReason",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveAuthenticationFailureReason"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.ApptentiveAuthenticationFailureReason.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveAuthenticationFailureReason",
- "printedName": "ApptentiveKit.ApptentiveAuthenticationFailureReason",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveAuthenticationFailureReason"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveAuthenticationFailureReason@ApptentiveAuthenticationFailureReasonInvalidToken",
- "mangledName": "$s13ApptentiveKit0A27AuthenticationFailureReasonO12invalidTokenyA2CmF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment",
- "ObjC"
- ],
- "fixedbinaryorder": 3
- },
- {
- "kind": "Var",
- "name": "missingSubClaim",
- "printedName": "missingSubClaim",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.ApptentiveAuthenticationFailureReason.Type) -> ApptentiveKit.ApptentiveAuthenticationFailureReason",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveAuthenticationFailureReason",
- "printedName": "ApptentiveKit.ApptentiveAuthenticationFailureReason",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveAuthenticationFailureReason"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.ApptentiveAuthenticationFailureReason.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveAuthenticationFailureReason",
- "printedName": "ApptentiveKit.ApptentiveAuthenticationFailureReason",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveAuthenticationFailureReason"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveAuthenticationFailureReason@ApptentiveAuthenticationFailureReasonMissingSubClaim",
- "mangledName": "$s13ApptentiveKit0A27AuthenticationFailureReasonO15missingSubClaimyA2CmF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment",
- "ObjC"
- ],
- "fixedbinaryorder": 4
- },
- {
- "kind": "Var",
- "name": "mismatchedSubClaim",
- "printedName": "mismatchedSubClaim",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.ApptentiveAuthenticationFailureReason.Type) -> ApptentiveKit.ApptentiveAuthenticationFailureReason",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveAuthenticationFailureReason",
- "printedName": "ApptentiveKit.ApptentiveAuthenticationFailureReason",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveAuthenticationFailureReason"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.ApptentiveAuthenticationFailureReason.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveAuthenticationFailureReason",
- "printedName": "ApptentiveKit.ApptentiveAuthenticationFailureReason",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveAuthenticationFailureReason"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveAuthenticationFailureReason@ApptentiveAuthenticationFailureReasonMismatchedSubClaim",
- "mangledName": "$s13ApptentiveKit0A27AuthenticationFailureReasonO18mismatchedSubClaimyA2CmF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment",
- "ObjC"
- ],
- "fixedbinaryorder": 5
- },
- {
- "kind": "Var",
- "name": "invalidSubClaim",
- "printedName": "invalidSubClaim",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.ApptentiveAuthenticationFailureReason.Type) -> ApptentiveKit.ApptentiveAuthenticationFailureReason",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveAuthenticationFailureReason",
- "printedName": "ApptentiveKit.ApptentiveAuthenticationFailureReason",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveAuthenticationFailureReason"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.ApptentiveAuthenticationFailureReason.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveAuthenticationFailureReason",
- "printedName": "ApptentiveKit.ApptentiveAuthenticationFailureReason",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveAuthenticationFailureReason"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveAuthenticationFailureReason@ApptentiveAuthenticationFailureReasonInvalidSubClaim",
- "mangledName": "$s13ApptentiveKit0A27AuthenticationFailureReasonO15invalidSubClaimyA2CmF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment",
- "ObjC"
- ],
- "fixedbinaryorder": 6
- },
- {
- "kind": "Var",
- "name": "expiredToken",
- "printedName": "expiredToken",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.ApptentiveAuthenticationFailureReason.Type) -> ApptentiveKit.ApptentiveAuthenticationFailureReason",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveAuthenticationFailureReason",
- "printedName": "ApptentiveKit.ApptentiveAuthenticationFailureReason",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveAuthenticationFailureReason"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.ApptentiveAuthenticationFailureReason.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveAuthenticationFailureReason",
- "printedName": "ApptentiveKit.ApptentiveAuthenticationFailureReason",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveAuthenticationFailureReason"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveAuthenticationFailureReason@ApptentiveAuthenticationFailureReasonExpiredToken",
- "mangledName": "$s13ApptentiveKit0A27AuthenticationFailureReasonO12expiredTokenyA2CmF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment",
- "ObjC"
- ],
- "fixedbinaryorder": 7
- },
- {
- "kind": "Var",
- "name": "revokedToken",
- "printedName": "revokedToken",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.ApptentiveAuthenticationFailureReason.Type) -> ApptentiveKit.ApptentiveAuthenticationFailureReason",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveAuthenticationFailureReason",
- "printedName": "ApptentiveKit.ApptentiveAuthenticationFailureReason",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveAuthenticationFailureReason"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.ApptentiveAuthenticationFailureReason.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveAuthenticationFailureReason",
- "printedName": "ApptentiveKit.ApptentiveAuthenticationFailureReason",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveAuthenticationFailureReason"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveAuthenticationFailureReason@ApptentiveAuthenticationFailureReasonRevokedToken",
- "mangledName": "$s13ApptentiveKit0A27AuthenticationFailureReasonO12revokedTokenyA2CmF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment",
- "ObjC"
- ],
- "fixedbinaryorder": 8
- },
- {
- "kind": "Var",
- "name": "missingAppKey",
- "printedName": "missingAppKey",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.ApptentiveAuthenticationFailureReason.Type) -> ApptentiveKit.ApptentiveAuthenticationFailureReason",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveAuthenticationFailureReason",
- "printedName": "ApptentiveKit.ApptentiveAuthenticationFailureReason",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveAuthenticationFailureReason"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.ApptentiveAuthenticationFailureReason.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveAuthenticationFailureReason",
- "printedName": "ApptentiveKit.ApptentiveAuthenticationFailureReason",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveAuthenticationFailureReason"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveAuthenticationFailureReason@ApptentiveAuthenticationFailureReasonMissingAppKey",
- "mangledName": "$s13ApptentiveKit0A27AuthenticationFailureReasonO13missingAppKeyyA2CmF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment",
- "ObjC"
- ],
- "fixedbinaryorder": 9
- },
- {
- "kind": "Var",
- "name": "missingAppSignature",
- "printedName": "missingAppSignature",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.ApptentiveAuthenticationFailureReason.Type) -> ApptentiveKit.ApptentiveAuthenticationFailureReason",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveAuthenticationFailureReason",
- "printedName": "ApptentiveKit.ApptentiveAuthenticationFailureReason",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveAuthenticationFailureReason"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.ApptentiveAuthenticationFailureReason.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveAuthenticationFailureReason",
- "printedName": "ApptentiveKit.ApptentiveAuthenticationFailureReason",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveAuthenticationFailureReason"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveAuthenticationFailureReason@ApptentiveAuthenticationFailureReasonMissingAppSignature",
- "mangledName": "$s13ApptentiveKit0A27AuthenticationFailureReasonO19missingAppSignatureyA2CmF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment",
- "ObjC"
- ],
- "fixedbinaryorder": 10
- },
- {
- "kind": "Var",
- "name": "invalidKeySignaturePair",
- "printedName": "invalidKeySignaturePair",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.ApptentiveAuthenticationFailureReason.Type) -> ApptentiveKit.ApptentiveAuthenticationFailureReason",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveAuthenticationFailureReason",
- "printedName": "ApptentiveKit.ApptentiveAuthenticationFailureReason",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveAuthenticationFailureReason"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.ApptentiveAuthenticationFailureReason.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveAuthenticationFailureReason",
- "printedName": "ApptentiveKit.ApptentiveAuthenticationFailureReason",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveAuthenticationFailureReason"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveAuthenticationFailureReason@ApptentiveAuthenticationFailureReasonInvalidKeySignaturePair",
- "mangledName": "$s13ApptentiveKit0A27AuthenticationFailureReasonO23invalidKeySignaturePairyA2CmF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment",
- "ObjC"
- ],
- "fixedbinaryorder": 11
- },
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(rawValue:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "ApptentiveKit.ApptentiveAuthenticationFailureReason?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveAuthenticationFailureReason",
- "printedName": "ApptentiveKit.ApptentiveAuthenticationFailureReason",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveAuthenticationFailureReason"
- }
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ],
- "declKind": "Constructor",
- "usr": "s:13ApptentiveKit0A27AuthenticationFailureReasonO8rawValueACSgSi_tcfc",
- "mangledName": "$s13ApptentiveKit0A27AuthenticationFailureReasonO8rawValueACSgSi_tcfc",
- "moduleName": "ApptentiveKit",
- "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:13ApptentiveKit0A27AuthenticationFailureReasonO8rawValueSivp",
- "mangledName": "$s13ApptentiveKit0A27AuthenticationFailureReasonO8rawValueSivp",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A27AuthenticationFailureReasonO8rawValueSivg",
- "mangledName": "$s13ApptentiveKit0A27AuthenticationFailureReasonO8rawValueSivg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "get"
- }
- ]
- }
- ],
- "declKind": "Enum",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveAuthenticationFailureReason",
- "mangledName": "$s13ApptentiveKit0A27AuthenticationFailureReasonO",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "declAttributes": [
- "AccessControl",
- "ObjC",
- "Available"
- ],
- "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": "TypeDecl",
- "name": "ApptentiveConfiguration",
- "printedName": "ApptentiveConfiguration",
- "children": [
- {
- "kind": "Var",
- "name": "apptentiveKey",
- "printedName": "apptentiveKey",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveConfiguration(py)apptentiveKey",
- "mangledName": "$s13ApptentiveKit0A13ConfigurationC13apptentiveKeySSvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveConfiguration(im)apptentiveKey",
- "mangledName": "$s13ApptentiveKit0A13ConfigurationC13apptentiveKeySSvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final",
- "ObjC"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveSignature",
- "printedName": "apptentiveSignature",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveConfiguration(py)apptentiveSignature",
- "mangledName": "$s13ApptentiveKit0A13ConfigurationC19apptentiveSignatureSSvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveConfiguration(im)apptentiveSignature",
- "mangledName": "$s13ApptentiveKit0A13ConfigurationC19apptentiveSignatureSSvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final",
- "ObjC"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "logLevel",
- "printedName": "logLevel",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveLogLevel",
- "printedName": "ApptentiveKit.ApptentiveLogLevel",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveLogLevel"
- }
- ],
- "declKind": "Var",
- "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveConfiguration(py)logLevel",
- "mangledName": "$s13ApptentiveKit0A13ConfigurationC8logLevelAA0a3LogE0Ovp",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "Available",
- "RawDocComment"
- ],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveLogLevel",
- "printedName": "ApptentiveKit.ApptentiveLogLevel",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveLogLevel"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveConfiguration(im)logLevel",
- "mangledName": "$s13ApptentiveKit0A13ConfigurationC8logLevelAA0a3LogE0Ovg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "ObjC"
- ],
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "ApptentiveLogLevel",
- "printedName": "ApptentiveKit.ApptentiveLogLevel",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveLogLevel"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveConfiguration(im)setLogLevel:",
- "mangledName": "$s13ApptentiveKit0A13ConfigurationC8logLevelAA0a3LogE0Ovs",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "ObjC"
- ],
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A13ConfigurationC8logLevelAA0a3LogE0OvM",
- "mangledName": "$s13ApptentiveKit0A13ConfigurationC8logLevelAA0a3LogE0OvM",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "implicit": true,
- "declAttributes": [
- "Available"
- ],
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "shouldSanitizeLogMessages",
- "printedName": "shouldSanitizeLogMessages",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ],
- "declKind": "Var",
- "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveConfiguration(py)shouldSanitizeLogMessages",
- "mangledName": "$s13ApptentiveKit0A13ConfigurationC25shouldSanitizeLogMessagesSbvp",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "Available",
- "RawDocComment"
- ],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveConfiguration(im)shouldSanitizeLogMessages",
- "mangledName": "$s13ApptentiveKit0A13ConfigurationC25shouldSanitizeLogMessagesSbvg",
- "moduleName": "ApptentiveKit",
- "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@ApptentiveKit@objc(cs)ApptentiveConfiguration(im)setShouldSanitizeLogMessages:",
- "mangledName": "$s13ApptentiveKit0A13ConfigurationC25shouldSanitizeLogMessagesSbvs",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "ObjC"
- ],
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A13ConfigurationC25shouldSanitizeLogMessagesSbvM",
- "mangledName": "$s13ApptentiveKit0A13ConfigurationC25shouldSanitizeLogMessagesSbvM",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "implicit": true,
- "declAttributes": [
- "Available"
- ],
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "baseURL",
- "printedName": "baseURL",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Foundation.URL?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "URL",
- "printedName": "Foundation.URL",
- "usr": "s:10Foundation3URLV"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Var",
- "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveConfiguration(py)baseURL",
- "mangledName": "$s13ApptentiveKit0A13ConfigurationC7baseURL10Foundation0E0VSgvp",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "Available",
- "RawDocComment"
- ],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Foundation.URL?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "URL",
- "printedName": "Foundation.URL",
- "usr": "s:10Foundation3URLV"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveConfiguration(im)baseURL",
- "mangledName": "$s13ApptentiveKit0A13ConfigurationC7baseURL10Foundation0E0VSgvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "ObjC"
- ],
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Foundation.URL?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "URL",
- "printedName": "Foundation.URL",
- "usr": "s:10Foundation3URLV"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveConfiguration(im)setBaseURL:",
- "mangledName": "$s13ApptentiveKit0A13ConfigurationC7baseURL10Foundation0E0VSgvs",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "ObjC"
- ],
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A13ConfigurationC7baseURL10Foundation0E0VSgvM",
- "mangledName": "$s13ApptentiveKit0A13ConfigurationC7baseURL10Foundation0E0VSgvM",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "implicit": true,
- "declAttributes": [
- "Available"
- ],
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "distributionName",
- "printedName": "distributionName",
- "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@ApptentiveKit@objc(cs)ApptentiveConfiguration(py)distributionName",
- "mangledName": "$s13ApptentiveKit0A13ConfigurationC16distributionNameSSSgvp",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "Available",
- "RawDocComment"
- ],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveConfiguration(im)distributionName",
- "mangledName": "$s13ApptentiveKit0A13ConfigurationC16distributionNameSSSgvg",
- "moduleName": "ApptentiveKit",
- "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@ApptentiveKit@objc(cs)ApptentiveConfiguration(im)setDistributionName:",
- "mangledName": "$s13ApptentiveKit0A13ConfigurationC16distributionNameSSSgvs",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "ObjC"
- ],
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A13ConfigurationC16distributionNameSSSgvM",
- "mangledName": "$s13ApptentiveKit0A13ConfigurationC16distributionNameSSSgvM",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "implicit": true,
- "declAttributes": [
- "Available"
- ],
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "distributionVersion",
- "printedName": "distributionVersion",
- "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@ApptentiveKit@objc(cs)ApptentiveConfiguration(py)distributionVersion",
- "mangledName": "$s13ApptentiveKit0A13ConfigurationC19distributionVersionSSSgvp",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "Available",
- "RawDocComment"
- ],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveConfiguration(im)distributionVersion",
- "mangledName": "$s13ApptentiveKit0A13ConfigurationC19distributionVersionSSSgvg",
- "moduleName": "ApptentiveKit",
- "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@ApptentiveKit@objc(cs)ApptentiveConfiguration(im)setDistributionVersion:",
- "mangledName": "$s13ApptentiveKit0A13ConfigurationC19distributionVersionSSSgvs",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "ObjC"
- ],
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A13ConfigurationC19distributionVersionSSSgvM",
- "mangledName": "$s13ApptentiveKit0A13ConfigurationC19distributionVersionSSSgvM",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "implicit": true,
- "declAttributes": [
- "Available"
- ],
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "appID",
- "printedName": "appID",
- "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@ApptentiveKit@objc(cs)ApptentiveConfiguration(py)appID",
- "mangledName": "$s13ApptentiveKit0A13ConfigurationC5appIDSSSgvp",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "Available",
- "RawDocComment"
- ],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveConfiguration(im)appID",
- "mangledName": "$s13ApptentiveKit0A13ConfigurationC5appIDSSSgvg",
- "moduleName": "ApptentiveKit",
- "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@ApptentiveKit@objc(cs)ApptentiveConfiguration(im)setAppID:",
- "mangledName": "$s13ApptentiveKit0A13ConfigurationC5appIDSSSgvs",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "ObjC"
- ],
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A13ConfigurationC5appIDSSSgvM",
- "mangledName": "$s13ApptentiveKit0A13ConfigurationC5appIDSSSgvM",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "implicit": true,
- "declAttributes": [
- "Available"
- ],
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "showInfoButton",
- "printedName": "showInfoButton",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ],
- "declKind": "Var",
- "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveConfiguration(py)showInfoButton",
- "mangledName": "$s13ApptentiveKit0A13ConfigurationC14showInfoButtonSbvp",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "Available",
- "RawDocComment"
- ],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveConfiguration(im)showInfoButton",
- "mangledName": "$s13ApptentiveKit0A13ConfigurationC14showInfoButtonSbvg",
- "moduleName": "ApptentiveKit",
- "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@ApptentiveKit@objc(cs)ApptentiveConfiguration(im)setShowInfoButton:",
- "mangledName": "$s13ApptentiveKit0A13ConfigurationC14showInfoButtonSbvs",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "ObjC"
- ],
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A13ConfigurationC14showInfoButtonSbvM",
- "mangledName": "$s13ApptentiveKit0A13ConfigurationC14showInfoButtonSbvM",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "implicit": true,
- "declAttributes": [
- "Available"
- ],
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "surveyTermsAndConditions",
- "printedName": "surveyTermsAndConditions",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "ApptentiveKit.TermsAndConditions?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "TermsAndConditions",
- "printedName": "ApptentiveKit.TermsAndConditions",
- "usr": "c:@M@ApptentiveKit@objc(cs)TermsAndConditions"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Var",
- "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveConfiguration(py)surveyTermsAndConditions",
- "mangledName": "$s13ApptentiveKit0A13ConfigurationC24surveyTermsAndConditionsAA0efG0CSgvp",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "Available",
- "RawDocComment"
- ],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "ApptentiveKit.TermsAndConditions?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "TermsAndConditions",
- "printedName": "ApptentiveKit.TermsAndConditions",
- "usr": "c:@M@ApptentiveKit@objc(cs)TermsAndConditions"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveConfiguration(im)surveyTermsAndConditions",
- "mangledName": "$s13ApptentiveKit0A13ConfigurationC24surveyTermsAndConditionsAA0efG0CSgvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "ObjC"
- ],
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "ApptentiveKit.TermsAndConditions?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "TermsAndConditions",
- "printedName": "ApptentiveKit.TermsAndConditions",
- "usr": "c:@M@ApptentiveKit@objc(cs)TermsAndConditions"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveConfiguration(im)setSurveyTermsAndConditions:",
- "mangledName": "$s13ApptentiveKit0A13ConfigurationC24surveyTermsAndConditionsAA0efG0CSgvs",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "ObjC"
- ],
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A13ConfigurationC24surveyTermsAndConditionsAA0efG0CSgvM",
- "mangledName": "$s13ApptentiveKit0A13ConfigurationC24surveyTermsAndConditionsAA0efG0CSgvM",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "implicit": true,
- "declAttributes": [
- "Available"
- ],
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(apptentiveKey:apptentiveSignature:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "ApptentiveKit.ApptentiveConfiguration?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveConfiguration",
- "printedName": "ApptentiveKit.ApptentiveConfiguration",
- "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveConfiguration"
- }
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Constructor",
- "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveConfiguration(im)initWithApptentiveKey:apptentiveSignature:",
- "mangledName": "$s13ApptentiveKit0A13ConfigurationC13apptentiveKey0D9SignatureACSgSS_SStcfc",
- "moduleName": "ApptentiveKit",
- "objc_name": "initWithApptentiveKey:apptentiveSignature:",
- "declAttributes": [
- "Required",
- "AccessControl",
- "ObjC"
- ],
- "init_kind": "Designated"
- },
- {
- "kind": "Function",
- "name": "configuration",
- "printedName": "configuration(apptentiveKey:apptentiveSignature:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveConfiguration",
- "printedName": "ApptentiveKit.ApptentiveConfiguration",
- "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveConfiguration"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Func",
- "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveConfiguration(cm)configurationWithApptentiveKey:apptentiveSignature:",
- "mangledName": "$s13ApptentiveKit0A13ConfigurationC13configuration13apptentiveKey0E9SignatureACSS_SStFZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "objc_name": "configurationWithApptentiveKey:apptentiveSignature:",
- "declAttributes": [
- "Final",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveConfiguration",
- "printedName": "ApptentiveKit.ApptentiveConfiguration",
- "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveConfiguration"
- }
- ],
- "declKind": "Constructor",
- "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveConfiguration(im)init",
- "mangledName": "$s13ApptentiveKit0A13ConfigurationCACycfc",
- "moduleName": "ApptentiveKit",
- "overriding": true,
- "implicit": true,
- "objc_name": "init",
- "declAttributes": [
- "Dynamic",
- "ObjC",
- "Override"
- ],
- "init_kind": "Designated"
- }
- ],
- "declKind": "Class",
- "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveConfiguration",
- "mangledName": "$s13ApptentiveKit0A13ConfigurationC",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "declAttributes": [
- "AccessControl",
- "Available",
- "ObjC"
- ],
- "superclassUsr": "c:objc(cs)NSObject",
- "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": "ApptentivePushProvider",
- "printedName": "ApptentivePushProvider",
- "children": [
- {
- "kind": "Var",
- "name": "apptentive",
- "printedName": "apptentive",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.ApptentivePushProvider.Type) -> ApptentiveKit.ApptentivePushProvider",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentivePushProvider",
- "printedName": "ApptentiveKit.ApptentivePushProvider",
- "usr": "c:@M@ApptentiveKit@E@ApptentivePushProvider"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.ApptentivePushProvider.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentivePushProvider",
- "printedName": "ApptentiveKit.ApptentivePushProvider",
- "usr": "c:@M@ApptentiveKit@E@ApptentivePushProvider"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "c:@M@ApptentiveKit@E@ApptentivePushProvider@ApptentivePushProviderApptentive",
- "mangledName": "$s13ApptentiveKit0A12PushProviderO10apptentiveyA2CmF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment",
- "ObjC"
- ],
- "fixedbinaryorder": 0
- },
- {
- "kind": "Var",
- "name": "urbanAirship",
- "printedName": "urbanAirship",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.ApptentivePushProvider.Type) -> ApptentiveKit.ApptentivePushProvider",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentivePushProvider",
- "printedName": "ApptentiveKit.ApptentivePushProvider",
- "usr": "c:@M@ApptentiveKit@E@ApptentivePushProvider"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.ApptentivePushProvider.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentivePushProvider",
- "printedName": "ApptentiveKit.ApptentivePushProvider",
- "usr": "c:@M@ApptentiveKit@E@ApptentivePushProvider"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "c:@M@ApptentiveKit@E@ApptentivePushProvider@ApptentivePushProviderUrbanAirship",
- "mangledName": "$s13ApptentiveKit0A12PushProviderO12urbanAirshipyA2CmF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment",
- "ObjC"
- ],
- "fixedbinaryorder": 1
- },
- {
- "kind": "Var",
- "name": "amazonSNS",
- "printedName": "amazonSNS",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.ApptentivePushProvider.Type) -> ApptentiveKit.ApptentivePushProvider",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentivePushProvider",
- "printedName": "ApptentiveKit.ApptentivePushProvider",
- "usr": "c:@M@ApptentiveKit@E@ApptentivePushProvider"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.ApptentivePushProvider.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentivePushProvider",
- "printedName": "ApptentiveKit.ApptentivePushProvider",
- "usr": "c:@M@ApptentiveKit@E@ApptentivePushProvider"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "c:@M@ApptentiveKit@E@ApptentivePushProvider@ApptentivePushProviderAmazonSNS",
- "mangledName": "$s13ApptentiveKit0A12PushProviderO9amazonSNSyA2CmF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment",
- "ObjC"
- ],
- "fixedbinaryorder": 2
- },
- {
- "kind": "Var",
- "name": "parse",
- "printedName": "parse",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.ApptentivePushProvider.Type) -> ApptentiveKit.ApptentivePushProvider",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentivePushProvider",
- "printedName": "ApptentiveKit.ApptentivePushProvider",
- "usr": "c:@M@ApptentiveKit@E@ApptentivePushProvider"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.ApptentivePushProvider.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentivePushProvider",
- "printedName": "ApptentiveKit.ApptentivePushProvider",
- "usr": "c:@M@ApptentiveKit@E@ApptentivePushProvider"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "c:@M@ApptentiveKit@E@ApptentivePushProvider@ApptentivePushProviderParse",
- "mangledName": "$s13ApptentiveKit0A12PushProviderO5parseyA2CmF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment",
- "ObjC"
- ],
- "fixedbinaryorder": 3
- },
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(rawValue:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "ApptentiveKit.ApptentivePushProvider?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentivePushProvider",
- "printedName": "ApptentiveKit.ApptentivePushProvider",
- "usr": "c:@M@ApptentiveKit@E@ApptentivePushProvider"
- }
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ],
- "declKind": "Constructor",
- "usr": "s:13ApptentiveKit0A12PushProviderO8rawValueACSgSi_tcfc",
- "mangledName": "$s13ApptentiveKit0A12PushProviderO8rawValueACSgSi_tcfc",
- "moduleName": "ApptentiveKit",
- "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:13ApptentiveKit0A12PushProviderO8rawValueSivp",
- "mangledName": "$s13ApptentiveKit0A12PushProviderO8rawValueSivp",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A12PushProviderO8rawValueSivg",
- "mangledName": "$s13ApptentiveKit0A12PushProviderO8rawValueSivg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "get"
- }
- ]
- }
- ],
- "declKind": "Enum",
- "usr": "c:@M@ApptentiveKit@E@ApptentivePushProvider",
- "mangledName": "$s13ApptentiveKit0A12PushProviderO",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "declAttributes": [
- "AccessControl",
- "ObjC",
- "Available"
- ],
- "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": "TypeDecl",
- "name": "ApptentiveLogLevel",
- "printedName": "ApptentiveLogLevel",
- "children": [
- {
- "kind": "Var",
- "name": "undefined",
- "printedName": "undefined",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.ApptentiveLogLevel.Type) -> ApptentiveKit.ApptentiveLogLevel",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveLogLevel",
- "printedName": "ApptentiveKit.ApptentiveLogLevel",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveLogLevel"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.ApptentiveLogLevel.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveLogLevel",
- "printedName": "ApptentiveKit.ApptentiveLogLevel",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveLogLevel"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveLogLevel@ApptentiveLogLevelUndefined",
- "mangledName": "$s13ApptentiveKit0A8LogLevelO9undefinedyA2CmF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment",
- "ObjC"
- ],
- "fixedbinaryorder": 0
- },
- {
- "kind": "Var",
- "name": "crit",
- "printedName": "crit",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.ApptentiveLogLevel.Type) -> ApptentiveKit.ApptentiveLogLevel",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveLogLevel",
- "printedName": "ApptentiveKit.ApptentiveLogLevel",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveLogLevel"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.ApptentiveLogLevel.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveLogLevel",
- "printedName": "ApptentiveKit.ApptentiveLogLevel",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveLogLevel"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveLogLevel@ApptentiveLogLevelCrit",
- "mangledName": "$s13ApptentiveKit0A8LogLevelO4crityA2CmF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment",
- "ObjC"
- ],
- "fixedbinaryorder": 1
- },
- {
- "kind": "Var",
- "name": "error",
- "printedName": "error",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.ApptentiveLogLevel.Type) -> ApptentiveKit.ApptentiveLogLevel",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveLogLevel",
- "printedName": "ApptentiveKit.ApptentiveLogLevel",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveLogLevel"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.ApptentiveLogLevel.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveLogLevel",
- "printedName": "ApptentiveKit.ApptentiveLogLevel",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveLogLevel"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveLogLevel@ApptentiveLogLevelError",
- "mangledName": "$s13ApptentiveKit0A8LogLevelO5erroryA2CmF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment",
- "ObjC"
- ],
- "fixedbinaryorder": 2
- },
- {
- "kind": "Var",
- "name": "warn",
- "printedName": "warn",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.ApptentiveLogLevel.Type) -> ApptentiveKit.ApptentiveLogLevel",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveLogLevel",
- "printedName": "ApptentiveKit.ApptentiveLogLevel",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveLogLevel"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.ApptentiveLogLevel.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveLogLevel",
- "printedName": "ApptentiveKit.ApptentiveLogLevel",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveLogLevel"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveLogLevel@ApptentiveLogLevelWarn",
- "mangledName": "$s13ApptentiveKit0A8LogLevelO4warnyA2CmF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment",
- "ObjC"
- ],
- "fixedbinaryorder": 3
- },
- {
- "kind": "Var",
- "name": "info",
- "printedName": "info",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.ApptentiveLogLevel.Type) -> ApptentiveKit.ApptentiveLogLevel",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveLogLevel",
- "printedName": "ApptentiveKit.ApptentiveLogLevel",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveLogLevel"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.ApptentiveLogLevel.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveLogLevel",
- "printedName": "ApptentiveKit.ApptentiveLogLevel",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveLogLevel"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveLogLevel@ApptentiveLogLevelInfo",
- "mangledName": "$s13ApptentiveKit0A8LogLevelO4infoyA2CmF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment",
- "ObjC"
- ],
- "fixedbinaryorder": 4
- },
- {
- "kind": "Var",
- "name": "debug",
- "printedName": "debug",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.ApptentiveLogLevel.Type) -> ApptentiveKit.ApptentiveLogLevel",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveLogLevel",
- "printedName": "ApptentiveKit.ApptentiveLogLevel",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveLogLevel"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.ApptentiveLogLevel.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveLogLevel",
- "printedName": "ApptentiveKit.ApptentiveLogLevel",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveLogLevel"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveLogLevel@ApptentiveLogLevelDebug",
- "mangledName": "$s13ApptentiveKit0A8LogLevelO5debugyA2CmF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment",
- "ObjC"
- ],
- "fixedbinaryorder": 5
- },
- {
- "kind": "Var",
- "name": "verbose",
- "printedName": "verbose",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.ApptentiveLogLevel.Type) -> ApptentiveKit.ApptentiveLogLevel",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveLogLevel",
- "printedName": "ApptentiveKit.ApptentiveLogLevel",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveLogLevel"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.ApptentiveLogLevel.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveLogLevel",
- "printedName": "ApptentiveKit.ApptentiveLogLevel",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveLogLevel"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveLogLevel@ApptentiveLogLevelVerbose",
- "mangledName": "$s13ApptentiveKit0A8LogLevelO7verboseyA2CmF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment",
- "ObjC"
- ],
- "fixedbinaryorder": 6
- },
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(rawValue:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "ApptentiveKit.ApptentiveLogLevel?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveLogLevel",
- "printedName": "ApptentiveKit.ApptentiveLogLevel",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveLogLevel"
- }
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "UInt",
- "printedName": "Swift.UInt",
- "usr": "s:Su"
- }
- ],
- "declKind": "Constructor",
- "usr": "s:13ApptentiveKit0A8LogLevelO8rawValueACSgSu_tcfc",
- "mangledName": "$s13ApptentiveKit0A8LogLevelO8rawValueACSgSu_tcfc",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "init_kind": "Designated"
- },
- {
- "kind": "Var",
- "name": "rawValue",
- "printedName": "rawValue",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UInt",
- "printedName": "Swift.UInt",
- "usr": "s:Su"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit0A8LogLevelO8rawValueSuvp",
- "mangledName": "$s13ApptentiveKit0A8LogLevelO8rawValueSuvp",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UInt",
- "printedName": "Swift.UInt",
- "usr": "s:Su"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A8LogLevelO8rawValueSuvg",
- "mangledName": "$s13ApptentiveKit0A8LogLevelO8rawValueSuvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "get"
- }
- ]
- }
- ],
- "declKind": "Enum",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveLogLevel",
- "mangledName": "$s13ApptentiveKit0A8LogLevelO",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "declAttributes": [
- "AccessControl",
- "ObjC",
- "Available"
- ],
- "enumRawTypeName": "UInt",
- "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": "UInt",
- "printedName": "Swift.UInt",
- "usr": "s:Su"
- }
- ]
- }
- ],
- "usr": "s:SY",
- "mangledName": "$sSY"
- }
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "TermsAndConditions",
- "printedName": "TermsAndConditions",
- "children": [
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(bodyText:linkText:linkURL:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "TermsAndConditions",
- "printedName": "ApptentiveKit.TermsAndConditions",
- "usr": "c:@M@ApptentiveKit@objc(cs)TermsAndConditions"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Foundation.URL?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "URL",
- "printedName": "Foundation.URL",
- "usr": "s:10Foundation3URLV"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Constructor",
- "usr": "s:13ApptentiveKit18TermsAndConditionsC8bodyText04linkG00H3URLACSSSg_AG10Foundation0I0VSgtcfc",
- "mangledName": "$s13ApptentiveKit18TermsAndConditionsC8bodyText04linkG00H3URLACSSSg_AG10Foundation0I0VSgtcfc",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "declAttributes": [
- "AccessControl",
- "Available"
- ],
- "init_kind": "Designated"
- },
- {
- "kind": "Var",
- "name": "bodyText",
- "printedName": "bodyText",
- "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": "s:13ApptentiveKit18TermsAndConditionsC8bodyTextSSSgvp",
- "mangledName": "$s13ApptentiveKit18TermsAndConditionsC8bodyTextSSSgvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl"
- ],
- "isLet": true,
- "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": "s:13ApptentiveKit18TermsAndConditionsC8bodyTextSSSgvg",
- "mangledName": "$s13ApptentiveKit18TermsAndConditionsC8bodyTextSSSgvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "linkText",
- "printedName": "linkText",
- "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": "s:13ApptentiveKit18TermsAndConditionsC8linkTextSSSgvp",
- "mangledName": "$s13ApptentiveKit18TermsAndConditionsC8linkTextSSSgvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl"
- ],
- "isLet": true,
- "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": "s:13ApptentiveKit18TermsAndConditionsC8linkTextSSSgvg",
- "mangledName": "$s13ApptentiveKit18TermsAndConditionsC8linkTextSSSgvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "linkURL",
- "printedName": "linkURL",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Foundation.URL?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "URL",
- "printedName": "Foundation.URL",
- "usr": "s:10Foundation3URLV"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit18TermsAndConditionsC7linkURL10Foundation0G0VSgvp",
- "mangledName": "$s13ApptentiveKit18TermsAndConditionsC7linkURL10Foundation0G0VSgvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Foundation.URL?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "URL",
- "printedName": "Foundation.URL",
- "usr": "s:10Foundation3URLV"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit18TermsAndConditionsC7linkURL10Foundation0G0VSgvg",
- "mangledName": "$s13ApptentiveKit18TermsAndConditionsC7linkURL10Foundation0G0VSgvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "TermsAndConditions",
- "printedName": "ApptentiveKit.TermsAndConditions",
- "usr": "c:@M@ApptentiveKit@objc(cs)TermsAndConditions"
- }
- ],
- "declKind": "Constructor",
- "usr": "c:@M@ApptentiveKit@objc(cs)TermsAndConditions(im)init",
- "mangledName": "$s13ApptentiveKit18TermsAndConditionsCACycfc",
- "moduleName": "ApptentiveKit",
- "overriding": true,
- "implicit": true,
- "objc_name": "init",
- "declAttributes": [
- "Dynamic",
- "ObjC",
- "Override"
- ],
- "init_kind": "Designated"
- }
- ],
- "declKind": "Class",
- "usr": "c:@M@ApptentiveKit@objc(cs)TermsAndConditions",
- "mangledName": "$s13ApptentiveKit18TermsAndConditionsC",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "declAttributes": [
- "AccessControl",
- "Available",
- "ObjC"
- ],
- "superclassUsr": "c:objc(cs)NSObject",
- "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": "ApptentiveStyle",
- "printedName": "ApptentiveStyle",
- "children": [
- {
- "kind": "Function",
- "name": "font",
- "printedName": "font(for:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- },
- {
- "kind": "TypeNominal",
- "name": "ApptentiveStyleIdentifier",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit0A5StyleP4font3forSo6UIFontCAA0aC10IdentifierO_tF",
- "mangledName": "$s13ApptentiveKit0A5StyleP4font3forSo6UIFontCAA0aC10IdentifierO_tF",
- "moduleName": "ApptentiveKit",
- "genericSig": "<τ_0_0 where τ_0_0 : ApptentiveKit.ApptentiveStyle>",
- "sugared_genericSig": "",
- "deprecated": true,
- "protocolReq": true,
- "declAttributes": [
- "Available"
- ],
- "reqNewWitnessTableEntry": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "color",
- "printedName": "color(for:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- },
- {
- "kind": "TypeNominal",
- "name": "ApptentiveStyleIdentifier",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit0A5StyleP5color3forSo7UIColorCAA0aC10IdentifierO_tF",
- "mangledName": "$s13ApptentiveKit0A5StyleP5color3forSo7UIColorCAA0aC10IdentifierO_tF",
- "moduleName": "ApptentiveKit",
- "genericSig": "<τ_0_0 where τ_0_0 : ApptentiveKit.ApptentiveStyle>",
- "sugared_genericSig": "",
- "deprecated": true,
- "protocolReq": true,
- "declAttributes": [
- "Available"
- ],
- "reqNewWitnessTableEntry": true,
- "funcSelfKind": "NonMutating"
- }
- ],
- "declKind": "Protocol",
- "usr": "s:13ApptentiveKit0A5StyleP",
- "mangledName": "$s13ApptentiveKit0A5StyleP",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "declAttributes": [
- "AccessControl",
- "Available"
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "ApptentiveStyleIdentifier",
- "printedName": "ApptentiveStyleIdentifier",
- "children": [
- {
- "kind": "Var",
- "name": "body",
- "printedName": "body",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.ApptentiveStyleIdentifier.Type) -> ApptentiveKit.ApptentiveStyleIdentifier",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveStyleIdentifier",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveStyleIdentifier",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO4bodyyA2CmF",
- "mangledName": "$s13ApptentiveKit0A15StyleIdentifierO4bodyyA2CmF",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "Var",
- "name": "headerTitle",
- "printedName": "headerTitle",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.ApptentiveStyleIdentifier.Type) -> ApptentiveKit.ApptentiveStyleIdentifier",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveStyleIdentifier",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveStyleIdentifier",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO11headerTitleyA2CmF",
- "mangledName": "$s13ApptentiveKit0A15StyleIdentifierO11headerTitleyA2CmF",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "Var",
- "name": "headerMessage",
- "printedName": "headerMessage",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.ApptentiveStyleIdentifier.Type) -> ApptentiveKit.ApptentiveStyleIdentifier",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveStyleIdentifier",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveStyleIdentifier",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO13headerMessageyA2CmF",
- "mangledName": "$s13ApptentiveKit0A15StyleIdentifierO13headerMessageyA2CmF",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "Var",
- "name": "messageDate",
- "printedName": "messageDate",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.ApptentiveStyleIdentifier.Type) -> ApptentiveKit.ApptentiveStyleIdentifier",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveStyleIdentifier",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveStyleIdentifier",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO11messageDateyA2CmF",
- "mangledName": "$s13ApptentiveKit0A15StyleIdentifierO11messageDateyA2CmF",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "Var",
- "name": "messageSender",
- "printedName": "messageSender",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.ApptentiveStyleIdentifier.Type) -> ApptentiveKit.ApptentiveStyleIdentifier",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveStyleIdentifier",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveStyleIdentifier",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO13messageSenderyA2CmF",
- "mangledName": "$s13ApptentiveKit0A15StyleIdentifierO13messageSenderyA2CmF",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "Var",
- "name": "messageStatus",
- "printedName": "messageStatus",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.ApptentiveStyleIdentifier.Type) -> ApptentiveKit.ApptentiveStyleIdentifier",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveStyleIdentifier",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveStyleIdentifier",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO13messageStatusyA2CmF",
- "mangledName": "$s13ApptentiveKit0A15StyleIdentifierO13messageStatusyA2CmF",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "Var",
- "name": "messageCenterStatus",
- "printedName": "messageCenterStatus",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.ApptentiveStyleIdentifier.Type) -> ApptentiveKit.ApptentiveStyleIdentifier",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveStyleIdentifier",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveStyleIdentifier",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO19messageCenterStatusyA2CmF",
- "mangledName": "$s13ApptentiveKit0A15StyleIdentifierO19messageCenterStatusyA2CmF",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "Var",
- "name": "surveyInstructions",
- "printedName": "surveyInstructions",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.ApptentiveStyleIdentifier.Type) -> ApptentiveKit.ApptentiveStyleIdentifier",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveStyleIdentifier",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveStyleIdentifier",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO18surveyInstructionsyA2CmF",
- "mangledName": "$s13ApptentiveKit0A15StyleIdentifierO18surveyInstructionsyA2CmF",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "Var",
- "name": "doneButton",
- "printedName": "doneButton",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.ApptentiveStyleIdentifier.Type) -> ApptentiveKit.ApptentiveStyleIdentifier",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveStyleIdentifier",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveStyleIdentifier",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO10doneButtonyA2CmF",
- "mangledName": "$s13ApptentiveKit0A15StyleIdentifierO10doneButtonyA2CmF",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "Var",
- "name": "button",
- "printedName": "button",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.ApptentiveStyleIdentifier.Type) -> ApptentiveKit.ApptentiveStyleIdentifier",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveStyleIdentifier",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveStyleIdentifier",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO6buttonyA2CmF",
- "mangledName": "$s13ApptentiveKit0A15StyleIdentifierO6buttonyA2CmF",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "Var",
- "name": "submitButton",
- "printedName": "submitButton",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.ApptentiveStyleIdentifier.Type) -> ApptentiveKit.ApptentiveStyleIdentifier",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveStyleIdentifier",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveStyleIdentifier",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO12submitButtonyA2CmF",
- "mangledName": "$s13ApptentiveKit0A15StyleIdentifierO12submitButtonyA2CmF",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "Var",
- "name": "textInput",
- "printedName": "textInput",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.ApptentiveStyleIdentifier.Type) -> ApptentiveKit.ApptentiveStyleIdentifier",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveStyleIdentifier",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveStyleIdentifier",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO9textInputyA2CmF",
- "mangledName": "$s13ApptentiveKit0A15StyleIdentifierO9textInputyA2CmF",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "Var",
- "name": "headerBackground",
- "printedName": "headerBackground",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.ApptentiveStyleIdentifier.Type) -> ApptentiveKit.ApptentiveStyleIdentifier",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveStyleIdentifier",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveStyleIdentifier",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO16headerBackgroundyA2CmF",
- "mangledName": "$s13ApptentiveKit0A15StyleIdentifierO16headerBackgroundyA2CmF",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "Var",
- "name": "footerBackground",
- "printedName": "footerBackground",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.ApptentiveStyleIdentifier.Type) -> ApptentiveKit.ApptentiveStyleIdentifier",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveStyleIdentifier",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveStyleIdentifier",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO16footerBackgroundyA2CmF",
- "mangledName": "$s13ApptentiveKit0A15StyleIdentifierO16footerBackgroundyA2CmF",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "Var",
- "name": "failure",
- "printedName": "failure",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.ApptentiveStyleIdentifier.Type) -> ApptentiveKit.ApptentiveStyleIdentifier",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveStyleIdentifier",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveStyleIdentifier",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO7failureyA2CmF",
- "mangledName": "$s13ApptentiveKit0A15StyleIdentifierO7failureyA2CmF",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "Var",
- "name": "separator",
- "printedName": "separator",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.ApptentiveStyleIdentifier.Type) -> ApptentiveKit.ApptentiveStyleIdentifier",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveStyleIdentifier",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveStyleIdentifier",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO9separatoryA2CmF",
- "mangledName": "$s13ApptentiveKit0A15StyleIdentifierO9separatoryA2CmF",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "Var",
- "name": "background",
- "printedName": "background",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.ApptentiveStyleIdentifier.Type) -> ApptentiveKit.ApptentiveStyleIdentifier",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveStyleIdentifier",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveStyleIdentifier",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO10backgroundyA2CmF",
- "mangledName": "$s13ApptentiveKit0A15StyleIdentifierO10backgroundyA2CmF",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "Var",
- "name": "collectionBackground",
- "printedName": "collectionBackground",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.ApptentiveStyleIdentifier.Type) -> ApptentiveKit.ApptentiveStyleIdentifier",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveStyleIdentifier",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveStyleIdentifier",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO20collectionBackgroundyA2CmF",
- "mangledName": "$s13ApptentiveKit0A15StyleIdentifierO20collectionBackgroundyA2CmF",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "Var",
- "name": "textInputBackground",
- "printedName": "textInputBackground",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.ApptentiveStyleIdentifier.Type) -> ApptentiveKit.ApptentiveStyleIdentifier",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveStyleIdentifier",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveStyleIdentifier",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO19textInputBackgroundyA2CmF",
- "mangledName": "$s13ApptentiveKit0A15StyleIdentifierO19textInputBackgroundyA2CmF",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "Var",
- "name": "textInputPlaceholder",
- "printedName": "textInputPlaceholder",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.ApptentiveStyleIdentifier.Type) -> ApptentiveKit.ApptentiveStyleIdentifier",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveStyleIdentifier",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveStyleIdentifier",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO20textInputPlaceholderyA2CmF",
- "mangledName": "$s13ApptentiveKit0A15StyleIdentifierO20textInputPlaceholderyA2CmF",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "Var",
- "name": "messageBackground",
- "printedName": "messageBackground",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.ApptentiveStyleIdentifier.Type) -> ApptentiveKit.ApptentiveStyleIdentifier",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveStyleIdentifier",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveStyleIdentifier",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO17messageBackgroundyA2CmF",
- "mangledName": "$s13ApptentiveKit0A15StyleIdentifierO17messageBackgroundyA2CmF",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "Var",
- "name": "replyBackground",
- "printedName": "replyBackground",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.ApptentiveStyleIdentifier.Type) -> ApptentiveKit.ApptentiveStyleIdentifier",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveStyleIdentifier",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveStyleIdentifier",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO15replyBackgroundyA2CmF",
- "mangledName": "$s13ApptentiveKit0A15StyleIdentifierO15replyBackgroundyA2CmF",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "Var",
- "name": "contextBackground",
- "printedName": "contextBackground",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.ApptentiveStyleIdentifier.Type) -> ApptentiveKit.ApptentiveStyleIdentifier",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveStyleIdentifier",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveStyleIdentifier",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO17contextBackgroundyA2CmF",
- "mangledName": "$s13ApptentiveKit0A15StyleIdentifierO17contextBackgroundyA2CmF",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "Function",
- "name": "==",
- "printedName": "==(_:_:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- },
- {
- "kind": "TypeNominal",
- "name": "ApptentiveStyleIdentifier",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO"
- },
- {
- "kind": "TypeNominal",
- "name": "ApptentiveStyleIdentifier",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO2eeoiySbAC_ACtFZ",
- "mangledName": "$s13ApptentiveKit0A15StyleIdentifierO2eeoiySbAC_ACtFZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Var",
- "name": "hashValue",
- "printedName": "hashValue",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO9hashValueSivp",
- "mangledName": "$s13ApptentiveKit0A15StyleIdentifierO9hashValueSivp",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO9hashValueSivg",
- "mangledName": "$s13ApptentiveKit0A15StyleIdentifierO9hashValueSivg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Function",
- "name": "hash",
- "printedName": "hash(into:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Hasher",
- "printedName": "Swift.Hasher",
- "paramValueOwnership": "InOut",
- "usr": "s:s6HasherV"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO4hash4intoys6HasherVz_tF",
- "mangledName": "$s13ApptentiveKit0A15StyleIdentifierO4hash4intoys6HasherVz_tF",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "funcSelfKind": "NonMutating"
- }
- ],
- "declKind": "Enum",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO",
- "mangledName": "$s13ApptentiveKit0A15StyleIdentifierO",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "declAttributes": [
- "AccessControl",
- "Available"
- ],
- "conformances": [
- {
- "kind": "Conformance",
- "name": "Equatable",
- "printedName": "Equatable",
- "usr": "s:SQ",
- "mangledName": "$sSQ"
- },
- {
- "kind": "Conformance",
- "name": "Hashable",
- "printedName": "Hashable",
- "usr": "s:SH",
- "mangledName": "$sSH"
- }
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "ApptentiveStyleSheet",
- "printedName": "ApptentiveStyleSheet",
- "children": [
- {
- "kind": "Function",
- "name": "font",
- "printedName": "font(for:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- },
- {
- "kind": "TypeNominal",
- "name": "ApptentiveStyleIdentifier",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit0A10StyleSheetC4font3forSo6UIFontCAA0aC10IdentifierO_tF",
- "mangledName": "$s13ApptentiveKit0A10StyleSheetC4font3forSo6UIFontCAA0aC10IdentifierO_tF",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "declAttributes": [
- "AccessControl",
- "Available"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "color",
- "printedName": "color(for:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- },
- {
- "kind": "TypeNominal",
- "name": "ApptentiveStyleIdentifier",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit0A10StyleSheetC5color3forSo7UIColorCAA0aC10IdentifierO_tF",
- "mangledName": "$s13ApptentiveKit0A10StyleSheetC5color3forSo7UIColorCAA0aC10IdentifierO_tF",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "declAttributes": [
- "AccessControl",
- "Available"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(contentsOf:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "ApptentiveKit.ApptentiveStyleSheet?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveStyleSheet",
- "printedName": "ApptentiveKit.ApptentiveStyleSheet",
- "usr": "s:13ApptentiveKit0A10StyleSheetC"
- }
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "URL",
- "printedName": "Foundation.URL",
- "usr": "s:10Foundation3URLV"
- }
- ],
- "declKind": "Constructor",
- "usr": "s:13ApptentiveKit0A10StyleSheetC10contentsOfACSg10Foundation3URLV_tcfc",
- "mangledName": "$s13ApptentiveKit0A10StyleSheetC10contentsOfACSg10Foundation3URLV_tcfc",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "declAttributes": [
- "Convenience",
- "AccessControl",
- "Available"
- ],
- "init_kind": "Convenience"
- },
- {
- "kind": "Var",
- "name": "fontFamily",
- "printedName": "fontFamily",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit0A10StyleSheetC10fontFamilySSvp",
- "mangledName": "$s13ApptentiveKit0A10StyleSheetC10fontFamilySSvp",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "declAttributes": [
- "HasStorage",
- "AccessControl",
- "Available"
- ],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A10StyleSheetC10fontFamilySSvg",
- "mangledName": "$s13ApptentiveKit0A10StyleSheetC10fontFamilySSvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "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": "s:13ApptentiveKit0A10StyleSheetC10fontFamilySSvs",
- "mangledName": "$s13ApptentiveKit0A10StyleSheetC10fontFamilySSvs",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A10StyleSheetC10fontFamilySSvM",
- "mangledName": "$s13ApptentiveKit0A10StyleSheetC10fontFamilySSvM",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "implicit": true,
- "declAttributes": [
- "Available"
- ],
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "lightFaceAttribute",
- "printedName": "lightFaceAttribute",
- "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": "s:13ApptentiveKit0A10StyleSheetC18lightFaceAttributeSSSgvp",
- "mangledName": "$s13ApptentiveKit0A10StyleSheetC18lightFaceAttributeSSSgvp",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl",
- "Available"
- ],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A10StyleSheetC18lightFaceAttributeSSSgvg",
- "mangledName": "$s13ApptentiveKit0A10StyleSheetC18lightFaceAttributeSSSgvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "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": "s:13ApptentiveKit0A10StyleSheetC18lightFaceAttributeSSSgvs",
- "mangledName": "$s13ApptentiveKit0A10StyleSheetC18lightFaceAttributeSSSgvs",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A10StyleSheetC18lightFaceAttributeSSSgvM",
- "mangledName": "$s13ApptentiveKit0A10StyleSheetC18lightFaceAttributeSSSgvM",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "implicit": true,
- "declAttributes": [
- "Available"
- ],
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "regularFaceAttribute",
- "printedName": "regularFaceAttribute",
- "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": "s:13ApptentiveKit0A10StyleSheetC20regularFaceAttributeSSSgvp",
- "mangledName": "$s13ApptentiveKit0A10StyleSheetC20regularFaceAttributeSSSgvp",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl",
- "Available"
- ],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A10StyleSheetC20regularFaceAttributeSSSgvg",
- "mangledName": "$s13ApptentiveKit0A10StyleSheetC20regularFaceAttributeSSSgvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "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": "s:13ApptentiveKit0A10StyleSheetC20regularFaceAttributeSSSgvs",
- "mangledName": "$s13ApptentiveKit0A10StyleSheetC20regularFaceAttributeSSSgvs",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A10StyleSheetC20regularFaceAttributeSSSgvM",
- "mangledName": "$s13ApptentiveKit0A10StyleSheetC20regularFaceAttributeSSSgvM",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "implicit": true,
- "declAttributes": [
- "Available"
- ],
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "mediumFaceAttribute",
- "printedName": "mediumFaceAttribute",
- "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": "s:13ApptentiveKit0A10StyleSheetC19mediumFaceAttributeSSSgvp",
- "mangledName": "$s13ApptentiveKit0A10StyleSheetC19mediumFaceAttributeSSSgvp",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl",
- "Available"
- ],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A10StyleSheetC19mediumFaceAttributeSSSgvg",
- "mangledName": "$s13ApptentiveKit0A10StyleSheetC19mediumFaceAttributeSSSgvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "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": "s:13ApptentiveKit0A10StyleSheetC19mediumFaceAttributeSSSgvs",
- "mangledName": "$s13ApptentiveKit0A10StyleSheetC19mediumFaceAttributeSSSgvs",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A10StyleSheetC19mediumFaceAttributeSSSgvM",
- "mangledName": "$s13ApptentiveKit0A10StyleSheetC19mediumFaceAttributeSSSgvM",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "implicit": true,
- "declAttributes": [
- "Available"
- ],
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "boldFaceAttribute",
- "printedName": "boldFaceAttribute",
- "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": "s:13ApptentiveKit0A10StyleSheetC17boldFaceAttributeSSSgvp",
- "mangledName": "$s13ApptentiveKit0A10StyleSheetC17boldFaceAttributeSSSgvp",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl",
- "Available"
- ],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A10StyleSheetC17boldFaceAttributeSSSgvg",
- "mangledName": "$s13ApptentiveKit0A10StyleSheetC17boldFaceAttributeSSSgvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "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": "s:13ApptentiveKit0A10StyleSheetC17boldFaceAttributeSSSgvs",
- "mangledName": "$s13ApptentiveKit0A10StyleSheetC17boldFaceAttributeSSSgvs",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A10StyleSheetC17boldFaceAttributeSSSgvM",
- "mangledName": "$s13ApptentiveKit0A10StyleSheetC17boldFaceAttributeSSSgvM",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "implicit": true,
- "declAttributes": [
- "Available"
- ],
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "primaryColor",
- "printedName": "primaryColor",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit0A10StyleSheetC12primaryColorSo7UIColorCvp",
- "mangledName": "$s13ApptentiveKit0A10StyleSheetC12primaryColorSo7UIColorCvp",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "declAttributes": [
- "HasStorage",
- "AccessControl",
- "Available"
- ],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A10StyleSheetC12primaryColorSo7UIColorCvg",
- "mangledName": "$s13ApptentiveKit0A10StyleSheetC12primaryColorSo7UIColorCvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A10StyleSheetC12primaryColorSo7UIColorCvs",
- "mangledName": "$s13ApptentiveKit0A10StyleSheetC12primaryColorSo7UIColorCvs",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A10StyleSheetC12primaryColorSo7UIColorCvM",
- "mangledName": "$s13ApptentiveKit0A10StyleSheetC12primaryColorSo7UIColorCvM",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "implicit": true,
- "declAttributes": [
- "Available"
- ],
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "secondaryColor",
- "printedName": "secondaryColor",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit0A10StyleSheetC14secondaryColorSo7UIColorCvp",
- "mangledName": "$s13ApptentiveKit0A10StyleSheetC14secondaryColorSo7UIColorCvp",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "declAttributes": [
- "HasStorage",
- "AccessControl",
- "Available"
- ],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A10StyleSheetC14secondaryColorSo7UIColorCvg",
- "mangledName": "$s13ApptentiveKit0A10StyleSheetC14secondaryColorSo7UIColorCvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A10StyleSheetC14secondaryColorSo7UIColorCvs",
- "mangledName": "$s13ApptentiveKit0A10StyleSheetC14secondaryColorSo7UIColorCvs",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A10StyleSheetC14secondaryColorSo7UIColorCvM",
- "mangledName": "$s13ApptentiveKit0A10StyleSheetC14secondaryColorSo7UIColorCvM",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "implicit": true,
- "declAttributes": [
- "Available"
- ],
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "failureColor",
- "printedName": "failureColor",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit0A10StyleSheetC12failureColorSo7UIColorCvp",
- "mangledName": "$s13ApptentiveKit0A10StyleSheetC12failureColorSo7UIColorCvp",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "declAttributes": [
- "HasStorage",
- "AccessControl",
- "Available"
- ],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A10StyleSheetC12failureColorSo7UIColorCvg",
- "mangledName": "$s13ApptentiveKit0A10StyleSheetC12failureColorSo7UIColorCvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A10StyleSheetC12failureColorSo7UIColorCvs",
- "mangledName": "$s13ApptentiveKit0A10StyleSheetC12failureColorSo7UIColorCvs",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A10StyleSheetC12failureColorSo7UIColorCvM",
- "mangledName": "$s13ApptentiveKit0A10StyleSheetC12failureColorSo7UIColorCvM",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "implicit": true,
- "declAttributes": [
- "Available"
- ],
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "backgroundColor",
- "printedName": "backgroundColor",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit0A10StyleSheetC15backgroundColorSo7UIColorCvp",
- "mangledName": "$s13ApptentiveKit0A10StyleSheetC15backgroundColorSo7UIColorCvp",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "declAttributes": [
- "HasStorage",
- "AccessControl",
- "Available"
- ],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A10StyleSheetC15backgroundColorSo7UIColorCvg",
- "mangledName": "$s13ApptentiveKit0A10StyleSheetC15backgroundColorSo7UIColorCvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A10StyleSheetC15backgroundColorSo7UIColorCvs",
- "mangledName": "$s13ApptentiveKit0A10StyleSheetC15backgroundColorSo7UIColorCvs",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A10StyleSheetC15backgroundColorSo7UIColorCvM",
- "mangledName": "$s13ApptentiveKit0A10StyleSheetC15backgroundColorSo7UIColorCvM",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "implicit": true,
- "declAttributes": [
- "Available"
- ],
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "separatorColor",
- "printedName": "separatorColor",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit0A10StyleSheetC14separatorColorSo7UIColorCvp",
- "mangledName": "$s13ApptentiveKit0A10StyleSheetC14separatorColorSo7UIColorCvp",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "declAttributes": [
- "HasStorage",
- "AccessControl",
- "Available"
- ],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A10StyleSheetC14separatorColorSo7UIColorCvg",
- "mangledName": "$s13ApptentiveKit0A10StyleSheetC14separatorColorSo7UIColorCvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A10StyleSheetC14separatorColorSo7UIColorCvs",
- "mangledName": "$s13ApptentiveKit0A10StyleSheetC14separatorColorSo7UIColorCvs",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A10StyleSheetC14separatorColorSo7UIColorCvM",
- "mangledName": "$s13ApptentiveKit0A10StyleSheetC14separatorColorSo7UIColorCvM",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "implicit": true,
- "declAttributes": [
- "Available"
- ],
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "collectionBackgroundColor",
- "printedName": "collectionBackgroundColor",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit0A10StyleSheetC25collectionBackgroundColorSo7UIColorCvp",
- "mangledName": "$s13ApptentiveKit0A10StyleSheetC25collectionBackgroundColorSo7UIColorCvp",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "declAttributes": [
- "HasStorage",
- "AccessControl",
- "Available"
- ],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A10StyleSheetC25collectionBackgroundColorSo7UIColorCvg",
- "mangledName": "$s13ApptentiveKit0A10StyleSheetC25collectionBackgroundColorSo7UIColorCvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A10StyleSheetC25collectionBackgroundColorSo7UIColorCvs",
- "mangledName": "$s13ApptentiveKit0A10StyleSheetC25collectionBackgroundColorSo7UIColorCvs",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A10StyleSheetC25collectionBackgroundColorSo7UIColorCvM",
- "mangledName": "$s13ApptentiveKit0A10StyleSheetC25collectionBackgroundColorSo7UIColorCvM",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "implicit": true,
- "declAttributes": [
- "Available"
- ],
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "placeholderColor",
- "printedName": "placeholderColor",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit0A10StyleSheetC16placeholderColorSo7UIColorCvp",
- "mangledName": "$s13ApptentiveKit0A10StyleSheetC16placeholderColorSo7UIColorCvp",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "declAttributes": [
- "HasStorage",
- "AccessControl",
- "Available"
- ],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A10StyleSheetC16placeholderColorSo7UIColorCvg",
- "mangledName": "$s13ApptentiveKit0A10StyleSheetC16placeholderColorSo7UIColorCvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A10StyleSheetC16placeholderColorSo7UIColorCvs",
- "mangledName": "$s13ApptentiveKit0A10StyleSheetC16placeholderColorSo7UIColorCvs",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A10StyleSheetC16placeholderColorSo7UIColorCvM",
- "mangledName": "$s13ApptentiveKit0A10StyleSheetC16placeholderColorSo7UIColorCvM",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "implicit": true,
- "declAttributes": [
- "Available"
- ],
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "sizeAdjustment",
- "printedName": "sizeAdjustment",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "CGFloat",
- "printedName": "CoreGraphics.CGFloat",
- "usr": "s:14CoreFoundation7CGFloatV"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit0A10StyleSheetC14sizeAdjustment14CoreFoundation7CGFloatVvp",
- "mangledName": "$s13ApptentiveKit0A10StyleSheetC14sizeAdjustment12CoreGraphics7CGFloatVvp",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "declAttributes": [
- "HasStorage",
- "AccessControl",
- "Available"
- ],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "CGFloat",
- "printedName": "CoreGraphics.CGFloat",
- "usr": "s:14CoreFoundation7CGFloatV"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A10StyleSheetC14sizeAdjustment14CoreFoundation7CGFloatVvg",
- "mangledName": "$s13ApptentiveKit0A10StyleSheetC14sizeAdjustment12CoreGraphics7CGFloatVvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "CGFloat",
- "printedName": "CoreGraphics.CGFloat",
- "usr": "s:14CoreFoundation7CGFloatV"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A10StyleSheetC14sizeAdjustment14CoreFoundation7CGFloatVvs",
- "mangledName": "$s13ApptentiveKit0A10StyleSheetC14sizeAdjustment12CoreGraphics7CGFloatVvs",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A10StyleSheetC14sizeAdjustment14CoreFoundation7CGFloatVvM",
- "mangledName": "$s13ApptentiveKit0A10StyleSheetC14sizeAdjustment12CoreGraphics7CGFloatVvM",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "implicit": true,
- "declAttributes": [
- "Available"
- ],
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Function",
- "name": "setFontDescriptor",
- "printedName": "setFontDescriptor(_:forStyle:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIFontDescriptor",
- "printedName": "UIKit.UIFontDescriptor",
- "usr": "c:objc(cs)UIFontDescriptor"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit0A10StyleSheetC17setFontDescriptor_03forC0ySo06UIFontG0C_SStF",
- "mangledName": "$s13ApptentiveKit0A10StyleSheetC17setFontDescriptor_03forC0ySo06UIFontG0C_SStF",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "declAttributes": [
- "AccessControl",
- "Available"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "setColor",
- "printedName": "setColor(_:forStyle:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit0A10StyleSheetC8setColor_03forC0ySo7UIColorC_SStF",
- "mangledName": "$s13ApptentiveKit0A10StyleSheetC8setColor_03forC0ySo7UIColorC_SStF",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "declAttributes": [
- "AccessControl",
- "Available"
- ],
- "funcSelfKind": "NonMutating"
- }
- ],
- "declKind": "Class",
- "usr": "s:13ApptentiveKit0A10StyleSheetC",
- "mangledName": "$s13ApptentiveKit0A10StyleSheetC",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "declAttributes": [
- "AccessControl",
- "Available"
- ],
- "hasMissingDesignatedInitializers": true,
- "conformances": [
- {
- "kind": "Conformance",
- "name": "ApptentiveStyle",
- "printedName": "ApptentiveStyle",
- "usr": "s:13ApptentiveKit0A5StyleP",
- "mangledName": "$s13ApptentiveKit0A5StyleP"
- }
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "UIKit",
- "printedName": "UIKit",
- "declKind": "Import",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "Import",
- "name": "CoreTelephony",
- "printedName": "CoreTelephony",
- "declKind": "Import",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "Import",
- "name": "StoreKit",
- "printedName": "StoreKit",
- "declKind": "Import",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "UIKit",
- "printedName": "UIKit",
- "declKind": "Import",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "UIKit",
- "printedName": "UIKit",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "UIKit",
- "printedName": "UIKit",
- "declKind": "Import",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "Import",
- "name": "UIKit",
- "printedName": "UIKit",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "UIKit",
- "printedName": "UIKit",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "DialogButton",
- "printedName": "DialogButton",
- "children": [
- {
- "kind": "Var",
- "name": "titleFont",
- "printedName": "titleFont",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Var",
- "usr": "c:@M@ApptentiveKit@objc(cs)DialogButton(py)titleFont",
- "mangledName": "$s13ApptentiveKit12DialogButtonC9titleFontSo6UIFontCvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "HasInitialValue",
- "Custom",
- "HasStorage",
- "Dynamic",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@M@ApptentiveKit@objc(cs)DialogButton(im)titleFont",
- "mangledName": "$s13ApptentiveKit12DialogButtonC9titleFontSo6UIFontCvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Dynamic",
- "ObjC"
- ],
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@M@ApptentiveKit@objc(cs)DialogButton(im)setTitleFont:",
- "mangledName": "$s13ApptentiveKit12DialogButtonC9titleFontSo6UIFontCvs",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Dynamic",
- "ObjC"
- ],
- "accessorKind": "set"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "cornerRadius",
- "printedName": "cornerRadius",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "CGFloat",
- "printedName": "CoreGraphics.CGFloat",
- "usr": "s:14CoreFoundation7CGFloatV"
- }
- ],
- "declKind": "Var",
- "usr": "c:@M@ApptentiveKit@objc(cs)DialogButton(py)cornerRadius",
- "mangledName": "$s13ApptentiveKit12DialogButtonC12cornerRadius12CoreGraphics7CGFloatVvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "HasInitialValue",
- "Custom",
- "HasStorage",
- "Dynamic",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "CGFloat",
- "printedName": "CoreGraphics.CGFloat",
- "usr": "s:14CoreFoundation7CGFloatV"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@M@ApptentiveKit@objc(cs)DialogButton(im)cornerRadius",
- "mangledName": "$s13ApptentiveKit12DialogButtonC12cornerRadius12CoreGraphics7CGFloatVvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Dynamic",
- "ObjC"
- ],
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "CGFloat",
- "printedName": "CoreGraphics.CGFloat",
- "usr": "s:14CoreFoundation7CGFloatV"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@M@ApptentiveKit@objc(cs)DialogButton(im)setCornerRadius:",
- "mangledName": "$s13ApptentiveKit12DialogButtonC12cornerRadius12CoreGraphics7CGFloatVvs",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Dynamic",
- "ObjC"
- ],
- "accessorKind": "set"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "borderWidth",
- "printedName": "borderWidth",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "CGFloat",
- "printedName": "CoreGraphics.CGFloat",
- "usr": "s:14CoreFoundation7CGFloatV"
- }
- ],
- "declKind": "Var",
- "usr": "c:@M@ApptentiveKit@objc(cs)DialogButton(py)borderWidth",
- "mangledName": "$s13ApptentiveKit12DialogButtonC11borderWidth12CoreGraphics7CGFloatVvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "HasInitialValue",
- "Custom",
- "HasStorage",
- "Dynamic",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "CGFloat",
- "printedName": "CoreGraphics.CGFloat",
- "usr": "s:14CoreFoundation7CGFloatV"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@M@ApptentiveKit@objc(cs)DialogButton(im)borderWidth",
- "mangledName": "$s13ApptentiveKit12DialogButtonC11borderWidth12CoreGraphics7CGFloatVvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Dynamic",
- "ObjC"
- ],
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "CGFloat",
- "printedName": "CoreGraphics.CGFloat",
- "usr": "s:14CoreFoundation7CGFloatV"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@M@ApptentiveKit@objc(cs)DialogButton(im)setBorderWidth:",
- "mangledName": "$s13ApptentiveKit12DialogButtonC11borderWidth12CoreGraphics7CGFloatVvs",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Dynamic",
- "ObjC"
- ],
- "accessorKind": "set"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "borderColor",
- "printedName": "borderColor",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Var",
- "usr": "c:@M@ApptentiveKit@objc(cs)DialogButton(py)borderColor",
- "mangledName": "$s13ApptentiveKit12DialogButtonC11borderColorSo7UIColorCvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "HasInitialValue",
- "Custom",
- "HasStorage",
- "Dynamic",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@M@ApptentiveKit@objc(cs)DialogButton(im)borderColor",
- "mangledName": "$s13ApptentiveKit12DialogButtonC11borderColorSo7UIColorCvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Dynamic",
- "ObjC"
- ],
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@M@ApptentiveKit@objc(cs)DialogButton(im)setBorderColor:",
- "mangledName": "$s13ApptentiveKit12DialogButtonC11borderColorSo7UIColorCvs",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Dynamic",
- "ObjC"
- ],
- "accessorKind": "set"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "intrinsicContentSize",
- "printedName": "intrinsicContentSize",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "CGSize",
- "printedName": "CoreFoundation.CGSize",
- "usr": "c:@S@CGSize"
- }
- ],
- "declKind": "Var",
- "usr": "c:@M@ApptentiveKit@objc(cs)DialogButton(py)intrinsicContentSize",
- "mangledName": "$s13ApptentiveKit12DialogButtonC20intrinsicContentSizeSo6CGSizeVvp",
- "moduleName": "ApptentiveKit",
- "overriding": true,
- "objc_name": "intrinsicContentSize",
- "declAttributes": [
- "Dynamic",
- "ObjC",
- "Custom",
- "Override",
- "AccessControl",
- "RawDocComment"
- ],
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "CGSize",
- "printedName": "CoreFoundation.CGSize",
- "usr": "c:@S@CGSize"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@M@ApptentiveKit@objc(cs)DialogButton(im)intrinsicContentSize",
- "mangledName": "$s13ApptentiveKit12DialogButtonC20intrinsicContentSizeSo6CGSizeVvg",
- "moduleName": "ApptentiveKit",
- "overriding": true,
- "objc_name": "intrinsicContentSize",
- "declAttributes": [
- "Dynamic",
- "ObjC"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Function",
- "name": "layoutSubviews",
- "printedName": "layoutSubviews()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Func",
- "usr": "c:@M@ApptentiveKit@objc(cs)DialogButton(im)layoutSubviews",
- "mangledName": "$s13ApptentiveKit12DialogButtonC14layoutSubviewsyyF",
- "moduleName": "ApptentiveKit",
- "overriding": true,
- "objc_name": "layoutSubviews",
- "declAttributes": [
- "Dynamic",
- "ObjC",
- "Custom",
- "Override",
- "AccessControl",
- "RawDocComment"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "tintColorDidChange",
- "printedName": "tintColorDidChange()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Func",
- "usr": "c:@M@ApptentiveKit@objc(cs)DialogButton(im)tintColorDidChange",
- "mangledName": "$s13ApptentiveKit12DialogButtonC18tintColorDidChangeyyF",
- "moduleName": "ApptentiveKit",
- "overriding": true,
- "objc_name": "tintColorDidChange",
- "declAttributes": [
- "Dynamic",
- "ObjC",
- "Custom",
- "Override",
- "AccessControl",
- "RawDocComment"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "didMoveToWindow",
- "printedName": "didMoveToWindow()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Func",
- "usr": "c:@M@ApptentiveKit@objc(cs)DialogButton(im)didMoveToWindow",
- "mangledName": "$s13ApptentiveKit12DialogButtonC15didMoveToWindowyyF",
- "moduleName": "ApptentiveKit",
- "overriding": true,
- "objc_name": "didMoveToWindow",
- "declAttributes": [
- "Dynamic",
- "ObjC",
- "Custom",
- "Override",
- "AccessControl",
- "RawDocComment"
- ],
- "funcSelfKind": "NonMutating"
- }
- ],
- "declKind": "Class",
- "usr": "c:@M@ApptentiveKit@objc(cs)DialogButton",
- "mangledName": "$s13ApptentiveKit12DialogButtonC",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Custom",
- "AccessControl",
- "RawDocComment",
- "ObjC"
- ],
- "superclassUsr": "c:objc(cs)UIButton",
- "hasMissingDesignatedInitializers": true,
- "inheritsConvenienceInitializers": true,
- "superclassNames": [
- "UIKit.UIButton",
- "UIKit.UIControl",
- "UIKit.UIView",
- "UIKit.UIResponder",
- "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": "Conformance",
- "name": "__DefaultCustomPlaygroundQuickLookable",
- "printedName": "__DefaultCustomPlaygroundQuickLookable",
- "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP",
- "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP"
- },
- {
- "kind": "Conformance",
- "name": "Sendable",
- "printedName": "Sendable",
- "usr": "s:s8SendableP",
- "mangledName": "$ss8SendableP"
- }
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "DismissButton",
- "printedName": "DismissButton",
- "declKind": "Class",
- "usr": "c:@M@ApptentiveKit@objc(cs)DismissButton",
- "mangledName": "$s13ApptentiveKit13DismissButtonC",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Custom",
- "AccessControl",
- "RawDocComment",
- "ObjC"
- ],
- "superclassUsr": "c:@M@ApptentiveKit@objc(cs)DialogButton",
- "hasMissingDesignatedInitializers": true,
- "inheritsConvenienceInitializers": true,
- "superclassNames": [
- "ApptentiveKit.DialogButton",
- "UIKit.UIButton",
- "UIKit.UIControl",
- "UIKit.UIView",
- "UIKit.UIResponder",
- "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": "Conformance",
- "name": "__DefaultCustomPlaygroundQuickLookable",
- "printedName": "__DefaultCustomPlaygroundQuickLookable",
- "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP",
- "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP"
- },
- {
- "kind": "Conformance",
- "name": "Sendable",
- "printedName": "Sendable",
- "usr": "s:s8SendableP",
- "mangledName": "$ss8SendableP"
- }
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "InteractionButton",
- "printedName": "InteractionButton",
- "declKind": "Class",
- "usr": "c:@M@ApptentiveKit@objc(cs)InteractionButton",
- "mangledName": "$s13ApptentiveKit17InteractionButtonC",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Custom",
- "AccessControl",
- "RawDocComment",
- "ObjC"
- ],
- "superclassUsr": "c:@M@ApptentiveKit@objc(cs)DialogButton",
- "hasMissingDesignatedInitializers": true,
- "inheritsConvenienceInitializers": true,
- "superclassNames": [
- "ApptentiveKit.DialogButton",
- "UIKit.UIButton",
- "UIKit.UIControl",
- "UIKit.UIView",
- "UIKit.UIResponder",
- "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": "Conformance",
- "name": "__DefaultCustomPlaygroundQuickLookable",
- "printedName": "__DefaultCustomPlaygroundQuickLookable",
- "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP",
- "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP"
- },
- {
- "kind": "Conformance",
- "name": "Sendable",
- "printedName": "Sendable",
- "usr": "s:s8SendableP",
- "mangledName": "$ss8SendableP"
- }
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "YesButton",
- "printedName": "YesButton",
- "declKind": "Class",
- "usr": "c:@M@ApptentiveKit@objc(cs)YesButton",
- "mangledName": "$s13ApptentiveKit9YesButtonC",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Custom",
- "AccessControl",
- "RawDocComment",
- "ObjC"
- ],
- "superclassUsr": "c:@M@ApptentiveKit@objc(cs)DialogButton",
- "hasMissingDesignatedInitializers": true,
- "inheritsConvenienceInitializers": true,
- "superclassNames": [
- "ApptentiveKit.DialogButton",
- "UIKit.UIButton",
- "UIKit.UIControl",
- "UIKit.UIView",
- "UIKit.UIResponder",
- "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": "Conformance",
- "name": "__DefaultCustomPlaygroundQuickLookable",
- "printedName": "__DefaultCustomPlaygroundQuickLookable",
- "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP",
- "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP"
- },
- {
- "kind": "Conformance",
- "name": "Sendable",
- "printedName": "Sendable",
- "usr": "s:s8SendableP",
- "mangledName": "$ss8SendableP"
- }
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "NoButton",
- "printedName": "NoButton",
- "declKind": "Class",
- "usr": "c:@M@ApptentiveKit@objc(cs)NoButton",
- "mangledName": "$s13ApptentiveKit8NoButtonC",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Custom",
- "AccessControl",
- "RawDocComment",
- "ObjC"
- ],
- "superclassUsr": "c:@M@ApptentiveKit@objc(cs)DialogButton",
- "hasMissingDesignatedInitializers": true,
- "inheritsConvenienceInitializers": true,
- "superclassNames": [
- "ApptentiveKit.DialogButton",
- "UIKit.UIButton",
- "UIKit.UIControl",
- "UIKit.UIView",
- "UIKit.UIResponder",
- "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": "Conformance",
- "name": "__DefaultCustomPlaygroundQuickLookable",
- "printedName": "__DefaultCustomPlaygroundQuickLookable",
- "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP",
- "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP"
- },
- {
- "kind": "Conformance",
- "name": "Sendable",
- "printedName": "Sendable",
- "usr": "s:s8SendableP",
- "mangledName": "$ss8SendableP"
- }
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "UIKit",
- "printedName": "UIKit",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "MobileCoreServices",
- "printedName": "MobileCoreServices",
- "declKind": "Import",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "Import",
- "name": "QuickLookThumbnailing",
- "printedName": "QuickLookThumbnailing",
- "declKind": "Import",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "Import",
- "name": "UIKit",
- "printedName": "UIKit",
- "declKind": "Import",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "Sysctl",
- "printedName": "Sysctl",
- "children": [
- {
- "kind": "TypeDecl",
- "name": "Error",
- "printedName": "Error",
- "children": [
- {
- "kind": "Var",
- "name": "unknown",
- "printedName": "unknown",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.Sysctl.Error.Type) -> ApptentiveKit.Sysctl.Error",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Error",
- "printedName": "ApptentiveKit.Sysctl.Error",
- "usr": "s:13ApptentiveKit6SysctlV5ErrorO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.Sysctl.Error.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Error",
- "printedName": "ApptentiveKit.Sysctl.Error",
- "usr": "s:13ApptentiveKit6SysctlV5ErrorO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:13ApptentiveKit6SysctlV5ErrorO7unknownyA2EmF",
- "mangledName": "$s13ApptentiveKit6SysctlV5ErrorO7unknownyA2EmF",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "Var",
- "name": "malformedUTF8",
- "printedName": "malformedUTF8",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.Sysctl.Error.Type) -> ApptentiveKit.Sysctl.Error",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Error",
- "printedName": "ApptentiveKit.Sysctl.Error",
- "usr": "s:13ApptentiveKit6SysctlV5ErrorO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.Sysctl.Error.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Error",
- "printedName": "ApptentiveKit.Sysctl.Error",
- "usr": "s:13ApptentiveKit6SysctlV5ErrorO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:13ApptentiveKit6SysctlV5ErrorO13malformedUTF8yA2EmF",
- "mangledName": "$s13ApptentiveKit6SysctlV5ErrorO13malformedUTF8yA2EmF",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "Var",
- "name": "invalidSize",
- "printedName": "invalidSize",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.Sysctl.Error.Type) -> ApptentiveKit.Sysctl.Error",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Error",
- "printedName": "ApptentiveKit.Sysctl.Error",
- "usr": "s:13ApptentiveKit6SysctlV5ErrorO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.Sysctl.Error.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Error",
- "printedName": "ApptentiveKit.Sysctl.Error",
- "usr": "s:13ApptentiveKit6SysctlV5ErrorO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:13ApptentiveKit6SysctlV5ErrorO11invalidSizeyA2EmF",
- "mangledName": "$s13ApptentiveKit6SysctlV5ErrorO11invalidSizeyA2EmF",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "Var",
- "name": "posixError",
- "printedName": "posixError",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.Sysctl.Error.Type) -> (Darwin.POSIXErrorCode) -> ApptentiveKit.Sysctl.Error",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(Darwin.POSIXErrorCode) -> ApptentiveKit.Sysctl.Error",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Error",
- "printedName": "ApptentiveKit.Sysctl.Error",
- "usr": "s:13ApptentiveKit6SysctlV5ErrorO"
- },
- {
- "kind": "TypeNominal",
- "name": "POSIXErrorCode",
- "printedName": "Darwin.POSIXErrorCode",
- "usr": "c:@M@Darwin@E@POSIXErrorCode"
- }
- ]
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.Sysctl.Error.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Error",
- "printedName": "ApptentiveKit.Sysctl.Error",
- "usr": "s:13ApptentiveKit6SysctlV5ErrorO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:13ApptentiveKit6SysctlV5ErrorO05posixD0yAE6Darwin14POSIXErrorCodeOcAEmF",
- "mangledName": "$s13ApptentiveKit6SysctlV5ErrorO05posixD0yAE6Darwin14POSIXErrorCodeOcAEmF",
- "moduleName": "ApptentiveKit"
- }
- ],
- "declKind": "Enum",
- "usr": "s:13ApptentiveKit6SysctlV5ErrorO",
- "mangledName": "$s13ApptentiveKit6SysctlV5ErrorO",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "conformances": [
- {
- "kind": "Conformance",
- "name": "Error",
- "printedName": "Error",
- "usr": "s:s5ErrorP",
- "mangledName": "$ss5ErrorP"
- },
- {
- "kind": "Conformance",
- "name": "Sendable",
- "printedName": "Sendable",
- "usr": "s:s8SendableP",
- "mangledName": "$ss8SendableP"
- }
- ]
- },
- {
- "kind": "Function",
- "name": "data",
- "printedName": "data(for:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Array",
- "printedName": "[Swift.Int8]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int8",
- "printedName": "Swift.Int8",
- "usr": "s:s4Int8V"
- }
- ],
- "usr": "s:Sa"
- },
- {
- "kind": "TypeNominal",
- "name": "Array",
- "printedName": "[Swift.Int32]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int32",
- "printedName": "Swift.Int32",
- "usr": "s:s5Int32V"
- }
- ],
- "usr": "s:Sa"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit6SysctlV4data3forSays4Int8VGSays5Int32VG_tKFZ",
- "mangledName": "$s13ApptentiveKit6SysctlV4data3forSays4Int8VGSays5Int32VG_tKFZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "throwing": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "keys",
- "printedName": "keys(for:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Array",
- "printedName": "[Swift.Int32]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int32",
- "printedName": "Swift.Int32",
- "usr": "s:s5Int32V"
- }
- ],
- "usr": "s:Sa"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit6SysctlV4keys3forSays5Int32VGSS_tKFZ",
- "mangledName": "$s13ApptentiveKit6SysctlV4keys3forSays5Int32VGSS_tKFZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "throwing": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "value",
- "printedName": "value(ofType:forKeys:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "GenericTypeParam",
- "printedName": "τ_0_0"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "τ_0_0.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "GenericTypeParam",
- "printedName": "τ_0_0"
- }
- ]
- },
- {
- "kind": "TypeNominal",
- "name": "Array",
- "printedName": "[Swift.Int32]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int32",
- "printedName": "Swift.Int32",
- "usr": "s:s5Int32V"
- }
- ],
- "usr": "s:Sa"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit6SysctlV5value6ofType7forKeysxxm_Says5Int32VGtKlFZ",
- "mangledName": "$s13ApptentiveKit6SysctlV5value6ofType7forKeysxxm_Says5Int32VGtKlFZ",
- "moduleName": "ApptentiveKit",
- "genericSig": "<τ_0_0>",
- "sugared_genericSig": "",
- "static": true,
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "throwing": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "value",
- "printedName": "value(ofType:forKeys:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "GenericTypeParam",
- "printedName": "τ_0_0"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "τ_0_0.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "GenericTypeParam",
- "printedName": "τ_0_0"
- }
- ]
- },
- {
- "kind": "TypeNominal",
- "name": "Array",
- "printedName": "[Swift.Int32]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int32",
- "printedName": "Swift.Int32",
- "usr": "s:s5Int32V"
- }
- ],
- "usr": "s:Sa"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit6SysctlV5value6ofType7forKeysxxm_s5Int32VdtKlFZ",
- "mangledName": "$s13ApptentiveKit6SysctlV5value6ofType7forKeysxxm_s5Int32VdtKlFZ",
- "moduleName": "ApptentiveKit",
- "genericSig": "<τ_0_0>",
- "sugared_genericSig": "",
- "static": true,
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "throwing": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "value",
- "printedName": "value(ofType:forName:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "GenericTypeParam",
- "printedName": "τ_0_0"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "τ_0_0.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "GenericTypeParam",
- "printedName": "τ_0_0"
- }
- ]
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit6SysctlV5value6ofType7forNamexxm_SStKlFZ",
- "mangledName": "$s13ApptentiveKit6SysctlV5value6ofType7forNamexxm_SStKlFZ",
- "moduleName": "ApptentiveKit",
- "genericSig": "<τ_0_0>",
- "sugared_genericSig": "",
- "static": true,
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "throwing": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "string",
- "printedName": "string(for:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- },
- {
- "kind": "TypeNominal",
- "name": "Array",
- "printedName": "[Swift.Int32]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int32",
- "printedName": "Swift.Int32",
- "usr": "s:s5Int32V"
- }
- ],
- "usr": "s:Sa"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit6SysctlV6string3forSSSays5Int32VG_tKFZ",
- "mangledName": "$s13ApptentiveKit6SysctlV6string3forSSSays5Int32VG_tKFZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "throwing": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "string",
- "printedName": "string(for:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- },
- {
- "kind": "TypeNominal",
- "name": "Array",
- "printedName": "[Swift.Int32]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int32",
- "printedName": "Swift.Int32",
- "usr": "s:s5Int32V"
- }
- ],
- "usr": "s:Sa"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit6SysctlV6string3forSSs5Int32Vd_tKFZ",
- "mangledName": "$s13ApptentiveKit6SysctlV6string3forSSs5Int32Vd_tKFZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "throwing": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "string",
- "printedName": "string(for:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit6SysctlV6string3forS2S_tKFZ",
- "mangledName": "$s13ApptentiveKit6SysctlV6string3forS2S_tKFZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "throwing": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Var",
- "name": "hostName",
- "printedName": "hostName",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit6SysctlV8hostNameSSvpZ",
- "mangledName": "$s13ApptentiveKit6SysctlV8hostNameSSvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit6SysctlV8hostNameSSvgZ",
- "mangledName": "$s13ApptentiveKit6SysctlV8hostNameSSvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "machine",
- "printedName": "machine",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit6SysctlV7machineSSvpZ",
- "mangledName": "$s13ApptentiveKit6SysctlV7machineSSvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit6SysctlV7machineSSvgZ",
- "mangledName": "$s13ApptentiveKit6SysctlV7machineSSvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "model",
- "printedName": "model",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit6SysctlV5modelSSvpZ",
- "mangledName": "$s13ApptentiveKit6SysctlV5modelSSvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit6SysctlV5modelSSvgZ",
- "mangledName": "$s13ApptentiveKit6SysctlV5modelSSvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "activeCPUs",
- "printedName": "activeCPUs",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int32",
- "printedName": "Swift.Int32",
- "usr": "s:s5Int32V"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit6SysctlV10activeCPUss5Int32VvpZ",
- "mangledName": "$s13ApptentiveKit6SysctlV10activeCPUss5Int32VvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int32",
- "printedName": "Swift.Int32",
- "usr": "s:s5Int32V"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit6SysctlV10activeCPUss5Int32VvgZ",
- "mangledName": "$s13ApptentiveKit6SysctlV10activeCPUss5Int32VvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "osRelease",
- "printedName": "osRelease",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit6SysctlV9osReleaseSSvpZ",
- "mangledName": "$s13ApptentiveKit6SysctlV9osReleaseSSvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit6SysctlV9osReleaseSSvgZ",
- "mangledName": "$s13ApptentiveKit6SysctlV9osReleaseSSvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "osType",
- "printedName": "osType",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit6SysctlV6osTypeSSvpZ",
- "mangledName": "$s13ApptentiveKit6SysctlV6osTypeSSvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit6SysctlV6osTypeSSvgZ",
- "mangledName": "$s13ApptentiveKit6SysctlV6osTypeSSvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "osVersion",
- "printedName": "osVersion",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit6SysctlV9osVersionSSvpZ",
- "mangledName": "$s13ApptentiveKit6SysctlV9osVersionSSvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit6SysctlV9osVersionSSvgZ",
- "mangledName": "$s13ApptentiveKit6SysctlV9osVersionSSvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "version",
- "printedName": "version",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit6SysctlV7versionSSvpZ",
- "mangledName": "$s13ApptentiveKit6SysctlV7versionSSvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit6SysctlV7versionSSvgZ",
- "mangledName": "$s13ApptentiveKit6SysctlV7versionSSvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "accessorKind": "get"
- }
- ]
- }
- ],
- "declKind": "Struct",
- "usr": "s:13ApptentiveKit6SysctlV",
- "mangledName": "$s13ApptentiveKit6SysctlV",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "UIKit",
- "printedName": "UIKit",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "ApptentiveNavigationController",
- "printedName": "ApptentiveNavigationController",
- "children": [
- {
- "kind": "Var",
- "name": "preferredStatusBarStyle",
- "printedName": "preferredStatusBarStyle",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIStatusBarStyle",
- "printedName": "UIKit.UIStatusBarStyle",
- "usr": "c:@E@UIStatusBarStyle"
- }
- ],
- "declKind": "Var",
- "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveNavigationController(py)preferredStatusBarStyle",
- "mangledName": "$s13ApptentiveKit0A20NavigationControllerC23preferredStatusBarStyleSo08UIStatusgH0Vvp",
- "moduleName": "ApptentiveKit",
- "overriding": true,
- "objc_name": "preferredStatusBarStyle",
- "declAttributes": [
- "Dynamic",
- "ObjC",
- "Custom",
- "Override",
- "AccessControl",
- "RawDocComment"
- ],
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIStatusBarStyle",
- "printedName": "UIKit.UIStatusBarStyle",
- "usr": "c:@E@UIStatusBarStyle"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveNavigationController(im)preferredStatusBarStyle",
- "mangledName": "$s13ApptentiveKit0A20NavigationControllerC23preferredStatusBarStyleSo08UIStatusgH0Vvg",
- "moduleName": "ApptentiveKit",
- "overriding": true,
- "objc_name": "preferredStatusBarStyle",
- "declAttributes": [
- "Dynamic",
- "ObjC"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "prefersLargeHeader",
- "printedName": "prefersLargeHeader",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ],
- "declKind": "Var",
- "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveNavigationController(cpy)prefersLargeHeader",
- "mangledName": "$s13ApptentiveKit0A20NavigationControllerC18prefersLargeHeaderSbvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "Custom",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveNavigationController(cm)prefersLargeHeader",
- "mangledName": "$s13ApptentiveKit0A20NavigationControllerC18prefersLargeHeaderSbvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final",
- "ObjC"
- ],
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveNavigationController(cm)setPrefersLargeHeader:",
- "mangledName": "$s13ApptentiveKit0A20NavigationControllerC18prefersLargeHeaderSbvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final",
- "ObjC"
- ],
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A20NavigationControllerC18prefersLargeHeaderSbvMZ",
- "mangledName": "$s13ApptentiveKit0A20NavigationControllerC18prefersLargeHeaderSbvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(navigationBarClass:toolbarClass:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveNavigationController",
- "printedName": "ApptentiveKit.ApptentiveNavigationController",
- "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveNavigationController"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "AnyObject.Type?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ExistentialMetatype",
- "printedName": "AnyObject.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ProtocolComposition",
- "printedName": "AnyObject"
- }
- ]
- }
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "AnyObject.Type?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ExistentialMetatype",
- "printedName": "AnyObject.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ProtocolComposition",
- "printedName": "AnyObject"
- }
- ]
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Constructor",
- "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveNavigationController(im)initWithNavigationBarClass:toolbarClass:",
- "mangledName": "$s13ApptentiveKit0A20NavigationControllerC18navigationBarClass07toolbarG0ACyXlXpSg_AFtcfc",
- "moduleName": "ApptentiveKit",
- "overriding": true,
- "implicit": true,
- "intro_iOS": "5.0",
- "objc_name": "initWithNavigationBarClass:toolbarClass:",
- "declAttributes": [
- "Dynamic",
- "ObjC",
- "Custom",
- "Override",
- "Available"
- ],
- "init_kind": "Designated"
- },
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(rootViewController:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveNavigationController",
- "printedName": "ApptentiveKit.ApptentiveNavigationController",
- "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveNavigationController"
- },
- {
- "kind": "TypeNominal",
- "name": "UIViewController",
- "printedName": "UIKit.UIViewController",
- "usr": "c:objc(cs)UIViewController"
- }
- ],
- "declKind": "Constructor",
- "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveNavigationController(im)initWithRootViewController:",
- "mangledName": "$s13ApptentiveKit0A20NavigationControllerC08rootViewD0ACSo06UIViewD0C_tcfc",
- "moduleName": "ApptentiveKit",
- "overriding": true,
- "implicit": true,
- "objc_name": "initWithRootViewController:",
- "declAttributes": [
- "Dynamic",
- "ObjC",
- "Custom",
- "Override"
- ],
- "init_kind": "Designated"
- },
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(nibName:bundle:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveNavigationController",
- "printedName": "ApptentiveKit.ApptentiveNavigationController",
- "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveNavigationController"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Foundation.Bundle?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bundle",
- "printedName": "Foundation.Bundle",
- "usr": "c:objc(cs)NSBundle"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Constructor",
- "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveNavigationController(im)initWithNibName:bundle:",
- "mangledName": "$s13ApptentiveKit0A20NavigationControllerC7nibName6bundleACSSSg_So8NSBundleCSgtcfc",
- "moduleName": "ApptentiveKit",
- "overriding": true,
- "implicit": true,
- "objc_name": "initWithNibName:bundle:",
- "declAttributes": [
- "Dynamic",
- "ObjC",
- "Custom",
- "Override"
- ],
- "init_kind": "Designated"
- },
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(coder:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "ApptentiveKit.ApptentiveNavigationController?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveNavigationController",
- "printedName": "ApptentiveKit.ApptentiveNavigationController",
- "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveNavigationController"
- }
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "NSCoder",
- "printedName": "Foundation.NSCoder",
- "usr": "c:objc(cs)NSCoder"
- }
- ],
- "declKind": "Constructor",
- "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveNavigationController(im)initWithCoder:",
- "mangledName": "$s13ApptentiveKit0A20NavigationControllerC5coderACSgSo7NSCoderC_tcfc",
- "moduleName": "ApptentiveKit",
- "overriding": true,
- "implicit": true,
- "objc_name": "initWithCoder:",
- "declAttributes": [
- "Dynamic",
- "ObjC",
- "Custom",
- "Required"
- ],
- "init_kind": "Designated"
- }
- ],
- "declKind": "Class",
- "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveNavigationController",
- "mangledName": "$s13ApptentiveKit0A20NavigationControllerC",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Custom",
- "AccessControl",
- "RawDocComment",
- "ObjC"
- ],
- "superclassUsr": "c:objc(cs)UINavigationController",
- "inheritsConvenienceInitializers": true,
- "superclassNames": [
- "UIKit.UINavigationController",
- "UIKit.UIViewController",
- "UIKit.UIResponder",
- "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": "Conformance",
- "name": "Sendable",
- "printedName": "Sendable",
- "usr": "s:s8SendableP",
- "mangledName": "$ss8SendableP"
- }
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "URLSession",
- "printedName": "URLSession",
- "declKind": "Class",
- "usr": "c:objc(cs)NSURLSession",
- "moduleName": "Foundation",
- "isOpen": true,
- "intro_iOS": "7.0",
- "objc_name": "NSURLSession",
- "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": "TypeDecl",
- "name": "String",
- "printedName": "String",
- "declKind": "Struct",
- "usr": "s:SS",
- "mangledName": "$sSS",
- "moduleName": "Swift",
- "declAttributes": [
- "Frozen"
- ],
- "isExternal": true,
- "conformances": [
- {
- "kind": "Conformance",
- "name": "CustomDataCompatible",
- "printedName": "CustomDataCompatible",
- "usr": "s:13ApptentiveKit20CustomDataCompatibleP",
- "mangledName": "$s13ApptentiveKit20CustomDataCompatibleP"
- },
- {
- "kind": "Conformance",
- "name": "Decodable",
- "printedName": "Decodable",
- "usr": "s:Se",
- "mangledName": "$sSe"
- },
- {
- "kind": "Conformance",
- "name": "Encodable",
- "printedName": "Encodable",
- "usr": "s:SE",
- "mangledName": "$sSE"
- },
- {
- "kind": "Conformance",
- "name": "CodingKeyRepresentable",
- "printedName": "CodingKeyRepresentable",
- "usr": "s:s22CodingKeyRepresentableP",
- "mangledName": "$ss22CodingKeyRepresentableP"
- },
- {
- "kind": "Conformance",
- "name": "_HasContiguousBytes",
- "printedName": "_HasContiguousBytes",
- "usr": "s:s19_HasContiguousBytesP",
- "mangledName": "$ss19_HasContiguousBytesP"
- },
- {
- "kind": "Conformance",
- "name": "CustomReflectable",
- "printedName": "CustomReflectable",
- "usr": "s:s17CustomReflectableP",
- "mangledName": "$ss17CustomReflectableP"
- },
- {
- "kind": "Conformance",
- "name": "_CustomPlaygroundQuickLookable",
- "printedName": "_CustomPlaygroundQuickLookable",
- "usr": "s:s30_CustomPlaygroundQuickLookableP",
- "mangledName": "$ss30_CustomPlaygroundQuickLookableP"
- },
- {
- "kind": "Conformance",
- "name": "TextOutputStream",
- "printedName": "TextOutputStream",
- "usr": "s:s16TextOutputStreamP",
- "mangledName": "$ss16TextOutputStreamP"
- },
- {
- "kind": "Conformance",
- "name": "TextOutputStreamable",
- "printedName": "TextOutputStreamable",
- "usr": "s:s20TextOutputStreamableP",
- "mangledName": "$ss20TextOutputStreamableP"
- },
- {
- "kind": "Conformance",
- "name": "Hashable",
- "printedName": "Hashable",
- "usr": "s:SH",
- "mangledName": "$sSH"
- },
- {
- "kind": "Conformance",
- "name": "Sendable",
- "printedName": "Sendable",
- "usr": "s:s8SendableP",
- "mangledName": "$ss8SendableP"
- },
- {
- "kind": "Conformance",
- "name": "_ExpressibleByBuiltinUnicodeScalarLiteral",
- "printedName": "_ExpressibleByBuiltinUnicodeScalarLiteral",
- "usr": "s:s41_ExpressibleByBuiltinUnicodeScalarLiteralP",
- "mangledName": "$ss41_ExpressibleByBuiltinUnicodeScalarLiteralP"
- },
- {
- "kind": "Conformance",
- "name": "_ExpressibleByBuiltinExtendedGraphemeClusterLiteral",
- "printedName": "_ExpressibleByBuiltinExtendedGraphemeClusterLiteral",
- "usr": "s:s51_ExpressibleByBuiltinExtendedGraphemeClusterLiteralP",
- "mangledName": "$ss51_ExpressibleByBuiltinExtendedGraphemeClusterLiteralP"
- },
- {
- "kind": "Conformance",
- "name": "_ExpressibleByBuiltinStringLiteral",
- "printedName": "_ExpressibleByBuiltinStringLiteral",
- "usr": "s:s34_ExpressibleByBuiltinStringLiteralP",
- "mangledName": "$ss34_ExpressibleByBuiltinStringLiteralP"
- },
- {
- "kind": "Conformance",
- "name": "ExpressibleByStringLiteral",
- "printedName": "ExpressibleByStringLiteral",
- "children": [
- {
- "kind": "TypeWitness",
- "name": "StringLiteralType",
- "printedName": "StringLiteralType",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ]
- }
- ],
- "usr": "s:s26ExpressibleByStringLiteralP",
- "mangledName": "$ss26ExpressibleByStringLiteralP"
- },
- {
- "kind": "Conformance",
- "name": "ExpressibleByExtendedGraphemeClusterLiteral",
- "printedName": "ExpressibleByExtendedGraphemeClusterLiteral",
- "children": [
- {
- "kind": "TypeWitness",
- "name": "ExtendedGraphemeClusterLiteralType",
- "printedName": "ExtendedGraphemeClusterLiteralType",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ]
- }
- ],
- "usr": "s:s43ExpressibleByExtendedGraphemeClusterLiteralP",
- "mangledName": "$ss43ExpressibleByExtendedGraphemeClusterLiteralP"
- },
- {
- "kind": "Conformance",
- "name": "ExpressibleByUnicodeScalarLiteral",
- "printedName": "ExpressibleByUnicodeScalarLiteral",
- "children": [
- {
- "kind": "TypeWitness",
- "name": "UnicodeScalarLiteralType",
- "printedName": "UnicodeScalarLiteralType",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ]
- }
- ],
- "usr": "s:s33ExpressibleByUnicodeScalarLiteralP",
- "mangledName": "$ss33ExpressibleByUnicodeScalarLiteralP"
- },
- {
- "kind": "Conformance",
- "name": "CustomDebugStringConvertible",
- "printedName": "CustomDebugStringConvertible",
- "usr": "s:s28CustomDebugStringConvertibleP",
- "mangledName": "$ss28CustomDebugStringConvertibleP"
- },
- {
- "kind": "Conformance",
- "name": "CustomStringConvertible",
- "printedName": "CustomStringConvertible",
- "usr": "s:s23CustomStringConvertibleP",
- "mangledName": "$ss23CustomStringConvertibleP"
- },
- {
- "kind": "Conformance",
- "name": "BidirectionalCollection",
- "printedName": "BidirectionalCollection",
- "children": [
- {
- "kind": "TypeWitness",
- "name": "Element",
- "printedName": "Element",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Character",
- "printedName": "Swift.Character",
- "usr": "s:SJ"
- }
- ]
- },
- {
- "kind": "TypeWitness",
- "name": "Index",
- "printedName": "Index",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Index",
- "printedName": "Swift.String.Index",
- "usr": "s:SS5IndexV"
- }
- ]
- },
- {
- "kind": "TypeWitness",
- "name": "SubSequence",
- "printedName": "SubSequence",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Substring",
- "printedName": "Swift.Substring",
- "usr": "s:Ss"
- }
- ]
- },
- {
- "kind": "TypeWitness",
- "name": "Indices",
- "printedName": "Indices",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "DefaultIndices",
- "printedName": "Swift.DefaultIndices",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:SI"
- }
- ]
- }
- ],
- "usr": "s:SK",
- "mangledName": "$sSK"
- },
- {
- "kind": "Conformance",
- "name": "Collection",
- "printedName": "Collection",
- "children": [
- {
- "kind": "TypeWitness",
- "name": "Element",
- "printedName": "Element",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Character",
- "printedName": "Swift.Character",
- "usr": "s:SJ"
- }
- ]
- },
- {
- "kind": "TypeWitness",
- "name": "Index",
- "printedName": "Index",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Index",
- "printedName": "Swift.String.Index",
- "usr": "s:SS5IndexV"
- }
- ]
- },
- {
- "kind": "TypeWitness",
- "name": "Iterator",
- "printedName": "Iterator",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Iterator",
- "printedName": "Swift.String.Iterator",
- "usr": "s:SS8IteratorV"
- }
- ]
- },
- {
- "kind": "TypeWitness",
- "name": "SubSequence",
- "printedName": "SubSequence",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Substring",
- "printedName": "Swift.Substring",
- "usr": "s:Ss"
- }
- ]
- },
- {
- "kind": "TypeWitness",
- "name": "Indices",
- "printedName": "Indices",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "DefaultIndices",
- "printedName": "Swift.DefaultIndices",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:SI"
- }
- ]
- }
- ],
- "usr": "s:Sl",
- "mangledName": "$sSl"
- },
- {
- "kind": "Conformance",
- "name": "Sequence",
- "printedName": "Sequence",
- "children": [
- {
- "kind": "TypeWitness",
- "name": "Element",
- "printedName": "Element",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Character",
- "printedName": "Swift.Character",
- "usr": "s:SJ"
- }
- ]
- },
- {
- "kind": "TypeWitness",
- "name": "Iterator",
- "printedName": "Iterator",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Iterator",
- "printedName": "Swift.String.Iterator",
- "usr": "s:SS8IteratorV"
- }
- ]
- }
- ],
- "usr": "s:ST",
- "mangledName": "$sST"
- },
- {
- "kind": "Conformance",
- "name": "Equatable",
- "printedName": "Equatable",
- "usr": "s:SQ",
- "mangledName": "$sSQ"
- },
- {
- "kind": "Conformance",
- "name": "Comparable",
- "printedName": "Comparable",
- "usr": "s:SL",
- "mangledName": "$sSL"
- },
- {
- "kind": "Conformance",
- "name": "StringProtocol",
- "printedName": "StringProtocol",
- "children": [
- {
- "kind": "TypeWitness",
- "name": "UTF8View",
- "printedName": "UTF8View",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UTF8View",
- "printedName": "Swift.String.UTF8View",
- "usr": "s:SS8UTF8ViewV"
- }
- ]
- },
- {
- "kind": "TypeWitness",
- "name": "UTF16View",
- "printedName": "UTF16View",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UTF16View",
- "printedName": "Swift.String.UTF16View",
- "usr": "s:SS9UTF16ViewV"
- }
- ]
- },
- {
- "kind": "TypeWitness",
- "name": "UnicodeScalarView",
- "printedName": "UnicodeScalarView",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UnicodeScalarView",
- "printedName": "Swift.String.UnicodeScalarView",
- "usr": "s:SS17UnicodeScalarViewV"
- }
- ]
- },
- {
- "kind": "TypeWitness",
- "name": "SubSequence",
- "printedName": "SubSequence",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Substring",
- "printedName": "Swift.Substring",
- "usr": "s:Ss"
- }
- ]
- }
- ],
- "usr": "s:Sy",
- "mangledName": "$sSy"
- },
- {
- "kind": "Conformance",
- "name": "ExpressibleByStringInterpolation",
- "printedName": "ExpressibleByStringInterpolation",
- "children": [
- {
- "kind": "TypeWitness",
- "name": "StringInterpolation",
- "printedName": "StringInterpolation",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "DefaultStringInterpolation",
- "printedName": "Swift.DefaultStringInterpolation",
- "usr": "s:s26DefaultStringInterpolationV"
- }
- ]
- }
- ],
- "usr": "s:s32ExpressibleByStringInterpolationP",
- "mangledName": "$ss32ExpressibleByStringInterpolationP"
- },
- {
- "kind": "Conformance",
- "name": "LosslessStringConvertible",
- "printedName": "LosslessStringConvertible",
- "usr": "s:s25LosslessStringConvertibleP",
- "mangledName": "$ss25LosslessStringConvertibleP"
- },
- {
- "kind": "Conformance",
- "name": "RangeReplaceableCollection",
- "printedName": "RangeReplaceableCollection",
- "children": [
- {
- "kind": "TypeWitness",
- "name": "SubSequence",
- "printedName": "SubSequence",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Substring",
- "printedName": "Swift.Substring",
- "usr": "s:Ss"
- }
- ]
- }
- ],
- "usr": "s:Sm",
- "mangledName": "$sSm"
- },
- {
- "kind": "Conformance",
- "name": "MirrorPath",
- "printedName": "MirrorPath",
- "usr": "s:s10MirrorPathP",
- "mangledName": "$ss10MirrorPathP"
- },
- {
- "kind": "Conformance",
- "name": "_ObjectiveCBridgeable",
- "printedName": "_ObjectiveCBridgeable",
- "children": [
- {
- "kind": "TypeWitness",
- "name": "_ObjectiveCType",
- "printedName": "_ObjectiveCType",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "NSString",
- "printedName": "Foundation.NSString",
- "usr": "c:objc(cs)NSString"
- }
- ]
- }
- ],
- "usr": "s:s21_ObjectiveCBridgeableP",
- "mangledName": "$ss21_ObjectiveCBridgeableP"
- },
- {
- "kind": "Conformance",
- "name": "CVarArg",
- "printedName": "CVarArg",
- "usr": "s:s7CVarArgP",
- "mangledName": "$ss7CVarArgP"
- }
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "Double",
- "printedName": "Double",
- "declKind": "Struct",
- "usr": "s:Sd",
- "mangledName": "$sSd",
- "moduleName": "Swift",
- "declAttributes": [
- "Frozen"
- ],
- "isExternal": true,
- "conformances": [
- {
- "kind": "Conformance",
- "name": "CustomDataCompatible",
- "printedName": "CustomDataCompatible",
- "usr": "s:13ApptentiveKit20CustomDataCompatibleP",
- "mangledName": "$s13ApptentiveKit20CustomDataCompatibleP"
- },
- {
- "kind": "Conformance",
- "name": "Decodable",
- "printedName": "Decodable",
- "usr": "s:Se",
- "mangledName": "$sSe"
- },
- {
- "kind": "Conformance",
- "name": "Encodable",
- "printedName": "Encodable",
- "usr": "s:SE",
- "mangledName": "$sSE"
- },
- {
- "kind": "Conformance",
- "name": "CustomReflectable",
- "printedName": "CustomReflectable",
- "usr": "s:s17CustomReflectableP",
- "mangledName": "$ss17CustomReflectableP"
- },
- {
- "kind": "Conformance",
- "name": "_CustomPlaygroundQuickLookable",
- "printedName": "_CustomPlaygroundQuickLookable",
- "usr": "s:s30_CustomPlaygroundQuickLookableP",
- "mangledName": "$ss30_CustomPlaygroundQuickLookableP"
- },
- {
- "kind": "Conformance",
- "name": "_CVarArgPassedAsDouble",
- "printedName": "_CVarArgPassedAsDouble",
- "usr": "s:s22_CVarArgPassedAsDoubleP",
- "mangledName": "$ss22_CVarArgPassedAsDoubleP"
- },
- {
- "kind": "Conformance",
- "name": "_CVarArgAligned",
- "printedName": "_CVarArgAligned",
- "usr": "s:s15_CVarArgAlignedP",
- "mangledName": "$ss15_CVarArgAlignedP"
- },
- {
- "kind": "Conformance",
- "name": "CVarArg",
- "printedName": "CVarArg",
- "usr": "s:s7CVarArgP",
- "mangledName": "$ss7CVarArgP"
- },
- {
- "kind": "Conformance",
- "name": "LosslessStringConvertible",
- "printedName": "LosslessStringConvertible",
- "usr": "s:s25LosslessStringConvertibleP",
- "mangledName": "$ss25LosslessStringConvertibleP"
- },
- {
- "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": "TextOutputStreamable",
- "printedName": "TextOutputStreamable",
- "usr": "s:s20TextOutputStreamableP",
- "mangledName": "$ss20TextOutputStreamableP"
- },
- {
- "kind": "Conformance",
- "name": "BinaryFloatingPoint",
- "printedName": "BinaryFloatingPoint",
- "children": [
- {
- "kind": "TypeWitness",
- "name": "RawSignificand",
- "printedName": "RawSignificand",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UInt64",
- "printedName": "Swift.UInt64",
- "usr": "s:s6UInt64V"
- }
- ]
- },
- {
- "kind": "TypeWitness",
- "name": "RawExponent",
- "printedName": "RawExponent",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UInt",
- "printedName": "Swift.UInt",
- "usr": "s:Su"
- }
- ]
- }
- ],
- "usr": "s:SB",
- "mangledName": "$sSB"
- },
- {
- "kind": "Conformance",
- "name": "ExpressibleByFloatLiteral",
- "printedName": "ExpressibleByFloatLiteral",
- "children": [
- {
- "kind": "TypeWitness",
- "name": "FloatLiteralType",
- "printedName": "FloatLiteralType",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Double",
- "printedName": "Swift.Double",
- "usr": "s:Sd"
- }
- ]
- }
- ],
- "usr": "s:s25ExpressibleByFloatLiteralP",
- "mangledName": "$ss25ExpressibleByFloatLiteralP"
- },
- {
- "kind": "Conformance",
- "name": "FloatingPoint",
- "printedName": "FloatingPoint",
- "children": [
- {
- "kind": "TypeWitness",
- "name": "Exponent",
- "printedName": "Exponent",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ]
- }
- ],
- "usr": "s:SF",
- "mangledName": "$sSF"
- },
- {
- "kind": "Conformance",
- "name": "SignedNumeric",
- "printedName": "SignedNumeric",
- "usr": "s:s13SignedNumericP",
- "mangledName": "$ss13SignedNumericP"
- },
- {
- "kind": "Conformance",
- "name": "Numeric",
- "printedName": "Numeric",
- "children": [
- {
- "kind": "TypeWitness",
- "name": "Magnitude",
- "printedName": "Magnitude",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Double",
- "printedName": "Swift.Double",
- "usr": "s:Sd"
- }
- ]
- }
- ],
- "usr": "s:Sj",
- "mangledName": "$sSj"
- },
- {
- "kind": "Conformance",
- "name": "AdditiveArithmetic",
- "printedName": "AdditiveArithmetic",
- "usr": "s:s18AdditiveArithmeticP",
- "mangledName": "$ss18AdditiveArithmeticP"
- },
- {
- "kind": "Conformance",
- "name": "_ExpressibleByBuiltinIntegerLiteral",
- "printedName": "_ExpressibleByBuiltinIntegerLiteral",
- "usr": "s:s35_ExpressibleByBuiltinIntegerLiteralP",
- "mangledName": "$ss35_ExpressibleByBuiltinIntegerLiteralP"
- },
- {
- "kind": "Conformance",
- "name": "ExpressibleByIntegerLiteral",
- "printedName": "ExpressibleByIntegerLiteral",
- "children": [
- {
- "kind": "TypeWitness",
- "name": "IntegerLiteralType",
- "printedName": "IntegerLiteralType",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int64",
- "printedName": "Swift.Int64",
- "usr": "s:s5Int64V"
- }
- ]
- }
- ],
- "usr": "s:s27ExpressibleByIntegerLiteralP",
- "mangledName": "$ss27ExpressibleByIntegerLiteralP"
- },
- {
- "kind": "Conformance",
- "name": "_ExpressibleByBuiltinFloatLiteral",
- "printedName": "_ExpressibleByBuiltinFloatLiteral",
- "usr": "s:s33_ExpressibleByBuiltinFloatLiteralP",
- "mangledName": "$ss33_ExpressibleByBuiltinFloatLiteralP"
- },
- {
- "kind": "Conformance",
- "name": "Hashable",
- "printedName": "Hashable",
- "usr": "s:SH",
- "mangledName": "$sSH"
- },
- {
- "kind": "Conformance",
- "name": "Equatable",
- "printedName": "Equatable",
- "usr": "s:SQ",
- "mangledName": "$sSQ"
- },
- {
- "kind": "Conformance",
- "name": "_HasCustomAnyHashableRepresentation",
- "printedName": "_HasCustomAnyHashableRepresentation",
- "usr": "s:s35_HasCustomAnyHashableRepresentationP",
- "mangledName": "$ss35_HasCustomAnyHashableRepresentationP"
- },
- {
- "kind": "Conformance",
- "name": "Sendable",
- "printedName": "Sendable",
- "usr": "s:s8SendableP",
- "mangledName": "$ss8SendableP"
- },
- {
- "kind": "Conformance",
- "name": "Strideable",
- "printedName": "Strideable",
- "children": [
- {
- "kind": "TypeWitness",
- "name": "Stride",
- "printedName": "Stride",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Double",
- "printedName": "Swift.Double",
- "usr": "s:Sd"
- }
- ]
- }
- ],
- "usr": "s:Sx",
- "mangledName": "$sSx"
- },
- {
- "kind": "Conformance",
- "name": "Comparable",
- "printedName": "Comparable",
- "usr": "s:SL",
- "mangledName": "$sSL"
- },
- {
- "kind": "Conformance",
- "name": "SIMDScalar",
- "printedName": "SIMDScalar",
- "children": [
- {
- "kind": "TypeWitness",
- "name": "SIMDMaskScalar",
- "printedName": "SIMDMaskScalar",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int64",
- "printedName": "Swift.Int64",
- "usr": "s:s5Int64V"
- }
- ]
- },
- {
- "kind": "TypeWitness",
- "name": "SIMD2Storage",
- "printedName": "SIMD2Storage",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "SIMD2Storage",
- "printedName": "Swift.Double.SIMD2Storage",
- "usr": "s:Sd12SIMD2StorageV"
- }
- ]
- },
- {
- "kind": "TypeWitness",
- "name": "SIMD4Storage",
- "printedName": "SIMD4Storage",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "SIMD4Storage",
- "printedName": "Swift.Double.SIMD4Storage",
- "usr": "s:Sd12SIMD4StorageV"
- }
- ]
- },
- {
- "kind": "TypeWitness",
- "name": "SIMD8Storage",
- "printedName": "SIMD8Storage",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "SIMD8Storage",
- "printedName": "Swift.Double.SIMD8Storage",
- "usr": "s:Sd12SIMD8StorageV"
- }
- ]
- },
- {
- "kind": "TypeWitness",
- "name": "SIMD16Storage",
- "printedName": "SIMD16Storage",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "SIMD16Storage",
- "printedName": "Swift.Double.SIMD16Storage",
- "usr": "s:Sd13SIMD16StorageV"
- }
- ]
- },
- {
- "kind": "TypeWitness",
- "name": "SIMD32Storage",
- "printedName": "SIMD32Storage",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "SIMD32Storage",
- "printedName": "Swift.Double.SIMD32Storage",
- "usr": "s:Sd13SIMD32StorageV"
- }
- ]
- },
- {
- "kind": "TypeWitness",
- "name": "SIMD64Storage",
- "printedName": "SIMD64Storage",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "SIMD64Storage",
- "printedName": "Swift.Double.SIMD64Storage",
- "usr": "s:Sd13SIMD64StorageV"
- }
- ]
- }
- ],
- "usr": "s:s10SIMDScalarP",
- "mangledName": "$ss10SIMDScalarP"
- },
- {
- "kind": "Conformance",
- "name": "_FormatSpecifiable",
- "printedName": "_FormatSpecifiable",
- "children": [
- {
- "kind": "TypeWitness",
- "name": "_Arg",
- "printedName": "_Arg",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Double",
- "printedName": "Swift.Double",
- "usr": "s:Sd"
- }
- ]
- }
- ],
- "usr": "s:10Foundation18_FormatSpecifiableP",
- "mangledName": "$s10Foundation18_FormatSpecifiableP"
- },
- {
- "kind": "Conformance",
- "name": "_ObjectiveCBridgeable",
- "printedName": "_ObjectiveCBridgeable",
- "children": [
- {
- "kind": "TypeWitness",
- "name": "_ObjectiveCType",
- "printedName": "_ObjectiveCType",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "NSNumber",
- "printedName": "Foundation.NSNumber",
- "usr": "c:objc(cs)NSNumber"
- }
- ]
- }
- ],
- "usr": "s:s21_ObjectiveCBridgeableP",
- "mangledName": "$ss21_ObjectiveCBridgeableP"
- }
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "Float",
- "printedName": "Float",
- "declKind": "Struct",
- "usr": "s:Sf",
- "mangledName": "$sSf",
- "moduleName": "Swift",
- "declAttributes": [
- "Frozen"
- ],
- "isExternal": true,
- "conformances": [
- {
- "kind": "Conformance",
- "name": "CustomDataCompatible",
- "printedName": "CustomDataCompatible",
- "usr": "s:13ApptentiveKit20CustomDataCompatibleP",
- "mangledName": "$s13ApptentiveKit20CustomDataCompatibleP"
- },
- {
- "kind": "Conformance",
- "name": "Decodable",
- "printedName": "Decodable",
- "usr": "s:Se",
- "mangledName": "$sSe"
- },
- {
- "kind": "Conformance",
- "name": "Encodable",
- "printedName": "Encodable",
- "usr": "s:SE",
- "mangledName": "$sSE"
- },
- {
- "kind": "Conformance",
- "name": "CustomReflectable",
- "printedName": "CustomReflectable",
- "usr": "s:s17CustomReflectableP",
- "mangledName": "$ss17CustomReflectableP"
- },
- {
- "kind": "Conformance",
- "name": "_CustomPlaygroundQuickLookable",
- "printedName": "_CustomPlaygroundQuickLookable",
- "usr": "s:s30_CustomPlaygroundQuickLookableP",
- "mangledName": "$ss30_CustomPlaygroundQuickLookableP"
- },
- {
- "kind": "Conformance",
- "name": "_CVarArgPassedAsDouble",
- "printedName": "_CVarArgPassedAsDouble",
- "usr": "s:s22_CVarArgPassedAsDoubleP",
- "mangledName": "$ss22_CVarArgPassedAsDoubleP"
- },
- {
- "kind": "Conformance",
- "name": "_CVarArgAligned",
- "printedName": "_CVarArgAligned",
- "usr": "s:s15_CVarArgAlignedP",
- "mangledName": "$ss15_CVarArgAlignedP"
- },
- {
- "kind": "Conformance",
- "name": "CVarArg",
- "printedName": "CVarArg",
- "usr": "s:s7CVarArgP",
- "mangledName": "$ss7CVarArgP"
- },
- {
- "kind": "Conformance",
- "name": "LosslessStringConvertible",
- "printedName": "LosslessStringConvertible",
- "usr": "s:s25LosslessStringConvertibleP",
- "mangledName": "$ss25LosslessStringConvertibleP"
- },
- {
- "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": "TextOutputStreamable",
- "printedName": "TextOutputStreamable",
- "usr": "s:s20TextOutputStreamableP",
- "mangledName": "$ss20TextOutputStreamableP"
- },
- {
- "kind": "Conformance",
- "name": "BinaryFloatingPoint",
- "printedName": "BinaryFloatingPoint",
- "children": [
- {
- "kind": "TypeWitness",
- "name": "RawSignificand",
- "printedName": "RawSignificand",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UInt32",
- "printedName": "Swift.UInt32",
- "usr": "s:s6UInt32V"
- }
- ]
- },
- {
- "kind": "TypeWitness",
- "name": "RawExponent",
- "printedName": "RawExponent",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UInt",
- "printedName": "Swift.UInt",
- "usr": "s:Su"
- }
- ]
- }
- ],
- "usr": "s:SB",
- "mangledName": "$sSB"
- },
- {
- "kind": "Conformance",
- "name": "ExpressibleByFloatLiteral",
- "printedName": "ExpressibleByFloatLiteral",
- "children": [
- {
- "kind": "TypeWitness",
- "name": "FloatLiteralType",
- "printedName": "FloatLiteralType",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Float",
- "printedName": "Swift.Float",
- "usr": "s:Sf"
- }
- ]
- }
- ],
- "usr": "s:s25ExpressibleByFloatLiteralP",
- "mangledName": "$ss25ExpressibleByFloatLiteralP"
- },
- {
- "kind": "Conformance",
- "name": "FloatingPoint",
- "printedName": "FloatingPoint",
- "children": [
- {
- "kind": "TypeWitness",
- "name": "Exponent",
- "printedName": "Exponent",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ]
- }
- ],
- "usr": "s:SF",
- "mangledName": "$sSF"
- },
- {
- "kind": "Conformance",
- "name": "SignedNumeric",
- "printedName": "SignedNumeric",
- "usr": "s:s13SignedNumericP",
- "mangledName": "$ss13SignedNumericP"
- },
- {
- "kind": "Conformance",
- "name": "Numeric",
- "printedName": "Numeric",
- "children": [
- {
- "kind": "TypeWitness",
- "name": "Magnitude",
- "printedName": "Magnitude",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Float",
- "printedName": "Swift.Float",
- "usr": "s:Sf"
- }
- ]
- }
- ],
- "usr": "s:Sj",
- "mangledName": "$sSj"
- },
- {
- "kind": "Conformance",
- "name": "AdditiveArithmetic",
- "printedName": "AdditiveArithmetic",
- "usr": "s:s18AdditiveArithmeticP",
- "mangledName": "$ss18AdditiveArithmeticP"
- },
- {
- "kind": "Conformance",
- "name": "_ExpressibleByBuiltinIntegerLiteral",
- "printedName": "_ExpressibleByBuiltinIntegerLiteral",
- "usr": "s:s35_ExpressibleByBuiltinIntegerLiteralP",
- "mangledName": "$ss35_ExpressibleByBuiltinIntegerLiteralP"
- },
- {
- "kind": "Conformance",
- "name": "ExpressibleByIntegerLiteral",
- "printedName": "ExpressibleByIntegerLiteral",
- "children": [
- {
- "kind": "TypeWitness",
- "name": "IntegerLiteralType",
- "printedName": "IntegerLiteralType",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int64",
- "printedName": "Swift.Int64",
- "usr": "s:s5Int64V"
- }
- ]
- }
- ],
- "usr": "s:s27ExpressibleByIntegerLiteralP",
- "mangledName": "$ss27ExpressibleByIntegerLiteralP"
- },
- {
- "kind": "Conformance",
- "name": "_ExpressibleByBuiltinFloatLiteral",
- "printedName": "_ExpressibleByBuiltinFloatLiteral",
- "usr": "s:s33_ExpressibleByBuiltinFloatLiteralP",
- "mangledName": "$ss33_ExpressibleByBuiltinFloatLiteralP"
- },
- {
- "kind": "Conformance",
- "name": "Hashable",
- "printedName": "Hashable",
- "usr": "s:SH",
- "mangledName": "$sSH"
- },
- {
- "kind": "Conformance",
- "name": "Equatable",
- "printedName": "Equatable",
- "usr": "s:SQ",
- "mangledName": "$sSQ"
- },
- {
- "kind": "Conformance",
- "name": "_HasCustomAnyHashableRepresentation",
- "printedName": "_HasCustomAnyHashableRepresentation",
- "usr": "s:s35_HasCustomAnyHashableRepresentationP",
- "mangledName": "$ss35_HasCustomAnyHashableRepresentationP"
- },
- {
- "kind": "Conformance",
- "name": "Sendable",
- "printedName": "Sendable",
- "usr": "s:s8SendableP",
- "mangledName": "$ss8SendableP"
- },
- {
- "kind": "Conformance",
- "name": "Strideable",
- "printedName": "Strideable",
- "children": [
- {
- "kind": "TypeWitness",
- "name": "Stride",
- "printedName": "Stride",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Float",
- "printedName": "Swift.Float",
- "usr": "s:Sf"
- }
- ]
- }
- ],
- "usr": "s:Sx",
- "mangledName": "$sSx"
- },
- {
- "kind": "Conformance",
- "name": "Comparable",
- "printedName": "Comparable",
- "usr": "s:SL",
- "mangledName": "$sSL"
- },
- {
- "kind": "Conformance",
- "name": "SIMDScalar",
- "printedName": "SIMDScalar",
- "children": [
- {
- "kind": "TypeWitness",
- "name": "SIMDMaskScalar",
- "printedName": "SIMDMaskScalar",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int32",
- "printedName": "Swift.Int32",
- "usr": "s:s5Int32V"
- }
- ]
- },
- {
- "kind": "TypeWitness",
- "name": "SIMD2Storage",
- "printedName": "SIMD2Storage",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "SIMD2Storage",
- "printedName": "Swift.Float.SIMD2Storage",
- "usr": "s:Sf12SIMD2StorageV"
- }
- ]
- },
- {
- "kind": "TypeWitness",
- "name": "SIMD4Storage",
- "printedName": "SIMD4Storage",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "SIMD4Storage",
- "printedName": "Swift.Float.SIMD4Storage",
- "usr": "s:Sf12SIMD4StorageV"
- }
- ]
- },
- {
- "kind": "TypeWitness",
- "name": "SIMD8Storage",
- "printedName": "SIMD8Storage",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "SIMD8Storage",
- "printedName": "Swift.Float.SIMD8Storage",
- "usr": "s:Sf12SIMD8StorageV"
- }
- ]
- },
- {
- "kind": "TypeWitness",
- "name": "SIMD16Storage",
- "printedName": "SIMD16Storage",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "SIMD16Storage",
- "printedName": "Swift.Float.SIMD16Storage",
- "usr": "s:Sf13SIMD16StorageV"
- }
- ]
- },
- {
- "kind": "TypeWitness",
- "name": "SIMD32Storage",
- "printedName": "SIMD32Storage",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "SIMD32Storage",
- "printedName": "Swift.Float.SIMD32Storage",
- "usr": "s:Sf13SIMD32StorageV"
- }
- ]
- },
- {
- "kind": "TypeWitness",
- "name": "SIMD64Storage",
- "printedName": "SIMD64Storage",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "SIMD64Storage",
- "printedName": "Swift.Float.SIMD64Storage",
- "usr": "s:Sf13SIMD64StorageV"
- }
- ]
- }
- ],
- "usr": "s:s10SIMDScalarP",
- "mangledName": "$ss10SIMDScalarP"
- },
- {
- "kind": "Conformance",
- "name": "_FormatSpecifiable",
- "printedName": "_FormatSpecifiable",
- "children": [
- {
- "kind": "TypeWitness",
- "name": "_Arg",
- "printedName": "_Arg",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Float",
- "printedName": "Swift.Float",
- "usr": "s:Sf"
- }
- ]
- }
- ],
- "usr": "s:10Foundation18_FormatSpecifiableP",
- "mangledName": "$s10Foundation18_FormatSpecifiableP"
- },
- {
- "kind": "Conformance",
- "name": "_ObjectiveCBridgeable",
- "printedName": "_ObjectiveCBridgeable",
- "children": [
- {
- "kind": "TypeWitness",
- "name": "_ObjectiveCType",
- "printedName": "_ObjectiveCType",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "NSNumber",
- "printedName": "Foundation.NSNumber",
- "usr": "c:objc(cs)NSNumber"
- }
- ]
- }
- ],
- "usr": "s:s21_ObjectiveCBridgeableP",
- "mangledName": "$ss21_ObjectiveCBridgeableP"
- }
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "Int",
- "printedName": "Int",
- "declKind": "Struct",
- "usr": "s:Si",
- "mangledName": "$sSi",
- "moduleName": "Swift",
- "declAttributes": [
- "Frozen"
- ],
- "isExternal": true,
- "conformances": [
- {
- "kind": "Conformance",
- "name": "FixedWidthInteger",
- "printedName": "FixedWidthInteger",
- "usr": "s:s17FixedWidthIntegerP",
- "mangledName": "$ss17FixedWidthIntegerP"
- },
- {
- "kind": "Conformance",
- "name": "SignedInteger",
- "printedName": "SignedInteger",
- "usr": "s:SZ",
- "mangledName": "$sSZ"
- },
- {
- "kind": "Conformance",
- "name": "_ExpressibleByBuiltinIntegerLiteral",
- "printedName": "_ExpressibleByBuiltinIntegerLiteral",
- "usr": "s:s35_ExpressibleByBuiltinIntegerLiteralP",
- "mangledName": "$ss35_ExpressibleByBuiltinIntegerLiteralP"
- },
- {
- "kind": "Conformance",
- "name": "BinaryInteger",
- "printedName": "BinaryInteger",
- "children": [
- {
- "kind": "TypeWitness",
- "name": "Words",
- "printedName": "Words",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Words",
- "printedName": "Swift.Int.Words",
- "usr": "s:Si5WordsV"
- }
- ]
- }
- ],
- "usr": "s:Sz",
- "mangledName": "$sSz"
- },
- {
- "kind": "Conformance",
- "name": "LosslessStringConvertible",
- "printedName": "LosslessStringConvertible",
- "usr": "s:s25LosslessStringConvertibleP",
- "mangledName": "$ss25LosslessStringConvertibleP"
- },
- {
- "kind": "Conformance",
- "name": "SignedNumeric",
- "printedName": "SignedNumeric",
- "usr": "s:s13SignedNumericP",
- "mangledName": "$ss13SignedNumericP"
- },
- {
- "kind": "Conformance",
- "name": "CustomStringConvertible",
- "printedName": "CustomStringConvertible",
- "usr": "s:s23CustomStringConvertibleP",
- "mangledName": "$ss23CustomStringConvertibleP"
- },
- {
- "kind": "Conformance",
- "name": "Numeric",
- "printedName": "Numeric",
- "children": [
- {
- "kind": "TypeWitness",
- "name": "Magnitude",
- "printedName": "Magnitude",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UInt",
- "printedName": "Swift.UInt",
- "usr": "s:Su"
- }
- ]
- }
- ],
- "usr": "s:Sj",
- "mangledName": "$sSj"
- },
- {
- "kind": "Conformance",
- "name": "Strideable",
- "printedName": "Strideable",
- "children": [
- {
- "kind": "TypeWitness",
- "name": "Stride",
- "printedName": "Stride",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ]
- }
- ],
- "usr": "s:Sx",
- "mangledName": "$sSx"
- },
- {
- "kind": "Conformance",
- "name": "AdditiveArithmetic",
- "printedName": "AdditiveArithmetic",
- "usr": "s:s18AdditiveArithmeticP",
- "mangledName": "$ss18AdditiveArithmeticP"
- },
- {
- "kind": "Conformance",
- "name": "ExpressibleByIntegerLiteral",
- "printedName": "ExpressibleByIntegerLiteral",
- "children": [
- {
- "kind": "TypeWitness",
- "name": "IntegerLiteralType",
- "printedName": "IntegerLiteralType",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ]
- }
- ],
- "usr": "s:s27ExpressibleByIntegerLiteralP",
- "mangledName": "$ss27ExpressibleByIntegerLiteralP"
- },
- {
- "kind": "Conformance",
- "name": "Comparable",
- "printedName": "Comparable",
- "usr": "s:SL",
- "mangledName": "$sSL"
- },
- {
- "kind": "Conformance",
- "name": "CustomDataCompatible",
- "printedName": "CustomDataCompatible",
- "usr": "s:13ApptentiveKit20CustomDataCompatibleP",
- "mangledName": "$s13ApptentiveKit20CustomDataCompatibleP"
- },
- {
- "kind": "Conformance",
- "name": "Decodable",
- "printedName": "Decodable",
- "usr": "s:Se",
- "mangledName": "$sSe"
- },
- {
- "kind": "Conformance",
- "name": "Encodable",
- "printedName": "Encodable",
- "usr": "s:SE",
- "mangledName": "$sSE"
- },
- {
- "kind": "Conformance",
- "name": "CodingKeyRepresentable",
- "printedName": "CodingKeyRepresentable",
- "usr": "s:s22CodingKeyRepresentableP",
- "mangledName": "$ss22CodingKeyRepresentableP"
- },
- {
- "kind": "Conformance",
- "name": "CustomReflectable",
- "printedName": "CustomReflectable",
- "usr": "s:s17CustomReflectableP",
- "mangledName": "$ss17CustomReflectableP"
- },
- {
- "kind": "Conformance",
- "name": "_CustomPlaygroundQuickLookable",
- "printedName": "_CustomPlaygroundQuickLookable",
- "usr": "s:s30_CustomPlaygroundQuickLookableP",
- "mangledName": "$ss30_CustomPlaygroundQuickLookableP"
- },
- {
- "kind": "Conformance",
- "name": "MirrorPath",
- "printedName": "MirrorPath",
- "usr": "s:s10MirrorPathP",
- "mangledName": "$ss10MirrorPathP"
- },
- {
- "kind": "Conformance",
- "name": "CVarArg",
- "printedName": "CVarArg",
- "usr": "s:s7CVarArgP",
- "mangledName": "$ss7CVarArgP"
- },
- {
- "kind": "Conformance",
- "name": "Hashable",
- "printedName": "Hashable",
- "usr": "s:SH",
- "mangledName": "$sSH"
- },
- {
- "kind": "Conformance",
- "name": "Equatable",
- "printedName": "Equatable",
- "usr": "s:SQ",
- "mangledName": "$sSQ"
- },
- {
- "kind": "Conformance",
- "name": "_HasCustomAnyHashableRepresentation",
- "printedName": "_HasCustomAnyHashableRepresentation",
- "usr": "s:s35_HasCustomAnyHashableRepresentationP",
- "mangledName": "$ss35_HasCustomAnyHashableRepresentationP"
- },
- {
- "kind": "Conformance",
- "name": "Sendable",
- "printedName": "Sendable",
- "usr": "s:s8SendableP",
- "mangledName": "$ss8SendableP"
- },
- {
- "kind": "Conformance",
- "name": "SIMDScalar",
- "printedName": "SIMDScalar",
- "children": [
- {
- "kind": "TypeWitness",
- "name": "SIMDMaskScalar",
- "printedName": "SIMDMaskScalar",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ]
- },
- {
- "kind": "TypeWitness",
- "name": "SIMD2Storage",
- "printedName": "SIMD2Storage",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "SIMD2Storage",
- "printedName": "Swift.Int.SIMD2Storage",
- "usr": "s:Si12SIMD2StorageV"
- }
- ]
- },
- {
- "kind": "TypeWitness",
- "name": "SIMD4Storage",
- "printedName": "SIMD4Storage",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "SIMD4Storage",
- "printedName": "Swift.Int.SIMD4Storage",
- "usr": "s:Si12SIMD4StorageV"
- }
- ]
- },
- {
- "kind": "TypeWitness",
- "name": "SIMD8Storage",
- "printedName": "SIMD8Storage",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "SIMD8Storage",
- "printedName": "Swift.Int.SIMD8Storage",
- "usr": "s:Si12SIMD8StorageV"
- }
- ]
- },
- {
- "kind": "TypeWitness",
- "name": "SIMD16Storage",
- "printedName": "SIMD16Storage",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "SIMD16Storage",
- "printedName": "Swift.Int.SIMD16Storage",
- "usr": "s:Si13SIMD16StorageV"
- }
- ]
- },
- {
- "kind": "TypeWitness",
- "name": "SIMD32Storage",
- "printedName": "SIMD32Storage",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "SIMD32Storage",
- "printedName": "Swift.Int.SIMD32Storage",
- "usr": "s:Si13SIMD32StorageV"
- }
- ]
- },
- {
- "kind": "TypeWitness",
- "name": "SIMD64Storage",
- "printedName": "SIMD64Storage",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "SIMD64Storage",
- "printedName": "Swift.Int.SIMD64Storage",
- "usr": "s:Si13SIMD64StorageV"
- }
- ]
- }
- ],
- "usr": "s:s10SIMDScalarP",
- "mangledName": "$ss10SIMDScalarP"
- },
- {
- "kind": "Conformance",
- "name": "_FormatSpecifiable",
- "printedName": "_FormatSpecifiable",
- "children": [
- {
- "kind": "TypeWitness",
- "name": "_Arg",
- "printedName": "_Arg",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int64",
- "printedName": "Swift.Int64",
- "usr": "s:s5Int64V"
- }
- ]
- }
- ],
- "usr": "s:10Foundation18_FormatSpecifiableP",
- "mangledName": "$s10Foundation18_FormatSpecifiableP"
- },
- {
- "kind": "Conformance",
- "name": "_ObjectiveCBridgeable",
- "printedName": "_ObjectiveCBridgeable",
- "children": [
- {
- "kind": "TypeWitness",
- "name": "_ObjectiveCType",
- "printedName": "_ObjectiveCType",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "NSNumber",
- "printedName": "Foundation.NSNumber",
- "usr": "c:objc(cs)NSNumber"
- }
- ]
- }
- ],
- "usr": "s:s21_ObjectiveCBridgeableP",
- "mangledName": "$ss21_ObjectiveCBridgeableP"
- }
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "Bool",
- "printedName": "Bool",
- "declKind": "Struct",
- "usr": "s:Sb",
- "mangledName": "$sSb",
- "moduleName": "Swift",
- "declAttributes": [
- "Frozen"
- ],
- "isExternal": true,
- "conformances": [
- {
- "kind": "Conformance",
- "name": "Sendable",
- "printedName": "Sendable",
- "usr": "s:s8SendableP",
- "mangledName": "$ss8SendableP"
- },
- {
- "kind": "Conformance",
- "name": "CustomDataCompatible",
- "printedName": "CustomDataCompatible",
- "usr": "s:13ApptentiveKit20CustomDataCompatibleP",
- "mangledName": "$s13ApptentiveKit20CustomDataCompatibleP"
- },
- {
- "kind": "Conformance",
- "name": "_ExpressibleByBuiltinBooleanLiteral",
- "printedName": "_ExpressibleByBuiltinBooleanLiteral",
- "usr": "s:s35_ExpressibleByBuiltinBooleanLiteralP",
- "mangledName": "$ss35_ExpressibleByBuiltinBooleanLiteralP"
- },
- {
- "kind": "Conformance",
- "name": "ExpressibleByBooleanLiteral",
- "printedName": "ExpressibleByBooleanLiteral",
- "children": [
- {
- "kind": "TypeWitness",
- "name": "BooleanLiteralType",
- "printedName": "BooleanLiteralType",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ]
- }
- ],
- "usr": "s:s27ExpressibleByBooleanLiteralP",
- "mangledName": "$ss27ExpressibleByBooleanLiteralP"
- },
- {
- "kind": "Conformance",
- "name": "CustomStringConvertible",
- "printedName": "CustomStringConvertible",
- "usr": "s:s23CustomStringConvertibleP",
- "mangledName": "$ss23CustomStringConvertibleP"
- },
- {
- "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": "LosslessStringConvertible",
- "printedName": "LosslessStringConvertible",
- "usr": "s:s25LosslessStringConvertibleP",
- "mangledName": "$ss25LosslessStringConvertibleP"
- },
- {
- "kind": "Conformance",
- "name": "Decodable",
- "printedName": "Decodable",
- "usr": "s:Se",
- "mangledName": "$sSe"
- },
- {
- "kind": "Conformance",
- "name": "Encodable",
- "printedName": "Encodable",
- "usr": "s:SE",
- "mangledName": "$sSE"
- },
- {
- "kind": "Conformance",
- "name": "CustomReflectable",
- "printedName": "CustomReflectable",
- "usr": "s:s17CustomReflectableP",
- "mangledName": "$ss17CustomReflectableP"
- },
- {
- "kind": "Conformance",
- "name": "_CustomPlaygroundQuickLookable",
- "printedName": "_CustomPlaygroundQuickLookable",
- "usr": "s:s30_CustomPlaygroundQuickLookableP",
- "mangledName": "$ss30_CustomPlaygroundQuickLookableP"
- },
- {
- "kind": "Conformance",
- "name": "CVarArg",
- "printedName": "CVarArg",
- "usr": "s:s7CVarArgP",
- "mangledName": "$ss7CVarArgP"
- },
- {
- "kind": "Conformance",
- "name": "_ObjectiveCBridgeable",
- "printedName": "_ObjectiveCBridgeable",
- "children": [
- {
- "kind": "TypeWitness",
- "name": "_ObjectiveCType",
- "printedName": "_ObjectiveCType",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "NSNumber",
- "printedName": "Foundation.NSNumber",
- "usr": "c:objc(cs)NSNumber"
- }
- ]
- }
- ],
- "usr": "s:s21_ObjectiveCBridgeableP",
- "mangledName": "$ss21_ObjectiveCBridgeableP"
- }
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "Name",
- "printedName": "Name",
- "children": [
- {
- "kind": "Var",
- "name": "apptentiveEventEngaged",
- "printedName": "apptentiveEventEngaged",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Name",
- "printedName": "Foundation.NSNotification.Name",
- "usr": "c:@T@NSNotificationName"
- }
- ],
- "declKind": "Var",
- "usr": "s:So18NSNotificationNamea13ApptentiveKitE22apptentiveEventEngagedABvpZ",
- "mangledName": "$sSo18NSNotificationNamea13ApptentiveKitE22apptentiveEventEngagedABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Name",
- "printedName": "Foundation.NSNotification.Name",
- "usr": "c:@T@NSNotificationName"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So18NSNotificationNamea13ApptentiveKitE22apptentiveEventEngagedABvgZ",
- "mangledName": "$sSo18NSNotificationNamea13ApptentiveKitE22apptentiveEventEngagedABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "isFromExtension": true,
- "accessorKind": "get"
- }
- ]
- }
- ],
- "declKind": "Struct",
- "usr": "c:@T@NSNotificationName",
- "moduleName": "Foundation",
- "declAttributes": [
- "SynthesizedProtocol",
- "SynthesizedProtocol",
- "SynthesizedProtocol",
- "SynthesizedProtocol",
- "SynthesizedProtocol",
- "SynthesizedProtocol",
- "Sendable"
- ],
- "isFromExtension": true,
- "isExternal": true,
- "conformances": [
- {
- "kind": "Conformance",
- "name": "_ObjectiveCBridgeable",
- "printedName": "_ObjectiveCBridgeable",
- "children": [
- {
- "kind": "TypeWitness",
- "name": "_ObjectiveCType",
- "printedName": "_ObjectiveCType",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "NSString",
- "printedName": "Foundation.NSString",
- "usr": "c:objc(cs)NSString"
- }
- ]
- }
- ],
- "usr": "s:s21_ObjectiveCBridgeableP",
- "mangledName": "$ss21_ObjectiveCBridgeableP"
- },
- {
- "kind": "Conformance",
- "name": "Hashable",
- "printedName": "Hashable",
- "usr": "s:SH",
- "mangledName": "$sSH"
- },
- {
- "kind": "Conformance",
- "name": "Equatable",
- "printedName": "Equatable",
- "usr": "s:SQ",
- "mangledName": "$sSQ"
- },
- {
- "kind": "Conformance",
- "name": "_SwiftNewtypeWrapper",
- "printedName": "_SwiftNewtypeWrapper",
- "usr": "s:s20_SwiftNewtypeWrapperP",
- "mangledName": "$ss20_SwiftNewtypeWrapperP"
- },
- {
- "kind": "Conformance",
- "name": "RawRepresentable",
- "printedName": "RawRepresentable",
- "children": [
- {
- "kind": "TypeWitness",
- "name": "RawValue",
- "printedName": "RawValue",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ]
- }
- ],
- "usr": "s:SY",
- "mangledName": "$sSY"
- },
- {
- "kind": "Conformance",
- "name": "Sendable",
- "printedName": "Sendable",
- "usr": "s:s8SendableP",
- "mangledName": "$ss8SendableP"
- },
- {
- "kind": "Conformance",
- "name": "_HasCustomAnyHashableRepresentation",
- "printedName": "_HasCustomAnyHashableRepresentation",
- "usr": "s:s35_HasCustomAnyHashableRepresentationP",
- "mangledName": "$ss35_HasCustomAnyHashableRepresentationP"
- }
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "UIButton",
- "printedName": "UIButton",
- "children": [
- {
- "kind": "Var",
- "name": "apptentivePillRadius",
- "printedName": "apptentivePillRadius",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "CGFloat",
- "printedName": "CoreGraphics.CGFloat",
- "usr": "s:14CoreFoundation7CGFloatV"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIButton(cpy)apptentivePillRadius",
- "mangledName": "$sSo8UIButtonC13ApptentiveKitE20apptentivePillRadius12CoreGraphics7CGFloatVvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "deprecated": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "Custom",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "Available"
- ],
- "isFromExtension": true,
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "CGFloat",
- "printedName": "CoreGraphics.CGFloat",
- "usr": "s:14CoreFoundation7CGFloatV"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIButton(cm)apptentivePillRadius",
- "mangledName": "$sSo8UIButtonC13ApptentiveKitE20apptentivePillRadius12CoreGraphics7CGFloatVvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveCornerRadius",
- "printedName": "apptentiveCornerRadius",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "CGFloat",
- "printedName": "CoreGraphics.CGFloat",
- "usr": "s:14CoreFoundation7CGFloatV"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIButton(cpy)apptentiveCornerRadius",
- "mangledName": "$sSo8UIButtonC13ApptentiveKitE22apptentiveCornerRadius12CoreGraphics7CGFloatVvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "deprecated": true,
- "declAttributes": [
- "Final",
- "Custom",
- "AccessControl",
- "ObjC",
- "Available"
- ],
- "isFromExtension": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "CGFloat",
- "printedName": "CoreGraphics.CGFloat",
- "usr": "s:14CoreFoundation7CGFloatV"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIButton(cm)apptentiveCornerRadius",
- "mangledName": "$sSo8UIButtonC13ApptentiveKitE22apptentiveCornerRadius12CoreGraphics7CGFloatVvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "CGFloat",
- "printedName": "CoreGraphics.CGFloat",
- "usr": "s:14CoreFoundation7CGFloatV"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIButton(cm)setApptentiveCornerRadius:",
- "mangledName": "$sSo8UIButtonC13ApptentiveKitE22apptentiveCornerRadius12CoreGraphics7CGFloatVvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So8UIButtonC13ApptentiveKitE22apptentiveCornerRadius14CoreFoundation7CGFloatVvMZ",
- "mangledName": "$sSo8UIButtonC13ApptentiveKitE22apptentiveCornerRadius12CoreGraphics7CGFloatVvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "deprecated": true,
- "implicit": true,
- "declAttributes": [
- "Available",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveClose",
- "printedName": "apptentiveClose",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "UIKit.UIButton?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIButton",
- "printedName": "UIKit.UIButton",
- "usr": "c:objc(cs)UIButton"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Var",
- "usr": "s:So8UIButtonC13ApptentiveKitE15apptentiveCloseABSgvpZ",
- "mangledName": "$sSo8UIButtonC13ApptentiveKitE15apptentiveCloseABSgvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "Custom",
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "UIKit.UIButton?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIButton",
- "printedName": "UIKit.UIButton",
- "usr": "c:objc(cs)UIButton"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So8UIButtonC13ApptentiveKitE15apptentiveCloseABSgvgZ",
- "mangledName": "$sSo8UIButtonC13ApptentiveKitE15apptentiveCloseABSgvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "UIKit.UIButton?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIButton",
- "printedName": "UIKit.UIButton",
- "usr": "c:objc(cs)UIButton"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So8UIButtonC13ApptentiveKitE15apptentiveCloseABSgvsZ",
- "mangledName": "$sSo8UIButtonC13ApptentiveKitE15apptentiveCloseABSgvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So8UIButtonC13ApptentiveKitE15apptentiveCloseABSgvMZ",
- "mangledName": "$sSo8UIButtonC13ApptentiveKitE15apptentiveCloseABSgvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "ApptentiveButtonStyle",
- "printedName": "ApptentiveButtonStyle",
- "children": [
- {
- "kind": "Var",
- "name": "pill",
- "printedName": "pill",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(UIKit.UIButton.ApptentiveButtonStyle.Type) -> UIKit.UIButton.ApptentiveButtonStyle",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveButtonStyle",
- "printedName": "UIKit.UIButton.ApptentiveButtonStyle",
- "usr": "s:So8UIButtonC13ApptentiveKitE0B11ButtonStyleO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "UIKit.UIButton.ApptentiveButtonStyle.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveButtonStyle",
- "printedName": "UIKit.UIButton.ApptentiveButtonStyle",
- "usr": "s:So8UIButtonC13ApptentiveKitE0B11ButtonStyleO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:So8UIButtonC13ApptentiveKitE0B11ButtonStyleO4pillyA2EmF",
- "mangledName": "$sSo8UIButtonC13ApptentiveKitE0B11ButtonStyleO4pillyA2EmF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "radius",
- "printedName": "radius",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(UIKit.UIButton.ApptentiveButtonStyle.Type) -> (CoreGraphics.CGFloat) -> UIKit.UIButton.ApptentiveButtonStyle",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(CoreGraphics.CGFloat) -> UIKit.UIButton.ApptentiveButtonStyle",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveButtonStyle",
- "printedName": "UIKit.UIButton.ApptentiveButtonStyle",
- "usr": "s:So8UIButtonC13ApptentiveKitE0B11ButtonStyleO"
- },
- {
- "kind": "TypeNominal",
- "name": "CGFloat",
- "printedName": "CoreGraphics.CGFloat",
- "usr": "s:14CoreFoundation7CGFloatV"
- }
- ]
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "UIKit.UIButton.ApptentiveButtonStyle.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveButtonStyle",
- "printedName": "UIKit.UIButton.ApptentiveButtonStyle",
- "usr": "s:So8UIButtonC13ApptentiveKitE0B11ButtonStyleO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:So8UIButtonC13ApptentiveKitE0B11ButtonStyleO6radiusyAE14CoreFoundation7CGFloatVcAEmF",
- "mangledName": "$sSo8UIButtonC13ApptentiveKitE0B11ButtonStyleO6radiusyAE12CoreGraphics7CGFloatVcAEmF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- }
- ],
- "declKind": "Enum",
- "usr": "s:So8UIButtonC13ApptentiveKitE0B11ButtonStyleO",
- "mangledName": "$sSo8UIButtonC13ApptentiveKitE0B11ButtonStyleO",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "isFromExtension": true
- },
- {
- "kind": "Var",
- "name": "apptentiveStyle",
- "printedName": "apptentiveStyle",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveButtonStyle",
- "printedName": "UIKit.UIButton.ApptentiveButtonStyle",
- "usr": "s:So8UIButtonC13ApptentiveKitE0B11ButtonStyleO"
- }
- ],
- "declKind": "Var",
- "usr": "s:So8UIButtonC13ApptentiveKitE15apptentiveStyleAbCE0b6ButtonE0OvpZ",
- "mangledName": "$sSo8UIButtonC13ApptentiveKitE15apptentiveStyleAbCE0b6ButtonE0OvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "Custom",
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveButtonStyle",
- "printedName": "UIKit.UIButton.ApptentiveButtonStyle",
- "usr": "s:So8UIButtonC13ApptentiveKitE0B11ButtonStyleO"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So8UIButtonC13ApptentiveKitE15apptentiveStyleAbCE0b6ButtonE0OvgZ",
- "mangledName": "$sSo8UIButtonC13ApptentiveKitE15apptentiveStyleAbCE0b6ButtonE0OvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "ApptentiveButtonStyle",
- "printedName": "UIKit.UIButton.ApptentiveButtonStyle",
- "usr": "s:So8UIButtonC13ApptentiveKitE0B11ButtonStyleO"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So8UIButtonC13ApptentiveKitE15apptentiveStyleAbCE0b6ButtonE0OvsZ",
- "mangledName": "$sSo8UIButtonC13ApptentiveKitE15apptentiveStyleAbCE0b6ButtonE0OvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So8UIButtonC13ApptentiveKitE15apptentiveStyleAbCE0b6ButtonE0OvMZ",
- "mangledName": "$sSo8UIButtonC13ApptentiveKitE15apptentiveStyleAbCE0b6ButtonE0OvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- }
- ],
- "declKind": "Class",
- "usr": "c:objc(cs)UIButton",
- "moduleName": "UIKit",
- "isOpen": true,
- "intro_iOS": "2.0",
- "objc_name": "UIButton",
- "declAttributes": [
- "Available",
- "ObjC",
- "NonSendable",
- "Custom",
- "Dynamic"
- ],
- "superclassUsr": "c:objc(cs)UIControl",
- "isExternal": true,
- "inheritsConvenienceInitializers": true,
- "superclassNames": [
- "UIKit.UIControl",
- "UIKit.UIView",
- "UIKit.UIResponder",
- "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": "Conformance",
- "name": "__DefaultCustomPlaygroundQuickLookable",
- "printedName": "__DefaultCustomPlaygroundQuickLookable",
- "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP",
- "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP"
- },
- {
- "kind": "Conformance",
- "name": "Sendable",
- "printedName": "Sendable",
- "usr": "s:s8SendableP",
- "mangledName": "$ss8SendableP"
- }
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "UITableView",
- "printedName": "UITableView",
- "children": [
- {
- "kind": "Var",
- "name": "apptentiveStyle",
- "printedName": "apptentiveStyle",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UITableView(cpy)apptentiveStyle",
- "mangledName": "$sSo11UITableViewC13ApptentiveKitE15apptentiveStyleSivpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "deprecated": true,
- "declAttributes": [
- "Final",
- "Custom",
- "AccessControl",
- "ObjC",
- "Available"
- ],
- "isFromExtension": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UITableView(cm)apptentiveStyle",
- "mangledName": "$sSo11UITableViewC13ApptentiveKitE15apptentiveStyleSivgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "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:@CM@ApptentiveKit@@objc(cs)UITableView(cm)setApptentiveStyle:",
- "mangledName": "$sSo11UITableViewC13ApptentiveKitE15apptentiveStyleSivsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So11UITableViewC13ApptentiveKitE15apptentiveStyleSivMZ",
- "mangledName": "$sSo11UITableViewC13ApptentiveKitE15apptentiveStyleSivMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "deprecated": true,
- "implicit": true,
- "declAttributes": [
- "Available",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveQuestionSeparatorHeight",
- "printedName": "apptentiveQuestionSeparatorHeight",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "CGFloat",
- "printedName": "CoreGraphics.CGFloat",
- "usr": "s:14CoreFoundation7CGFloatV"
- }
- ],
- "declKind": "Var",
- "usr": "s:So11UITableViewC13ApptentiveKitE33apptentiveQuestionSeparatorHeight14CoreFoundation7CGFloatVvpZ",
- "mangledName": "$sSo11UITableViewC13ApptentiveKitE33apptentiveQuestionSeparatorHeight12CoreGraphics7CGFloatVvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "Custom",
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "CGFloat",
- "printedName": "CoreGraphics.CGFloat",
- "usr": "s:14CoreFoundation7CGFloatV"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So11UITableViewC13ApptentiveKitE33apptentiveQuestionSeparatorHeight14CoreFoundation7CGFloatVvgZ",
- "mangledName": "$sSo11UITableViewC13ApptentiveKitE33apptentiveQuestionSeparatorHeight12CoreGraphics7CGFloatVvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "CGFloat",
- "printedName": "CoreGraphics.CGFloat",
- "usr": "s:14CoreFoundation7CGFloatV"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So11UITableViewC13ApptentiveKitE33apptentiveQuestionSeparatorHeight14CoreFoundation7CGFloatVvsZ",
- "mangledName": "$sSo11UITableViewC13ApptentiveKitE33apptentiveQuestionSeparatorHeight12CoreGraphics7CGFloatVvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So11UITableViewC13ApptentiveKitE33apptentiveQuestionSeparatorHeight14CoreFoundation7CGFloatVvMZ",
- "mangledName": "$sSo11UITableViewC13ApptentiveKitE33apptentiveQuestionSeparatorHeight12CoreGraphics7CGFloatVvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- }
- ],
- "declKind": "Class",
- "usr": "c:objc(cs)UITableView",
- "moduleName": "UIKit",
- "isOpen": true,
- "intro_iOS": "2.0",
- "objc_name": "UITableView",
- "declAttributes": [
- "Available",
- "ObjC",
- "NonSendable",
- "Custom",
- "Dynamic"
- ],
- "superclassUsr": "c:objc(cs)UIScrollView",
- "isExternal": true,
- "inheritsConvenienceInitializers": true,
- "superclassNames": [
- "UIKit.UIScrollView",
- "UIKit.UIView",
- "UIKit.UIResponder",
- "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": "Conformance",
- "name": "__DefaultCustomPlaygroundQuickLookable",
- "printedName": "__DefaultCustomPlaygroundQuickLookable",
- "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP",
- "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP"
- },
- {
- "kind": "Conformance",
- "name": "Sendable",
- "printedName": "Sendable",
- "usr": "s:s8SendableP",
- "mangledName": "$ss8SendableP"
- }
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "UIViewController",
- "printedName": "UIViewController",
- "children": [
- {
- "kind": "Var",
- "name": "apptentiveModalPresentationStyle",
- "printedName": "apptentiveModalPresentationStyle",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIModalPresentationStyle",
- "printedName": "UIKit.UIModalPresentationStyle",
- "usr": "c:@E@UIModalPresentationStyle"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIViewController(py)apptentiveModalPresentationStyle",
- "mangledName": "$sSo16UIViewControllerC13ApptentiveKitE32apptentiveModalPresentationStyleSo07UIModalgH0Vvp",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "declAttributes": [
- "Dynamic",
- "Custom",
- "AccessControl",
- "ObjC",
- "Available"
- ],
- "isFromExtension": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIModalPresentationStyle",
- "printedName": "UIKit.UIModalPresentationStyle",
- "usr": "c:@E@UIModalPresentationStyle"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIViewController(im)apptentiveModalPresentationStyle",
- "mangledName": "$sSo16UIViewControllerC13ApptentiveKitE32apptentiveModalPresentationStyleSo07UIModalgH0Vvg",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Dynamic",
- "ObjC"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIModalPresentationStyle",
- "printedName": "UIKit.UIModalPresentationStyle",
- "usr": "c:@E@UIModalPresentationStyle"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIViewController(im)setApptentiveModalPresentationStyle:",
- "mangledName": "$sSo16UIViewControllerC13ApptentiveKitE32apptentiveModalPresentationStyleSo07UIModalgH0Vvs",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Dynamic",
- "ObjC"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- }
- ]
- }
- ],
- "declKind": "Class",
- "usr": "c:objc(cs)UIViewController",
- "moduleName": "UIKit",
- "isOpen": true,
- "intro_iOS": "2.0",
- "objc_name": "UIViewController",
- "declAttributes": [
- "Available",
- "ObjC",
- "NonSendable",
- "Custom",
- "Dynamic"
- ],
- "superclassUsr": "c:objc(cs)UIResponder",
- "isExternal": true,
- "inheritsConvenienceInitializers": true,
- "superclassNames": [
- "UIKit.UIResponder",
- "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": "Conformance",
- "name": "Sendable",
- "printedName": "Sendable",
- "usr": "s:s8SendableP",
- "mangledName": "$ss8SendableP"
- }
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "Style",
- "printedName": "Style",
- "children": [
- {
- "kind": "Var",
- "name": "apptentive",
- "printedName": "apptentive",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Style",
- "printedName": "UIKit.UITableView.Style",
- "usr": "c:@E@UITableViewStyle"
- }
- ],
- "declKind": "Var",
- "usr": "s:So16UITableViewStyleV13ApptentiveKitE10apptentiveABvpZ",
- "mangledName": "$sSo16UITableViewStyleV13ApptentiveKitE10apptentiveABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Style",
- "printedName": "UIKit.UITableView.Style",
- "usr": "c:@E@UITableViewStyle"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So16UITableViewStyleV13ApptentiveKitE10apptentiveABvgZ",
- "mangledName": "$sSo16UITableViewStyleV13ApptentiveKitE10apptentiveABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Style",
- "printedName": "UIKit.UITableView.Style",
- "usr": "c:@E@UITableViewStyle"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So16UITableViewStyleV13ApptentiveKitE10apptentiveABvsZ",
- "mangledName": "$sSo16UITableViewStyleV13ApptentiveKitE10apptentiveABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So16UITableViewStyleV13ApptentiveKitE10apptentiveABvMZ",
- "mangledName": "$sSo16UITableViewStyleV13ApptentiveKitE10apptentiveABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- }
- ],
- "declKind": "Enum",
- "usr": "c:@E@UITableViewStyle",
- "moduleName": "UIKit",
- "objc_name": "UITableViewStyle",
- "declAttributes": [
- "SynthesizedProtocol",
- "ObjC",
- "SynthesizedProtocol",
- "Sendable",
- "NonSendable",
- "Dynamic"
- ],
- "isFromExtension": true,
- "enumRawTypeName": "Int",
- "isExternal": true,
- "conformances": [
- {
- "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": "Sendable",
- "printedName": "Sendable",
- "usr": "s:s8SendableP",
- "mangledName": "$ss8SendableP"
- },
- {
- "kind": "Conformance",
- "name": "Equatable",
- "printedName": "Equatable",
- "usr": "s:SQ",
- "mangledName": "$sSQ"
- },
- {
- "kind": "Conformance",
- "name": "Hashable",
- "printedName": "Hashable",
- "usr": "s:SH",
- "mangledName": "$sSH"
- }
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "UIModalPresentationStyle",
- "printedName": "UIModalPresentationStyle",
- "children": [
- {
- "kind": "Var",
- "name": "apptentive",
- "printedName": "apptentive",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIModalPresentationStyle",
- "printedName": "UIKit.UIModalPresentationStyle",
- "usr": "c:@E@UIModalPresentationStyle"
- }
- ],
- "declKind": "Var",
- "usr": "s:So24UIModalPresentationStyleV13ApptentiveKitE10apptentiveABvpZ",
- "mangledName": "$sSo24UIModalPresentationStyleV13ApptentiveKitE10apptentiveABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIModalPresentationStyle",
- "printedName": "UIKit.UIModalPresentationStyle",
- "usr": "c:@E@UIModalPresentationStyle"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So24UIModalPresentationStyleV13ApptentiveKitE10apptentiveABvgZ",
- "mangledName": "$sSo24UIModalPresentationStyleV13ApptentiveKitE10apptentiveABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIModalPresentationStyle",
- "printedName": "UIKit.UIModalPresentationStyle",
- "usr": "c:@E@UIModalPresentationStyle"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So24UIModalPresentationStyleV13ApptentiveKitE10apptentiveABvsZ",
- "mangledName": "$sSo24UIModalPresentationStyleV13ApptentiveKitE10apptentiveABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So24UIModalPresentationStyleV13ApptentiveKitE10apptentiveABvMZ",
- "mangledName": "$sSo24UIModalPresentationStyleV13ApptentiveKitE10apptentiveABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- }
- ],
- "declKind": "Enum",
- "usr": "c:@E@UIModalPresentationStyle",
- "moduleName": "UIKit",
- "objc_name": "UIModalPresentationStyle",
- "declAttributes": [
- "SynthesizedProtocol",
- "ObjC",
- "SynthesizedProtocol",
- "Sendable",
- "NonSendable",
- "Dynamic"
- ],
- "enumRawTypeName": "Int",
- "isExternal": true,
- "conformances": [
- {
- "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": "Sendable",
- "printedName": "Sendable",
- "usr": "s:s8SendableP",
- "mangledName": "$ss8SendableP"
- },
- {
- "kind": "Conformance",
- "name": "Equatable",
- "printedName": "Equatable",
- "usr": "s:SQ",
- "mangledName": "$sSQ"
- },
- {
- "kind": "Conformance",
- "name": "Hashable",
- "printedName": "Hashable",
- "usr": "s:SH",
- "mangledName": "$sSH"
- }
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "UIBarButtonItem",
- "printedName": "UIBarButtonItem",
- "children": [
- {
- "kind": "Var",
- "name": "apptentiveClose",
- "printedName": "apptentiveClose",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIBarButtonItem",
- "printedName": "UIKit.UIBarButtonItem",
- "usr": "c:objc(cs)UIBarButtonItem"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIBarButtonItem(cpy)apptentiveClose",
- "mangledName": "$sSo15UIBarButtonItemC13ApptentiveKitE15apptentiveCloseABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "Custom",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIBarButtonItem",
- "printedName": "UIKit.UIBarButtonItem",
- "usr": "c:objc(cs)UIBarButtonItem"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIBarButtonItem(cm)apptentiveClose",
- "mangledName": "$sSo15UIBarButtonItemC13ApptentiveKitE15apptentiveCloseABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIBarButtonItem",
- "printedName": "UIKit.UIBarButtonItem",
- "usr": "c:objc(cs)UIBarButtonItem"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIBarButtonItem(cm)setApptentiveClose:",
- "mangledName": "$sSo15UIBarButtonItemC13ApptentiveKitE15apptentiveCloseABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So15UIBarButtonItemC13ApptentiveKitE15apptentiveCloseABvMZ",
- "mangledName": "$sSo15UIBarButtonItemC13ApptentiveKitE15apptentiveCloseABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveProfileEdit",
- "printedName": "apptentiveProfileEdit",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIBarButtonItem",
- "printedName": "UIKit.UIBarButtonItem",
- "usr": "c:objc(cs)UIBarButtonItem"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIBarButtonItem(cpy)apptentiveProfileEdit",
- "mangledName": "$sSo15UIBarButtonItemC13ApptentiveKitE21apptentiveProfileEditABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "Custom",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIBarButtonItem",
- "printedName": "UIKit.UIBarButtonItem",
- "usr": "c:objc(cs)UIBarButtonItem"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIBarButtonItem(cm)apptentiveProfileEdit",
- "mangledName": "$sSo15UIBarButtonItemC13ApptentiveKitE21apptentiveProfileEditABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIBarButtonItem",
- "printedName": "UIKit.UIBarButtonItem",
- "usr": "c:objc(cs)UIBarButtonItem"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIBarButtonItem(cm)setApptentiveProfileEdit:",
- "mangledName": "$sSo15UIBarButtonItemC13ApptentiveKitE21apptentiveProfileEditABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So15UIBarButtonItemC13ApptentiveKitE21apptentiveProfileEditABvMZ",
- "mangledName": "$sSo15UIBarButtonItemC13ApptentiveKitE21apptentiveProfileEditABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- }
- ],
- "declKind": "Class",
- "usr": "c:objc(cs)UIBarButtonItem",
- "moduleName": "UIKit",
- "isOpen": true,
- "intro_iOS": "2.0",
- "objc_name": "UIBarButtonItem",
- "declAttributes": [
- "Available",
- "ObjC",
- "NonSendable",
- "Custom",
- "Dynamic"
- ],
- "superclassUsr": "c:objc(cs)UIBarItem",
- "isExternal": true,
- "inheritsConvenienceInitializers": true,
- "superclassNames": [
- "UIKit.UIBarItem",
- "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": "Var",
- "name": "apptentiveMessageAttachmentButton",
- "printedName": "apptentiveMessageAttachmentButton",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "UIKit.UIImage?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIImage",
- "printedName": "UIKit.UIImage",
- "usr": "c:objc(cs)UIImage"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cpy)apptentiveMessageAttachmentButton",
- "mangledName": "$sSo7UIImageC13ApptentiveKitE33apptentiveMessageAttachmentButtonABSgvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "UIKit.UIImage?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIImage",
- "printedName": "UIKit.UIImage",
- "usr": "c:objc(cs)UIImage"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cm)apptentiveMessageAttachmentButton",
- "mangledName": "$sSo7UIImageC13ApptentiveKitE33apptentiveMessageAttachmentButtonABSgvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "UIKit.UIImage?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIImage",
- "printedName": "UIKit.UIImage",
- "usr": "c:objc(cs)UIImage"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cm)setApptentiveMessageAttachmentButton:",
- "mangledName": "$sSo7UIImageC13ApptentiveKitE33apptentiveMessageAttachmentButtonABSgvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So7UIImageC13ApptentiveKitE33apptentiveMessageAttachmentButtonABSgvMZ",
- "mangledName": "$sSo7UIImageC13ApptentiveKitE33apptentiveMessageAttachmentButtonABSgvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveMessageSendButton",
- "printedName": "apptentiveMessageSendButton",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "UIKit.UIImage?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIImage",
- "printedName": "UIKit.UIImage",
- "usr": "c:objc(cs)UIImage"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cpy)apptentiveMessageSendButton",
- "mangledName": "$sSo7UIImageC13ApptentiveKitE27apptentiveMessageSendButtonABSgvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "UIKit.UIImage?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIImage",
- "printedName": "UIKit.UIImage",
- "usr": "c:objc(cs)UIImage"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cm)apptentiveMessageSendButton",
- "mangledName": "$sSo7UIImageC13ApptentiveKitE27apptentiveMessageSendButtonABSgvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "UIKit.UIImage?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIImage",
- "printedName": "UIKit.UIImage",
- "usr": "c:objc(cs)UIImage"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cm)setApptentiveMessageSendButton:",
- "mangledName": "$sSo7UIImageC13ApptentiveKitE27apptentiveMessageSendButtonABSgvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So7UIImageC13ApptentiveKitE27apptentiveMessageSendButtonABSgvMZ",
- "mangledName": "$sSo7UIImageC13ApptentiveKitE27apptentiveMessageSendButtonABSgvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveSentMessageBubble",
- "printedName": "apptentiveSentMessageBubble",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "UIKit.UIImage?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIImage",
- "printedName": "UIKit.UIImage",
- "usr": "c:objc(cs)UIImage"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cpy)apptentiveSentMessageBubble",
- "mangledName": "$sSo7UIImageC13ApptentiveKitE27apptentiveSentMessageBubbleABSgvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "UIKit.UIImage?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIImage",
- "printedName": "UIKit.UIImage",
- "usr": "c:objc(cs)UIImage"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cm)apptentiveSentMessageBubble",
- "mangledName": "$sSo7UIImageC13ApptentiveKitE27apptentiveSentMessageBubbleABSgvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "UIKit.UIImage?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIImage",
- "printedName": "UIKit.UIImage",
- "usr": "c:objc(cs)UIImage"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cm)setApptentiveSentMessageBubble:",
- "mangledName": "$sSo7UIImageC13ApptentiveKitE27apptentiveSentMessageBubbleABSgvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So7UIImageC13ApptentiveKitE27apptentiveSentMessageBubbleABSgvMZ",
- "mangledName": "$sSo7UIImageC13ApptentiveKitE27apptentiveSentMessageBubbleABSgvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveReceivedMessageBubble",
- "printedName": "apptentiveReceivedMessageBubble",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "UIKit.UIImage?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIImage",
- "printedName": "UIKit.UIImage",
- "usr": "c:objc(cs)UIImage"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cpy)apptentiveReceivedMessageBubble",
- "mangledName": "$sSo7UIImageC13ApptentiveKitE31apptentiveReceivedMessageBubbleABSgvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "UIKit.UIImage?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIImage",
- "printedName": "UIKit.UIImage",
- "usr": "c:objc(cs)UIImage"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cm)apptentiveReceivedMessageBubble",
- "mangledName": "$sSo7UIImageC13ApptentiveKitE31apptentiveReceivedMessageBubbleABSgvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "UIKit.UIImage?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIImage",
- "printedName": "UIKit.UIImage",
- "usr": "c:objc(cs)UIImage"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cm)setApptentiveReceivedMessageBubble:",
- "mangledName": "$sSo7UIImageC13ApptentiveKitE31apptentiveReceivedMessageBubbleABSgvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So7UIImageC13ApptentiveKitE31apptentiveReceivedMessageBubbleABSgvMZ",
- "mangledName": "$sSo7UIImageC13ApptentiveKitE31apptentiveReceivedMessageBubbleABSgvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveAttachmentPlaceholder",
- "printedName": "apptentiveAttachmentPlaceholder",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "UIKit.UIImage?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIImage",
- "printedName": "UIKit.UIImage",
- "usr": "c:objc(cs)UIImage"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cpy)apptentiveAttachmentPlaceholder",
- "mangledName": "$sSo7UIImageC13ApptentiveKitE31apptentiveAttachmentPlaceholderABSgvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "UIKit.UIImage?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIImage",
- "printedName": "UIKit.UIImage",
- "usr": "c:objc(cs)UIImage"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cm)apptentiveAttachmentPlaceholder",
- "mangledName": "$sSo7UIImageC13ApptentiveKitE31apptentiveAttachmentPlaceholderABSgvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "UIKit.UIImage?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIImage",
- "printedName": "UIKit.UIImage",
- "usr": "c:objc(cs)UIImage"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cm)setApptentiveAttachmentPlaceholder:",
- "mangledName": "$sSo7UIImageC13ApptentiveKitE31apptentiveAttachmentPlaceholderABSgvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So7UIImageC13ApptentiveKitE31apptentiveAttachmentPlaceholderABSgvMZ",
- "mangledName": "$sSo7UIImageC13ApptentiveKitE31apptentiveAttachmentPlaceholderABSgvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveAttachmentRemoveButton",
- "printedName": "apptentiveAttachmentRemoveButton",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "UIKit.UIImage?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIImage",
- "printedName": "UIKit.UIImage",
- "usr": "c:objc(cs)UIImage"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cpy)apptentiveAttachmentRemoveButton",
- "mangledName": "$sSo7UIImageC13ApptentiveKitE32apptentiveAttachmentRemoveButtonABSgvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "UIKit.UIImage?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIImage",
- "printedName": "UIKit.UIImage",
- "usr": "c:objc(cs)UIImage"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cm)apptentiveAttachmentRemoveButton",
- "mangledName": "$sSo7UIImageC13ApptentiveKitE32apptentiveAttachmentRemoveButtonABSgvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "UIKit.UIImage?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIImage",
- "printedName": "UIKit.UIImage",
- "usr": "c:objc(cs)UIImage"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cm)setApptentiveAttachmentRemoveButton:",
- "mangledName": "$sSo7UIImageC13ApptentiveKitE32apptentiveAttachmentRemoveButtonABSgvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So7UIImageC13ApptentiveKitE32apptentiveAttachmentRemoveButtonABSgvMZ",
- "mangledName": "$sSo7UIImageC13ApptentiveKitE32apptentiveAttachmentRemoveButtonABSgvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveHeaderLogo",
- "printedName": "apptentiveHeaderLogo",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "UIKit.UIImage?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIImage",
- "printedName": "UIKit.UIImage",
- "usr": "c:objc(cs)UIImage"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cpy)apptentiveHeaderLogo",
- "mangledName": "$sSo7UIImageC13ApptentiveKitE20apptentiveHeaderLogoABSgvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "UIKit.UIImage?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIImage",
- "printedName": "UIKit.UIImage",
- "usr": "c:objc(cs)UIImage"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cm)apptentiveHeaderLogo",
- "mangledName": "$sSo7UIImageC13ApptentiveKitE20apptentiveHeaderLogoABSgvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "UIKit.UIImage?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIImage",
- "printedName": "UIKit.UIImage",
- "usr": "c:objc(cs)UIImage"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cm)setApptentiveHeaderLogo:",
- "mangledName": "$sSo7UIImageC13ApptentiveKitE20apptentiveHeaderLogoABSgvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So7UIImageC13ApptentiveKitE20apptentiveHeaderLogoABSgvMZ",
- "mangledName": "$sSo7UIImageC13ApptentiveKitE20apptentiveHeaderLogoABSgvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveRadioButton",
- "printedName": "apptentiveRadioButton",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "UIKit.UIImage?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIImage",
- "printedName": "UIKit.UIImage",
- "usr": "c:objc(cs)UIImage"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cpy)apptentiveRadioButton",
- "mangledName": "$sSo7UIImageC13ApptentiveKitE21apptentiveRadioButtonABSgvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "UIKit.UIImage?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIImage",
- "printedName": "UIKit.UIImage",
- "usr": "c:objc(cs)UIImage"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cm)apptentiveRadioButton",
- "mangledName": "$sSo7UIImageC13ApptentiveKitE21apptentiveRadioButtonABSgvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "UIKit.UIImage?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIImage",
- "printedName": "UIKit.UIImage",
- "usr": "c:objc(cs)UIImage"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cm)setApptentiveRadioButton:",
- "mangledName": "$sSo7UIImageC13ApptentiveKitE21apptentiveRadioButtonABSgvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So7UIImageC13ApptentiveKitE21apptentiveRadioButtonABSgvMZ",
- "mangledName": "$sSo7UIImageC13ApptentiveKitE21apptentiveRadioButtonABSgvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveCheckbox",
- "printedName": "apptentiveCheckbox",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "UIKit.UIImage?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIImage",
- "printedName": "UIKit.UIImage",
- "usr": "c:objc(cs)UIImage"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cpy)apptentiveCheckbox",
- "mangledName": "$sSo7UIImageC13ApptentiveKitE18apptentiveCheckboxABSgvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "UIKit.UIImage?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIImage",
- "printedName": "UIKit.UIImage",
- "usr": "c:objc(cs)UIImage"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cm)apptentiveCheckbox",
- "mangledName": "$sSo7UIImageC13ApptentiveKitE18apptentiveCheckboxABSgvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "UIKit.UIImage?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIImage",
- "printedName": "UIKit.UIImage",
- "usr": "c:objc(cs)UIImage"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cm)setApptentiveCheckbox:",
- "mangledName": "$sSo7UIImageC13ApptentiveKitE18apptentiveCheckboxABSgvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So7UIImageC13ApptentiveKitE18apptentiveCheckboxABSgvMZ",
- "mangledName": "$sSo7UIImageC13ApptentiveKitE18apptentiveCheckboxABSgvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveRadioButtonSelected",
- "printedName": "apptentiveRadioButtonSelected",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "UIKit.UIImage?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIImage",
- "printedName": "UIKit.UIImage",
- "usr": "c:objc(cs)UIImage"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cpy)apptentiveRadioButtonSelected",
- "mangledName": "$sSo7UIImageC13ApptentiveKitE29apptentiveRadioButtonSelectedABSgvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "UIKit.UIImage?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIImage",
- "printedName": "UIKit.UIImage",
- "usr": "c:objc(cs)UIImage"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cm)apptentiveRadioButtonSelected",
- "mangledName": "$sSo7UIImageC13ApptentiveKitE29apptentiveRadioButtonSelectedABSgvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "UIKit.UIImage?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIImage",
- "printedName": "UIKit.UIImage",
- "usr": "c:objc(cs)UIImage"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cm)setApptentiveRadioButtonSelected:",
- "mangledName": "$sSo7UIImageC13ApptentiveKitE29apptentiveRadioButtonSelectedABSgvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So7UIImageC13ApptentiveKitE29apptentiveRadioButtonSelectedABSgvMZ",
- "mangledName": "$sSo7UIImageC13ApptentiveKitE29apptentiveRadioButtonSelectedABSgvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveCheckboxSelected",
- "printedName": "apptentiveCheckboxSelected",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "UIKit.UIImage?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIImage",
- "printedName": "UIKit.UIImage",
- "usr": "c:objc(cs)UIImage"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cpy)apptentiveCheckboxSelected",
- "mangledName": "$sSo7UIImageC13ApptentiveKitE26apptentiveCheckboxSelectedABSgvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "UIKit.UIImage?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIImage",
- "printedName": "UIKit.UIImage",
- "usr": "c:objc(cs)UIImage"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cm)apptentiveCheckboxSelected",
- "mangledName": "$sSo7UIImageC13ApptentiveKitE26apptentiveCheckboxSelectedABSgvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "UIKit.UIImage?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIImage",
- "printedName": "UIKit.UIImage",
- "usr": "c:objc(cs)UIImage"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cm)setApptentiveCheckboxSelected:",
- "mangledName": "$sSo7UIImageC13ApptentiveKitE26apptentiveCheckboxSelectedABSgvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So7UIImageC13ApptentiveKitE26apptentiveCheckboxSelectedABSgvMZ",
- "mangledName": "$sSo7UIImageC13ApptentiveKitE26apptentiveCheckboxSelectedABSgvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- }
- ],
- "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": "UIColor",
- "printedName": "UIColor",
- "children": [
- {
- "kind": "Var",
- "name": "apptentiveMessageCenterTextInputBackground",
- "printedName": "apptentiveMessageCenterTextInputBackground",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveMessageCenterTextInputBackground",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE42apptentiveMessageCenterTextInputBackgroundABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveMessageCenterTextInputBackground",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE42apptentiveMessageCenterTextInputBackgroundABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveMessageCenterTextInputBackground:",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE42apptentiveMessageCenterTextInputBackgroundABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So7UIColorC13ApptentiveKitE42apptentiveMessageCenterTextInputBackgroundABvMZ",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE42apptentiveMessageCenterTextInputBackgroundABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveMessageCenterTextInputPlaceholder",
- "printedName": "apptentiveMessageCenterTextInputPlaceholder",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveMessageCenterTextInputPlaceholder",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE43apptentiveMessageCenterTextInputPlaceholderABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveMessageCenterTextInputPlaceholder",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE43apptentiveMessageCenterTextInputPlaceholderABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveMessageCenterTextInputPlaceholder:",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE43apptentiveMessageCenterTextInputPlaceholderABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So7UIColorC13ApptentiveKitE43apptentiveMessageCenterTextInputPlaceholderABvMZ",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE43apptentiveMessageCenterTextInputPlaceholderABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveMessageTextViewPlaceholder",
- "printedName": "apptentiveMessageTextViewPlaceholder",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveMessageTextViewPlaceholder",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE36apptentiveMessageTextViewPlaceholderABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "deprecated": true,
- "declAttributes": [
- "Final",
- "AccessControl",
- "ObjC",
- "Available",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveMessageTextViewPlaceholder",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE36apptentiveMessageTextViewPlaceholderABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveMessageTextViewPlaceholder:",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE36apptentiveMessageTextViewPlaceholderABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So7UIColorC13ApptentiveKitE36apptentiveMessageTextViewPlaceholderABvMZ",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE36apptentiveMessageTextViewPlaceholderABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "deprecated": true,
- "implicit": true,
- "declAttributes": [
- "Available",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveMessageCenterTextInput",
- "printedName": "apptentiveMessageCenterTextInput",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveMessageCenterTextInput",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE32apptentiveMessageCenterTextInputABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveMessageCenterTextInput",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE32apptentiveMessageCenterTextInputABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveMessageCenterTextInput:",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE32apptentiveMessageCenterTextInputABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So7UIColorC13ApptentiveKitE32apptentiveMessageCenterTextInputABvMZ",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE32apptentiveMessageCenterTextInputABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentivetextInputTint",
- "printedName": "apptentivetextInputTint",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentivetextInputTint",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE23apptentivetextInputTintABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentivetextInputTint",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE23apptentivetextInputTintABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentivetextInputTint:",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE23apptentivetextInputTintABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So7UIColorC13ApptentiveKitE23apptentivetextInputTintABvMZ",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE23apptentivetextInputTintABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveMessageCenterTextInputBorder",
- "printedName": "apptentiveMessageCenterTextInputBorder",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveMessageCenterTextInputBorder",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE38apptentiveMessageCenterTextInputBorderABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveMessageCenterTextInputBorder",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE38apptentiveMessageCenterTextInputBorderABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveMessageCenterTextInputBorder:",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE38apptentiveMessageCenterTextInputBorderABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So7UIColorC13ApptentiveKitE38apptentiveMessageCenterTextInputBorderABvMZ",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE38apptentiveMessageCenterTextInputBorderABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveMessageCenterTextViewBorder",
- "printedName": "apptentiveMessageCenterTextViewBorder",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveMessageCenterTextViewBorder",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE37apptentiveMessageCenterTextViewBorderABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "deprecated": true,
- "declAttributes": [
- "Final",
- "AccessControl",
- "ObjC",
- "Available",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveMessageCenterTextViewBorder",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE37apptentiveMessageCenterTextViewBorderABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveMessageCenterTextViewBorder:",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE37apptentiveMessageCenterTextViewBorderABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So7UIColorC13ApptentiveKitE37apptentiveMessageCenterTextViewBorderABvMZ",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE37apptentiveMessageCenterTextViewBorderABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "deprecated": true,
- "implicit": true,
- "declAttributes": [
- "Available",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveMessageCenterAttachmentButton",
- "printedName": "apptentiveMessageCenterAttachmentButton",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveMessageCenterAttachmentButton",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE39apptentiveMessageCenterAttachmentButtonABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveMessageCenterAttachmentButton",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE39apptentiveMessageCenterAttachmentButtonABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveMessageCenterAttachmentButton:",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE39apptentiveMessageCenterAttachmentButtonABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So7UIColorC13ApptentiveKitE39apptentiveMessageCenterAttachmentButtonABvMZ",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE39apptentiveMessageCenterAttachmentButtonABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveMessageTextInputPlaceholder",
- "printedName": "apptentiveMessageTextInputPlaceholder",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveMessageTextInputPlaceholder",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE37apptentiveMessageTextInputPlaceholderABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveMessageTextInputPlaceholder",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE37apptentiveMessageTextInputPlaceholderABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveMessageTextInputPlaceholder:",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE37apptentiveMessageTextInputPlaceholderABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So7UIColorC13ApptentiveKitE37apptentiveMessageTextInputPlaceholderABvMZ",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE37apptentiveMessageTextInputPlaceholderABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveMessageCenterStatus",
- "printedName": "apptentiveMessageCenterStatus",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveMessageCenterStatus",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE29apptentiveMessageCenterStatusABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveMessageCenterStatus",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE29apptentiveMessageCenterStatusABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveMessageCenterStatus:",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE29apptentiveMessageCenterStatusABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So7UIColorC13ApptentiveKitE29apptentiveMessageCenterStatusABvMZ",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE29apptentiveMessageCenterStatusABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveMessageCenterGreetingBody",
- "printedName": "apptentiveMessageCenterGreetingBody",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveMessageCenterGreetingBody",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE35apptentiveMessageCenterGreetingBodyABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveMessageCenterGreetingBody",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE35apptentiveMessageCenterGreetingBodyABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveMessageCenterGreetingBody:",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE35apptentiveMessageCenterGreetingBodyABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So7UIColorC13ApptentiveKitE35apptentiveMessageCenterGreetingBodyABvMZ",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE35apptentiveMessageCenterGreetingBodyABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveMessageCenterGreetingTitle",
- "printedName": "apptentiveMessageCenterGreetingTitle",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveMessageCenterGreetingTitle",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE36apptentiveMessageCenterGreetingTitleABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveMessageCenterGreetingTitle",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE36apptentiveMessageCenterGreetingTitleABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveMessageCenterGreetingTitle:",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE36apptentiveMessageCenterGreetingTitleABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So7UIColorC13ApptentiveKitE36apptentiveMessageCenterGreetingTitleABvMZ",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE36apptentiveMessageCenterGreetingTitleABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveMessageBubbleInbound",
- "printedName": "apptentiveMessageBubbleInbound",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveMessageBubbleInbound",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE30apptentiveMessageBubbleInboundABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveMessageBubbleInbound",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE30apptentiveMessageBubbleInboundABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveMessageBubbleInbound:",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE30apptentiveMessageBubbleInboundABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So7UIColorC13ApptentiveKitE30apptentiveMessageBubbleInboundABvMZ",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE30apptentiveMessageBubbleInboundABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveMessageBubbleOutbound",
- "printedName": "apptentiveMessageBubbleOutbound",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveMessageBubbleOutbound",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE31apptentiveMessageBubbleOutboundABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveMessageBubbleOutbound",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE31apptentiveMessageBubbleOutboundABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveMessageBubbleOutbound:",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE31apptentiveMessageBubbleOutboundABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So7UIColorC13ApptentiveKitE31apptentiveMessageBubbleOutboundABvMZ",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE31apptentiveMessageBubbleOutboundABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveMessageLabelInbound",
- "printedName": "apptentiveMessageLabelInbound",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveMessageLabelInbound",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE29apptentiveMessageLabelInboundABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveMessageLabelInbound",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE29apptentiveMessageLabelInboundABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveMessageLabelInbound:",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE29apptentiveMessageLabelInboundABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So7UIColorC13ApptentiveKitE29apptentiveMessageLabelInboundABvMZ",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE29apptentiveMessageLabelInboundABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveMessageLabelOutbound",
- "printedName": "apptentiveMessageLabelOutbound",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveMessageLabelOutbound",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE30apptentiveMessageLabelOutboundABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveMessageLabelOutbound",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE30apptentiveMessageLabelOutboundABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveMessageLabelOutbound:",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE30apptentiveMessageLabelOutboundABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So7UIColorC13ApptentiveKitE30apptentiveMessageLabelOutboundABvMZ",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE30apptentiveMessageLabelOutboundABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveQuestionLabel",
- "printedName": "apptentiveQuestionLabel",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveQuestionLabel",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE23apptentiveQuestionLabelABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveQuestionLabel",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE23apptentiveQuestionLabelABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveQuestionLabel:",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE23apptentiveQuestionLabelABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So7UIColorC13ApptentiveKitE23apptentiveQuestionLabelABvMZ",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE23apptentiveQuestionLabelABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveInstructionsLabel",
- "printedName": "apptentiveInstructionsLabel",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveInstructionsLabel",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE27apptentiveInstructionsLabelABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveInstructionsLabel",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE27apptentiveInstructionsLabelABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveInstructionsLabel:",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE27apptentiveInstructionsLabelABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So7UIColorC13ApptentiveKitE27apptentiveInstructionsLabelABvMZ",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE27apptentiveInstructionsLabelABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveChoiceLabel",
- "printedName": "apptentiveChoiceLabel",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveChoiceLabel",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE21apptentiveChoiceLabelABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveChoiceLabel",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE21apptentiveChoiceLabelABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveChoiceLabel:",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE21apptentiveChoiceLabelABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So7UIColorC13ApptentiveKitE21apptentiveChoiceLabelABvMZ",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE21apptentiveChoiceLabelABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveError",
- "printedName": "apptentiveError",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveError",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE15apptentiveErrorABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveError",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE15apptentiveErrorABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveError:",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE15apptentiveErrorABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So7UIColorC13ApptentiveKitE15apptentiveErrorABvMZ",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE15apptentiveErrorABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveSecondaryLabel",
- "printedName": "apptentiveSecondaryLabel",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveSecondaryLabel",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE24apptentiveSecondaryLabelABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveSecondaryLabel",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE24apptentiveSecondaryLabelABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveSecondaryLabel:",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE24apptentiveSecondaryLabelABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So7UIColorC13ApptentiveKitE24apptentiveSecondaryLabelABvMZ",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE24apptentiveSecondaryLabelABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveRangeControlBorder",
- "printedName": "apptentiveRangeControlBorder",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveRangeControlBorder",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE28apptentiveRangeControlBorderABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveRangeControlBorder",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE28apptentiveRangeControlBorderABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveRangeControlBorder:",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE28apptentiveRangeControlBorderABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So7UIColorC13ApptentiveKitE28apptentiveRangeControlBorderABvMZ",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE28apptentiveRangeControlBorderABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveSurveyIntroduction",
- "printedName": "apptentiveSurveyIntroduction",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveSurveyIntroduction",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE28apptentiveSurveyIntroductionABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveSurveyIntroduction",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE28apptentiveSurveyIntroductionABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveSurveyIntroduction:",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE28apptentiveSurveyIntroductionABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So7UIColorC13ApptentiveKitE28apptentiveSurveyIntroductionABvMZ",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE28apptentiveSurveyIntroductionABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveTextInputBorder",
- "printedName": "apptentiveTextInputBorder",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveTextInputBorder",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE25apptentiveTextInputBorderABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveTextInputBorder",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE25apptentiveTextInputBorderABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveTextInputBorder:",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE25apptentiveTextInputBorderABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So7UIColorC13ApptentiveKitE25apptentiveTextInputBorderABvMZ",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE25apptentiveTextInputBorderABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveTextInputBackground",
- "printedName": "apptentiveTextInputBackground",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveTextInputBackground",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE29apptentiveTextInputBackgroundABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveTextInputBackground",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE29apptentiveTextInputBackgroundABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveTextInputBackground:",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE29apptentiveTextInputBackgroundABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So7UIColorC13ApptentiveKitE29apptentiveTextInputBackgroundABvMZ",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE29apptentiveTextInputBackgroundABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveTextInput",
- "printedName": "apptentiveTextInput",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveTextInput",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE19apptentiveTextInputABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveTextInput",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE19apptentiveTextInputABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveTextInput:",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE19apptentiveTextInputABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So7UIColorC13ApptentiveKitE19apptentiveTextInputABvMZ",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE19apptentiveTextInputABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveTextInputPlaceholder",
- "printedName": "apptentiveTextInputPlaceholder",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveTextInputPlaceholder",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE30apptentiveTextInputPlaceholderABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveTextInputPlaceholder",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE30apptentiveTextInputPlaceholderABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveTextInputPlaceholder:",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE30apptentiveTextInputPlaceholderABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So7UIColorC13ApptentiveKitE30apptentiveTextInputPlaceholderABvMZ",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE30apptentiveTextInputPlaceholderABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveMinMaxLabel",
- "printedName": "apptentiveMinMaxLabel",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveMinMaxLabel",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE21apptentiveMinMaxLabelABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveMinMaxLabel",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE21apptentiveMinMaxLabelABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveMinMaxLabel:",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE21apptentiveMinMaxLabelABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So7UIColorC13ApptentiveKitE21apptentiveMinMaxLabelABvMZ",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE21apptentiveMinMaxLabelABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveGroupedBackground",
- "printedName": "apptentiveGroupedBackground",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveGroupedBackground",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE27apptentiveGroupedBackgroundABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveGroupedBackground",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE27apptentiveGroupedBackgroundABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveGroupedBackground:",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE27apptentiveGroupedBackgroundABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So7UIColorC13ApptentiveKitE27apptentiveGroupedBackgroundABvMZ",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE27apptentiveGroupedBackgroundABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveSecondaryGroupedBackground",
- "printedName": "apptentiveSecondaryGroupedBackground",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveSecondaryGroupedBackground",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE36apptentiveSecondaryGroupedBackgroundABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveSecondaryGroupedBackground",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE36apptentiveSecondaryGroupedBackgroundABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveSecondaryGroupedBackground:",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE36apptentiveSecondaryGroupedBackgroundABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So7UIColorC13ApptentiveKitE36apptentiveSecondaryGroupedBackgroundABvMZ",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE36apptentiveSecondaryGroupedBackgroundABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveSeparator",
- "printedName": "apptentiveSeparator",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveSeparator",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE19apptentiveSeparatorABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveSeparator",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE19apptentiveSeparatorABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveSeparator:",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE19apptentiveSeparatorABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So7UIColorC13ApptentiveKitE19apptentiveSeparatorABvMZ",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE19apptentiveSeparatorABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveImageSelected",
- "printedName": "apptentiveImageSelected",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveImageSelected",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE23apptentiveImageSelectedABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveImageSelected",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE23apptentiveImageSelectedABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveImageSelected:",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE23apptentiveImageSelectedABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So7UIColorC13ApptentiveKitE23apptentiveImageSelectedABvMZ",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE23apptentiveImageSelectedABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveImageNotSelected",
- "printedName": "apptentiveImageNotSelected",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveImageNotSelected",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE26apptentiveImageNotSelectedABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveImageNotSelected",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE26apptentiveImageNotSelectedABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveImageNotSelected:",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE26apptentiveImageNotSelectedABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So7UIColorC13ApptentiveKitE26apptentiveImageNotSelectedABvMZ",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE26apptentiveImageNotSelectedABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveSubmitButton",
- "printedName": "apptentiveSubmitButton",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveSubmitButton",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE22apptentiveSubmitButtonABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveSubmitButton",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE22apptentiveSubmitButtonABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveSubmitButton:",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE22apptentiveSubmitButtonABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So7UIColorC13ApptentiveKitE22apptentiveSubmitButtonABvMZ",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE22apptentiveSubmitButtonABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveBranchedSurveyFooter",
- "printedName": "apptentiveBranchedSurveyFooter",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveBranchedSurveyFooter",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE30apptentiveBranchedSurveyFooterABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveBranchedSurveyFooter",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE30apptentiveBranchedSurveyFooterABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveBranchedSurveyFooter:",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE30apptentiveBranchedSurveyFooterABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So7UIColorC13ApptentiveKitE30apptentiveBranchedSurveyFooterABvMZ",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE30apptentiveBranchedSurveyFooterABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveSubmitLabel",
- "printedName": "apptentiveSubmitLabel",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Var",
- "usr": "s:So7UIColorC13ApptentiveKitE21apptentiveSubmitLabelABvpZ",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE21apptentiveSubmitLabelABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "deprecated": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "Available",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So7UIColorC13ApptentiveKitE21apptentiveSubmitLabelABvgZ",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE21apptentiveSubmitLabelABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So7UIColorC13ApptentiveKitE21apptentiveSubmitLabelABvsZ",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE21apptentiveSubmitLabelABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So7UIColorC13ApptentiveKitE21apptentiveSubmitLabelABvMZ",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE21apptentiveSubmitLabelABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "deprecated": true,
- "implicit": true,
- "declAttributes": [
- "Available",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveSubmitStatusLabel",
- "printedName": "apptentiveSubmitStatusLabel",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveSubmitStatusLabel",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE27apptentiveSubmitStatusLabelABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveSubmitStatusLabel",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE27apptentiveSubmitStatusLabelABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveSubmitStatusLabel:",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE27apptentiveSubmitStatusLabelABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So7UIColorC13ApptentiveKitE27apptentiveSubmitStatusLabelABvMZ",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE27apptentiveSubmitStatusLabelABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveTermsOfServiceLabel",
- "printedName": "apptentiveTermsOfServiceLabel",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveTermsOfServiceLabel",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE29apptentiveTermsOfServiceLabelABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveTermsOfServiceLabel",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE29apptentiveTermsOfServiceLabelABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveTermsOfServiceLabel:",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE29apptentiveTermsOfServiceLabelABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So7UIColorC13ApptentiveKitE29apptentiveTermsOfServiceLabelABvMZ",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE29apptentiveTermsOfServiceLabelABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveSubmitButtonTitle",
- "printedName": "apptentiveSubmitButtonTitle",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveSubmitButtonTitle",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE27apptentiveSubmitButtonTitleABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveSubmitButtonTitle",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE27apptentiveSubmitButtonTitleABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveSubmitButtonTitle:",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE27apptentiveSubmitButtonTitleABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So7UIColorC13ApptentiveKitE27apptentiveSubmitButtonTitleABvMZ",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE27apptentiveSubmitButtonTitleABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveSubmitButtonBorder",
- "printedName": "apptentiveSubmitButtonBorder",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveSubmitButtonBorder",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE28apptentiveSubmitButtonBorderABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveSubmitButtonBorder",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE28apptentiveSubmitButtonBorderABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveSubmitButtonBorder:",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE28apptentiveSubmitButtonBorderABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So7UIColorC13ApptentiveKitE28apptentiveSubmitButtonBorderABvMZ",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE28apptentiveSubmitButtonBorderABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveQuestionSeparator",
- "printedName": "apptentiveQuestionSeparator",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveQuestionSeparator",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE27apptentiveQuestionSeparatorABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveQuestionSeparator",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE27apptentiveQuestionSeparatorABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveQuestionSeparator:",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE27apptentiveQuestionSeparatorABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So7UIColorC13ApptentiveKitE27apptentiveQuestionSeparatorABvMZ",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE27apptentiveQuestionSeparatorABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveUnselectedSurveyIndicatorSegment",
- "printedName": "apptentiveUnselectedSurveyIndicatorSegment",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Var",
- "usr": "s:So7UIColorC13ApptentiveKitE42apptentiveUnselectedSurveyIndicatorSegmentABvpZ",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE42apptentiveUnselectedSurveyIndicatorSegmentABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So7UIColorC13ApptentiveKitE42apptentiveUnselectedSurveyIndicatorSegmentABvgZ",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE42apptentiveUnselectedSurveyIndicatorSegmentABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So7UIColorC13ApptentiveKitE42apptentiveUnselectedSurveyIndicatorSegmentABvsZ",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE42apptentiveUnselectedSurveyIndicatorSegmentABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So7UIColorC13ApptentiveKitE42apptentiveUnselectedSurveyIndicatorSegmentABvMZ",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE42apptentiveUnselectedSurveyIndicatorSegmentABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveSelectedSurveyIndicatorSegment",
- "printedName": "apptentiveSelectedSurveyIndicatorSegment",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Var",
- "usr": "s:So7UIColorC13ApptentiveKitE40apptentiveSelectedSurveyIndicatorSegmentABvpZ",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE40apptentiveSelectedSurveyIndicatorSegmentABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So7UIColorC13ApptentiveKitE40apptentiveSelectedSurveyIndicatorSegmentABvgZ",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE40apptentiveSelectedSurveyIndicatorSegmentABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So7UIColorC13ApptentiveKitE40apptentiveSelectedSurveyIndicatorSegmentABvsZ",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE40apptentiveSelectedSurveyIndicatorSegmentABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So7UIColorC13ApptentiveKitE40apptentiveSelectedSurveyIndicatorSegmentABvMZ",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE40apptentiveSelectedSurveyIndicatorSegmentABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveMessageCenterBackground",
- "printedName": "apptentiveMessageCenterBackground",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveMessageCenterBackground",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE33apptentiveMessageCenterBackgroundABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveMessageCenterBackground",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE33apptentiveMessageCenterBackgroundABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveMessageCenterBackground:",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE33apptentiveMessageCenterBackgroundABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So7UIColorC13ApptentiveKitE33apptentiveMessageCenterBackgroundABvMZ",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE33apptentiveMessageCenterBackgroundABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveMessageCenterAttachmentDeleteButton",
- "printedName": "apptentiveMessageCenterAttachmentDeleteButton",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveMessageCenterAttachmentDeleteButton",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE45apptentiveMessageCenterAttachmentDeleteButtonABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveMessageCenterAttachmentDeleteButton",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE45apptentiveMessageCenterAttachmentDeleteButtonABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveMessageCenterAttachmentDeleteButton:",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE45apptentiveMessageCenterAttachmentDeleteButtonABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So7UIColorC13ApptentiveKitE45apptentiveMessageCenterAttachmentDeleteButtonABvMZ",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE45apptentiveMessageCenterAttachmentDeleteButtonABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveMessageCenterComposeBoxBackground",
- "printedName": "apptentiveMessageCenterComposeBoxBackground",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveMessageCenterComposeBoxBackground",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE43apptentiveMessageCenterComposeBoxBackgroundABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveMessageCenterComposeBoxBackground",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE43apptentiveMessageCenterComposeBoxBackgroundABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveMessageCenterComposeBoxBackground:",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE43apptentiveMessageCenterComposeBoxBackgroundABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So7UIColorC13ApptentiveKitE43apptentiveMessageCenterComposeBoxBackgroundABvMZ",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE43apptentiveMessageCenterComposeBoxBackgroundABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveMessageCenterComposeBoxSeparator",
- "printedName": "apptentiveMessageCenterComposeBoxSeparator",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveMessageCenterComposeBoxSeparator",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE42apptentiveMessageCenterComposeBoxSeparatorABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveMessageCenterComposeBoxSeparator",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE42apptentiveMessageCenterComposeBoxSeparatorABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveMessageCenterComposeBoxSeparator:",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE42apptentiveMessageCenterComposeBoxSeparatorABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So7UIColorC13ApptentiveKitE42apptentiveMessageCenterComposeBoxSeparatorABvMZ",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE42apptentiveMessageCenterComposeBoxSeparatorABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveTextInputBorderSelected",
- "printedName": "apptentiveTextInputBorderSelected",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveTextInputBorderSelected",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE33apptentiveTextInputBorderSelectedABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveTextInputBorderSelected",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE33apptentiveTextInputBorderSelectedABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveTextInputBorderSelected:",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE33apptentiveTextInputBorderSelectedABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So7UIColorC13ApptentiveKitE33apptentiveTextInputBorderSelectedABvMZ",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE33apptentiveTextInputBorderSelectedABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveDisclaimerLabel",
- "printedName": "apptentiveDisclaimerLabel",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveDisclaimerLabel",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE25apptentiveDisclaimerLabelABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveDisclaimerLabel",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE25apptentiveDisclaimerLabelABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveDisclaimerLabel:",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE25apptentiveDisclaimerLabelABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So7UIColorC13ApptentiveKitE25apptentiveDisclaimerLabelABvMZ",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE25apptentiveDisclaimerLabelABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- }
- ],
- "declKind": "Class",
- "usr": "c:objc(cs)UIColor",
- "moduleName": "UIKit",
- "isOpen": true,
- "intro_iOS": "2.0",
- "objc_name": "UIColor",
- "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": "_ExpressibleByColorLiteral",
- "printedName": "_ExpressibleByColorLiteral",
- "usr": "s:s26_ExpressibleByColorLiteralP",
- "mangledName": "$ss26_ExpressibleByColorLiteralP"
- }
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "UIFont",
- "printedName": "UIFont",
- "children": [
- {
- "kind": "Var",
- "name": "apptentiveMessageCenterTextInputPlaceholder",
- "printedName": "apptentiveMessageCenterTextInputPlaceholder",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cpy)apptentiveMessageCenterTextInputPlaceholder",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE43apptentiveMessageCenterTextInputPlaceholderABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)apptentiveMessageCenterTextInputPlaceholder",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE43apptentiveMessageCenterTextInputPlaceholderABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)setApptentiveMessageCenterTextInputPlaceholder:",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE43apptentiveMessageCenterTextInputPlaceholderABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So6UIFontC13ApptentiveKitE43apptentiveMessageCenterTextInputPlaceholderABvMZ",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE43apptentiveMessageCenterTextInputPlaceholderABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveMessageCenterTextInput",
- "printedName": "apptentiveMessageCenterTextInput",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cpy)apptentiveMessageCenterTextInput",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE32apptentiveMessageCenterTextInputABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)apptentiveMessageCenterTextInput",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE32apptentiveMessageCenterTextInputABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)setApptentiveMessageCenterTextInput:",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE32apptentiveMessageCenterTextInputABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So6UIFontC13ApptentiveKitE32apptentiveMessageCenterTextInputABvMZ",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE32apptentiveMessageCenterTextInputABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveTextInputPlaceholder",
- "printedName": "apptentiveTextInputPlaceholder",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cpy)apptentiveTextInputPlaceholder",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE30apptentiveTextInputPlaceholderABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)apptentiveTextInputPlaceholder",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE30apptentiveTextInputPlaceholderABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)setApptentiveTextInputPlaceholder:",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE30apptentiveTextInputPlaceholderABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So6UIFontC13ApptentiveKitE30apptentiveTextInputPlaceholderABvMZ",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE30apptentiveTextInputPlaceholderABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveMessageCenterStatus",
- "printedName": "apptentiveMessageCenterStatus",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cpy)apptentiveMessageCenterStatus",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE29apptentiveMessageCenterStatusABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)apptentiveMessageCenterStatus",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE29apptentiveMessageCenterStatusABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)setApptentiveMessageCenterStatus:",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE29apptentiveMessageCenterStatusABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So6UIFontC13ApptentiveKitE29apptentiveMessageCenterStatusABvMZ",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE29apptentiveMessageCenterStatusABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveMessageCenterGreetingTitle",
- "printedName": "apptentiveMessageCenterGreetingTitle",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cpy)apptentiveMessageCenterGreetingTitle",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE36apptentiveMessageCenterGreetingTitleABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)apptentiveMessageCenterGreetingTitle",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE36apptentiveMessageCenterGreetingTitleABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)setApptentiveMessageCenterGreetingTitle:",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE36apptentiveMessageCenterGreetingTitleABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So6UIFontC13ApptentiveKitE36apptentiveMessageCenterGreetingTitleABvMZ",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE36apptentiveMessageCenterGreetingTitleABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveMessageCenterGreetingBody",
- "printedName": "apptentiveMessageCenterGreetingBody",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cpy)apptentiveMessageCenterGreetingBody",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE35apptentiveMessageCenterGreetingBodyABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)apptentiveMessageCenterGreetingBody",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE35apptentiveMessageCenterGreetingBodyABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)setApptentiveMessageCenterGreetingBody:",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE35apptentiveMessageCenterGreetingBodyABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So6UIFontC13ApptentiveKitE35apptentiveMessageCenterGreetingBodyABvMZ",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE35apptentiveMessageCenterGreetingBodyABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveMessageCenterAttachmentLabel",
- "printedName": "apptentiveMessageCenterAttachmentLabel",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cpy)apptentiveMessageCenterAttachmentLabel",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE38apptentiveMessageCenterAttachmentLabelABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)apptentiveMessageCenterAttachmentLabel",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE38apptentiveMessageCenterAttachmentLabelABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)setApptentiveMessageCenterAttachmentLabel:",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE38apptentiveMessageCenterAttachmentLabelABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So6UIFontC13ApptentiveKitE38apptentiveMessageCenterAttachmentLabelABvMZ",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE38apptentiveMessageCenterAttachmentLabelABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveQuestionLabel",
- "printedName": "apptentiveQuestionLabel",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cpy)apptentiveQuestionLabel",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE23apptentiveQuestionLabelABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)apptentiveQuestionLabel",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE23apptentiveQuestionLabelABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)setApptentiveQuestionLabel:",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE23apptentiveQuestionLabelABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So6UIFontC13ApptentiveKitE23apptentiveQuestionLabelABvMZ",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE23apptentiveQuestionLabelABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveTermsOfServiceLabel",
- "printedName": "apptentiveTermsOfServiceLabel",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cpy)apptentiveTermsOfServiceLabel",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE29apptentiveTermsOfServiceLabelABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)apptentiveTermsOfServiceLabel",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE29apptentiveTermsOfServiceLabelABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)setApptentiveTermsOfServiceLabel:",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE29apptentiveTermsOfServiceLabelABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So6UIFontC13ApptentiveKitE29apptentiveTermsOfServiceLabelABvMZ",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE29apptentiveTermsOfServiceLabelABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveChoiceLabel",
- "printedName": "apptentiveChoiceLabel",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cpy)apptentiveChoiceLabel",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE21apptentiveChoiceLabelABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)apptentiveChoiceLabel",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE21apptentiveChoiceLabelABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)setApptentiveChoiceLabel:",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE21apptentiveChoiceLabelABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So6UIFontC13ApptentiveKitE21apptentiveChoiceLabelABvMZ",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE21apptentiveChoiceLabelABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveMessageLabel",
- "printedName": "apptentiveMessageLabel",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cpy)apptentiveMessageLabel",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE22apptentiveMessageLabelABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)apptentiveMessageLabel",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE22apptentiveMessageLabelABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)setApptentiveMessageLabel:",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE22apptentiveMessageLabelABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So6UIFontC13ApptentiveKitE22apptentiveMessageLabelABvMZ",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE22apptentiveMessageLabelABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveMinMaxLabel",
- "printedName": "apptentiveMinMaxLabel",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cpy)apptentiveMinMaxLabel",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE21apptentiveMinMaxLabelABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)apptentiveMinMaxLabel",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE21apptentiveMinMaxLabelABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)setApptentiveMinMaxLabel:",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE21apptentiveMinMaxLabelABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So6UIFontC13ApptentiveKitE21apptentiveMinMaxLabelABvMZ",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE21apptentiveMinMaxLabelABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveSenderLabel",
- "printedName": "apptentiveSenderLabel",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cpy)apptentiveSenderLabel",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE21apptentiveSenderLabelABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)apptentiveSenderLabel",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE21apptentiveSenderLabelABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)setApptentiveSenderLabel:",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE21apptentiveSenderLabelABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So6UIFontC13ApptentiveKitE21apptentiveSenderLabelABvMZ",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE21apptentiveSenderLabelABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveMessageDateLabel",
- "printedName": "apptentiveMessageDateLabel",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cpy)apptentiveMessageDateLabel",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE26apptentiveMessageDateLabelABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)apptentiveMessageDateLabel",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE26apptentiveMessageDateLabelABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)setApptentiveMessageDateLabel:",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE26apptentiveMessageDateLabelABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So6UIFontC13ApptentiveKitE26apptentiveMessageDateLabelABvMZ",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE26apptentiveMessageDateLabelABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveInstructionsLabel",
- "printedName": "apptentiveInstructionsLabel",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cpy)apptentiveInstructionsLabel",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE27apptentiveInstructionsLabelABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)apptentiveInstructionsLabel",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE27apptentiveInstructionsLabelABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)setApptentiveInstructionsLabel:",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE27apptentiveInstructionsLabelABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So6UIFontC13ApptentiveKitE27apptentiveInstructionsLabelABvMZ",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE27apptentiveInstructionsLabelABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveSurveyIntroductionLabel",
- "printedName": "apptentiveSurveyIntroductionLabel",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cpy)apptentiveSurveyIntroductionLabel",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE33apptentiveSurveyIntroductionLabelABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)apptentiveSurveyIntroductionLabel",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE33apptentiveSurveyIntroductionLabelABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)setApptentiveSurveyIntroductionLabel:",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE33apptentiveSurveyIntroductionLabelABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So6UIFontC13ApptentiveKitE33apptentiveSurveyIntroductionLabelABvMZ",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE33apptentiveSurveyIntroductionLabelABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveSubmitLabel",
- "printedName": "apptentiveSubmitLabel",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Var",
- "usr": "s:So6UIFontC13ApptentiveKitE21apptentiveSubmitLabelABvpZ",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE21apptentiveSubmitLabelABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "deprecated": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "Available",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So6UIFontC13ApptentiveKitE21apptentiveSubmitLabelABvgZ",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE21apptentiveSubmitLabelABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So6UIFontC13ApptentiveKitE21apptentiveSubmitLabelABvsZ",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE21apptentiveSubmitLabelABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So6UIFontC13ApptentiveKitE21apptentiveSubmitLabelABvMZ",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE21apptentiveSubmitLabelABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "deprecated": true,
- "implicit": true,
- "declAttributes": [
- "Available",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveSubmitStatusLabel",
- "printedName": "apptentiveSubmitStatusLabel",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cpy)apptentiveSubmitStatusLabel",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE27apptentiveSubmitStatusLabelABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)apptentiveSubmitStatusLabel",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE27apptentiveSubmitStatusLabelABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)setApptentiveSubmitStatusLabel:",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE27apptentiveSubmitStatusLabelABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So6UIFontC13ApptentiveKitE27apptentiveSubmitStatusLabelABvMZ",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE27apptentiveSubmitStatusLabelABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveDisclaimerLabel",
- "printedName": "apptentiveDisclaimerLabel",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cpy)apptentiveDisclaimerLabel",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE25apptentiveDisclaimerLabelABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)apptentiveDisclaimerLabel",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE25apptentiveDisclaimerLabelABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)setApptentiveDisclaimerLabel:",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE25apptentiveDisclaimerLabelABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So6UIFontC13ApptentiveKitE25apptentiveDisclaimerLabelABvMZ",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE25apptentiveDisclaimerLabelABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveSubmitButtonTitle",
- "printedName": "apptentiveSubmitButtonTitle",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cpy)apptentiveSubmitButtonTitle",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE27apptentiveSubmitButtonTitleABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)apptentiveSubmitButtonTitle",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE27apptentiveSubmitButtonTitleABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)setApptentiveSubmitButtonTitle:",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE27apptentiveSubmitButtonTitleABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So6UIFontC13ApptentiveKitE27apptentiveSubmitButtonTitleABvMZ",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE27apptentiveSubmitButtonTitleABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveTextInput",
- "printedName": "apptentiveTextInput",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cpy)apptentiveTextInput",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE19apptentiveTextInputABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)apptentiveTextInput",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE19apptentiveTextInputABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)setApptentiveTextInput:",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE19apptentiveTextInputABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So6UIFontC13ApptentiveKitE19apptentiveTextInputABvMZ",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE19apptentiveTextInputABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- }
- ],
- "declKind": "Class",
- "usr": "c:objc(cs)UIFont",
- "moduleName": "UIKit",
- "isOpen": true,
- "intro_iOS": "2.0",
- "objc_name": "UIFont",
- "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": "TypeDecl",
- "name": "UIToolbar",
- "printedName": "UIToolbar",
- "children": [
- {
- "kind": "TypeDecl",
- "name": "ToolbarMode",
- "printedName": "ToolbarMode",
- "children": [
- {
- "kind": "Var",
- "name": "alwaysShown",
- "printedName": "alwaysShown",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(UIKit.UIToolbar.ToolbarMode.Type) -> UIKit.UIToolbar.ToolbarMode",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ToolbarMode",
- "printedName": "UIKit.UIToolbar.ToolbarMode",
- "usr": "s:So9UIToolbarC13ApptentiveKitE11ToolbarModeO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "UIKit.UIToolbar.ToolbarMode.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ToolbarMode",
- "printedName": "UIKit.UIToolbar.ToolbarMode",
- "usr": "s:So9UIToolbarC13ApptentiveKitE11ToolbarModeO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:So9UIToolbarC13ApptentiveKitE11ToolbarModeO11alwaysShownyA2EmF",
- "mangledName": "$sSo9UIToolbarC13ApptentiveKitE11ToolbarModeO11alwaysShownyA2EmF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment",
- "ObjC"
- ],
- "fixedbinaryorder": 0
- },
- {
- "kind": "Var",
- "name": "hiddenWhenEmpty",
- "printedName": "hiddenWhenEmpty",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(UIKit.UIToolbar.ToolbarMode.Type) -> UIKit.UIToolbar.ToolbarMode",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ToolbarMode",
- "printedName": "UIKit.UIToolbar.ToolbarMode",
- "usr": "s:So9UIToolbarC13ApptentiveKitE11ToolbarModeO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "UIKit.UIToolbar.ToolbarMode.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ToolbarMode",
- "printedName": "UIKit.UIToolbar.ToolbarMode",
- "usr": "s:So9UIToolbarC13ApptentiveKitE11ToolbarModeO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:So9UIToolbarC13ApptentiveKitE11ToolbarModeO15hiddenWhenEmptyyA2EmF",
- "mangledName": "$sSo9UIToolbarC13ApptentiveKitE11ToolbarModeO15hiddenWhenEmptyyA2EmF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment",
- "ObjC"
- ],
- "fixedbinaryorder": 1
- },
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(rawValue:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "UIKit.UIToolbar.ToolbarMode?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ToolbarMode",
- "printedName": "UIKit.UIToolbar.ToolbarMode",
- "usr": "s:So9UIToolbarC13ApptentiveKitE11ToolbarModeO"
- }
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ],
- "declKind": "Constructor",
- "usr": "s:So9UIToolbarC13ApptentiveKitE11ToolbarModeO8rawValueAESgSi_tcfc",
- "mangledName": "$sSo9UIToolbarC13ApptentiveKitE11ToolbarModeO8rawValueAESgSi_tcfc",
- "moduleName": "ApptentiveKit",
- "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:So9UIToolbarC13ApptentiveKitE11ToolbarModeO8rawValueSivp",
- "mangledName": "$sSo9UIToolbarC13ApptentiveKitE11ToolbarModeO8rawValueSivp",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So9UIToolbarC13ApptentiveKitE11ToolbarModeO8rawValueSivg",
- "mangledName": "$sSo9UIToolbarC13ApptentiveKitE11ToolbarModeO8rawValueSivg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "get"
- }
- ]
- }
- ],
- "declKind": "Enum",
- "usr": "s:So9UIToolbarC13ApptentiveKitE11ToolbarModeO",
- "mangledName": "$sSo9UIToolbarC13ApptentiveKitE11ToolbarModeO",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "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": "Var",
- "name": "apptentiveMode",
- "printedName": "apptentiveMode",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ToolbarMode",
- "printedName": "UIKit.UIToolbar.ToolbarMode",
- "usr": "s:So9UIToolbarC13ApptentiveKitE11ToolbarModeO"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIToolbar(cpy)apptentiveMode",
- "mangledName": "$sSo9UIToolbarC13ApptentiveKitE14apptentiveModeAbCE07ToolbarE0OvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "Custom",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ToolbarMode",
- "printedName": "UIKit.UIToolbar.ToolbarMode",
- "usr": "s:So9UIToolbarC13ApptentiveKitE11ToolbarModeO"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIToolbar(cm)apptentiveMode",
- "mangledName": "$sSo9UIToolbarC13ApptentiveKitE14apptentiveModeAbCE07ToolbarE0OvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "ToolbarMode",
- "printedName": "UIKit.UIToolbar.ToolbarMode",
- "usr": "s:So9UIToolbarC13ApptentiveKitE11ToolbarModeO"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIToolbar(cm)setApptentiveMode:",
- "mangledName": "$sSo9UIToolbarC13ApptentiveKitE14apptentiveModeAbCE07ToolbarE0OvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So9UIToolbarC13ApptentiveKitE14apptentiveModeAbCE07ToolbarE0OvMZ",
- "mangledName": "$sSo9UIToolbarC13ApptentiveKitE14apptentiveModeAbCE07ToolbarE0OvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- }
- ],
- "declKind": "Class",
- "usr": "c:objc(cs)UIToolbar",
- "moduleName": "UIKit",
- "isOpen": true,
- "intro_iOS": "2.0",
- "objc_name": "UIToolbar",
- "declAttributes": [
- "Available",
- "ObjC",
- "NonSendable",
- "Custom",
- "Dynamic"
- ],
- "superclassUsr": "c:objc(cs)UIView",
- "isExternal": true,
- "inheritsConvenienceInitializers": true,
- "superclassNames": [
- "UIKit.UIView",
- "UIKit.UIResponder",
- "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": "Conformance",
- "name": "__DefaultCustomPlaygroundQuickLookable",
- "printedName": "__DefaultCustomPlaygroundQuickLookable",
- "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP",
- "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP"
- },
- {
- "kind": "Conformance",
- "name": "Sendable",
- "printedName": "Sendable",
- "usr": "s:s8SendableP",
- "mangledName": "$ss8SendableP"
- }
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "CGFloat",
- "printedName": "CGFloat",
- "children": [
- {
- "kind": "Var",
- "name": "apptentiveButtonBorderWidth",
- "printedName": "apptentiveButtonBorderWidth",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "CGFloat",
- "printedName": "CoreGraphics.CGFloat",
- "usr": "s:14CoreFoundation7CGFloatV"
- }
- ],
- "declKind": "Var",
- "usr": "s:14CoreFoundation7CGFloatV13ApptentiveKitE27apptentiveButtonBorderWidthACvpZ",
- "mangledName": "$s12CoreGraphics7CGFloatV13ApptentiveKitE27apptentiveButtonBorderWidthACvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "CGFloat",
- "printedName": "CoreGraphics.CGFloat",
- "usr": "s:14CoreFoundation7CGFloatV"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:14CoreFoundation7CGFloatV13ApptentiveKitE27apptentiveButtonBorderWidthACvgZ",
- "mangledName": "$s12CoreGraphics7CGFloatV13ApptentiveKitE27apptentiveButtonBorderWidthACvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "CGFloat",
- "printedName": "CoreGraphics.CGFloat",
- "usr": "s:14CoreFoundation7CGFloatV"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:14CoreFoundation7CGFloatV13ApptentiveKitE27apptentiveButtonBorderWidthACvsZ",
- "mangledName": "$s12CoreGraphics7CGFloatV13ApptentiveKitE27apptentiveButtonBorderWidthACvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:14CoreFoundation7CGFloatV13ApptentiveKitE27apptentiveButtonBorderWidthACvMZ",
- "mangledName": "$s12CoreGraphics7CGFloatV13ApptentiveKitE27apptentiveButtonBorderWidthACvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- }
- ],
- "declKind": "Struct",
- "usr": "s:14CoreFoundation7CGFloatV",
- "mangledName": "$s12CoreGraphics7CGFloatV",
- "moduleName": "CoreFoundation",
- "intro_Macosx": "10.0",
- "intro_iOS": "2.0",
- "intro_tvOS": "9.0",
- "intro_watchOS": "1.0",
- "declAttributes": [
- "Frozen",
- "OriginallyDefinedIn",
- "OriginallyDefinedIn",
- "OriginallyDefinedIn",
- "OriginallyDefinedIn",
- "OriginallyDefinedIn",
- "Available",
- "Available",
- "Available",
- "Available",
- "Available"
- ],
- "isExternal": true,
- "conformances": [
- {
- "kind": "Conformance",
- "name": "SignedNumeric",
- "printedName": "SignedNumeric",
- "usr": "s:s13SignedNumericP",
- "mangledName": "$ss13SignedNumericP"
- },
- {
- "kind": "Conformance",
- "name": "Numeric",
- "printedName": "Numeric",
- "children": [
- {
- "kind": "TypeWitness",
- "name": "Magnitude",
- "printedName": "Magnitude",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "CGFloat",
- "printedName": "CoreGraphics.CGFloat",
- "usr": "s:14CoreFoundation7CGFloatV"
- }
- ]
- }
- ],
- "usr": "s:Sj",
- "mangledName": "$sSj"
- },
- {
- "kind": "Conformance",
- "name": "AdditiveArithmetic",
- "printedName": "AdditiveArithmetic",
- "usr": "s:s18AdditiveArithmeticP",
- "mangledName": "$ss18AdditiveArithmeticP"
- },
- {
- "kind": "Conformance",
- "name": "ExpressibleByIntegerLiteral",
- "printedName": "ExpressibleByIntegerLiteral",
- "children": [
- {
- "kind": "TypeWitness",
- "name": "IntegerLiteralType",
- "printedName": "IntegerLiteralType",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ]
- }
- ],
- "usr": "s:s27ExpressibleByIntegerLiteralP",
- "mangledName": "$ss27ExpressibleByIntegerLiteralP"
- },
- {
- "kind": "Conformance",
- "name": "Equatable",
- "printedName": "Equatable",
- "usr": "s:SQ",
- "mangledName": "$sSQ"
- },
- {
- "kind": "Conformance",
- "name": "BinaryFloatingPoint",
- "printedName": "BinaryFloatingPoint",
- "children": [
- {
- "kind": "TypeWitness",
- "name": "RawSignificand",
- "printedName": "RawSignificand",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UInt",
- "printedName": "Swift.UInt",
- "usr": "s:Su"
- }
- ]
- },
- {
- "kind": "TypeWitness",
- "name": "RawExponent",
- "printedName": "RawExponent",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UInt",
- "printedName": "Swift.UInt",
- "usr": "s:Su"
- }
- ]
- }
- ],
- "usr": "s:SB",
- "mangledName": "$sSB"
- },
- {
- "kind": "Conformance",
- "name": "ExpressibleByFloatLiteral",
- "printedName": "ExpressibleByFloatLiteral",
- "children": [
- {
- "kind": "TypeWitness",
- "name": "FloatLiteralType",
- "printedName": "FloatLiteralType",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Double",
- "printedName": "Swift.Double",
- "usr": "s:Sd"
- }
- ]
- }
- ],
- "usr": "s:s25ExpressibleByFloatLiteralP",
- "mangledName": "$ss25ExpressibleByFloatLiteralP"
- },
- {
- "kind": "Conformance",
- "name": "FloatingPoint",
- "printedName": "FloatingPoint",
- "children": [
- {
- "kind": "TypeWitness",
- "name": "Exponent",
- "printedName": "Exponent",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ]
- }
- ],
- "usr": "s:SF",
- "mangledName": "$sSF"
- },
- {
- "kind": "Conformance",
- "name": "CustomReflectable",
- "printedName": "CustomReflectable",
- "usr": "s:s17CustomReflectableP",
- "mangledName": "$ss17CustomReflectableP"
- },
- {
- "kind": "Conformance",
- "name": "CustomStringConvertible",
- "printedName": "CustomStringConvertible",
- "usr": "s:s23CustomStringConvertibleP",
- "mangledName": "$ss23CustomStringConvertibleP"
- },
- {
- "kind": "Conformance",
- "name": "Hashable",
- "printedName": "Hashable",
- "usr": "s:SH",
- "mangledName": "$sSH"
- },
- {
- "kind": "Conformance",
- "name": "Strideable",
- "printedName": "Strideable",
- "children": [
- {
- "kind": "TypeWitness",
- "name": "Stride",
- "printedName": "Stride",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "CGFloat",
- "printedName": "CoreGraphics.CGFloat",
- "usr": "s:14CoreFoundation7CGFloatV"
- }
- ]
- }
- ],
- "usr": "s:Sx",
- "mangledName": "$sSx"
- },
- {
- "kind": "Conformance",
- "name": "Comparable",
- "printedName": "Comparable",
- "usr": "s:SL",
- "mangledName": "$sSL"
- },
- {
- "kind": "Conformance",
- "name": "_CVarArgPassedAsDouble",
- "printedName": "_CVarArgPassedAsDouble",
- "usr": "s:s22_CVarArgPassedAsDoubleP",
- "mangledName": "$ss22_CVarArgPassedAsDoubleP"
- },
- {
- "kind": "Conformance",
- "name": "_CVarArgAligned",
- "printedName": "_CVarArgAligned",
- "usr": "s:s15_CVarArgAlignedP",
- "mangledName": "$ss15_CVarArgAlignedP"
- },
- {
- "kind": "Conformance",
- "name": "CVarArg",
- "printedName": "CVarArg",
- "usr": "s:s7CVarArgP",
- "mangledName": "$ss7CVarArgP"
- },
- {
- "kind": "Conformance",
- "name": "Decodable",
- "printedName": "Decodable",
- "usr": "s:Se",
- "mangledName": "$sSe"
- },
- {
- "kind": "Conformance",
- "name": "Encodable",
- "printedName": "Encodable",
- "usr": "s:SE",
- "mangledName": "$sSE"
- },
- {
- "kind": "Conformance",
- "name": "Sendable",
- "printedName": "Sendable",
- "usr": "s:s8SendableP",
- "mangledName": "$ss8SendableP"
- },
- {
- "kind": "Conformance",
- "name": "_FormatSpecifiable",
- "printedName": "_FormatSpecifiable",
- "children": [
- {
- "kind": "TypeWitness",
- "name": "_Arg",
- "printedName": "_Arg",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "CGFloat",
- "printedName": "CoreGraphics.CGFloat",
- "usr": "s:14CoreFoundation7CGFloatV"
- }
- ]
- }
- ],
- "usr": "s:10Foundation18_FormatSpecifiableP",
- "mangledName": "$s10Foundation18_FormatSpecifiableP"
- },
- {
- "kind": "Conformance",
- "name": "_ObjectiveCBridgeable",
- "printedName": "_ObjectiveCBridgeable",
- "children": [
- {
- "kind": "TypeWitness",
- "name": "_ObjectiveCType",
- "printedName": "_ObjectiveCType",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "NSNumber",
- "printedName": "Foundation.NSNumber",
- "usr": "c:objc(cs)NSNumber"
- }
- ]
- }
- ],
- "usr": "s:s21_ObjectiveCBridgeableP",
- "mangledName": "$ss21_ObjectiveCBridgeableP"
- }
- ]
- }
- ],
- "json_format_version": 8
- },
- "ConstValues": [
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/AppleRatingDialog\/AppleRatingDialogController.swift",
- "kind": "BooleanLiteral",
- "offset": 448,
- "length": 5,
- "value": "false"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/AppleRatingDialog\/AppleRatingDialogController.swift",
- "kind": "IntegerLiteral",
- "offset": 492,
- "length": 1,
- "value": "1"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Backend.swift",
- "kind": "BooleanLiteral",
- "offset": 1632,
- "length": 4,
- "value": "true"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Backend.swift",
- "kind": "BooleanLiteral",
- "offset": 2252,
- "length": 4,
- "value": "true"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Backend.swift",
- "kind": "BooleanLiteral",
- "offset": 3135,
- "length": 5,
- "value": "false"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Backend.swift",
- "kind": "BooleanLiteral",
- "offset": 3302,
- "length": 4,
- "value": "true"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Backend.swift",
- "kind": "BooleanLiteral",
- "offset": 3562,
- "length": 5,
- "value": "false"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Backend.swift",
- "kind": "BooleanLiteral",
- "offset": 3718,
- "length": 5,
- "value": "false"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Backend.swift",
- "kind": "IntegerLiteral",
- "offset": 32120,
- "length": 2,
- "value": "60"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Backend.swift",
- "kind": "IntegerLiteral",
- "offset": 32192,
- "length": 3,
- "value": "600"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Backend.swift",
- "kind": "BooleanLiteral",
- "offset": 32267,
- "length": 4,
- "value": "true"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/EngagementManifest+Placeholder.swift",
- "kind": "StringLiteral",
- "offset": 292,
- "length": 25,
- "value": "\"message_center_fallback\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/EngagementManifest+Placeholder.swift",
- "kind": "StringLiteral",
- "offset": 365,
- "length": 22,
- "value": "\"MC Unavailable Title\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/EngagementManifest+Placeholder.swift",
- "kind": "StringLiteral",
- "offset": 429,
- "length": 33,
- "value": "\"Message Center is not Available\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/EngagementManifest+Placeholder.swift",
- "kind": "StringLiteral",
- "offset": 473,
- "length": 41,
- "value": "\"Title for note saying MC is unavailable\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/EngagementManifest+Placeholder.swift",
- "kind": "StringLiteral",
- "offset": 564,
- "length": 24,
- "value": "\"MC Unavailable Message\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/EngagementManifest+Placeholder.swift",
- "kind": "StringLiteral",
- "offset": 630,
- "length": 62,
- "value": "\"Make sure your device can access the internet and try again.\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/EngagementManifest+Placeholder.swift",
- "kind": "StringLiteral",
- "offset": 703,
- "length": 43,
- "value": "\"Message for note saying MC is unavailable\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/EngagementManifest+Placeholder.swift",
- "kind": "StringLiteral",
- "offset": 800,
- "length": 31,
- "value": "\"MC Unavailable Dismiss Button\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/EngagementManifest+Placeholder.swift",
- "kind": "StringLiteral",
- "offset": 873,
- "length": 4,
- "value": "\"OK\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/EngagementManifest+Placeholder.swift",
- "kind": "StringLiteral",
- "offset": 888,
- "length": 56,
- "value": "\"Dismiss button title for note saying MC is unavailable\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/EngagementManifest+Placeholder.swift",
- "kind": "StringLiteral",
- "offset": 1074,
- "length": 9,
- "value": "\"dismiss\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/EngagementManifest+Placeholder.swift",
- "kind": "Array",
- "offset": 1148,
- "length": 2,
- "value": "[]"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/EngagementManifest+Placeholder.swift",
- "kind": "StringLiteral",
- "offset": 1279,
- "length": 11,
- "value": "\"TextModal\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/EngagementManifest+Placeholder.swift",
- "kind": "Array",
- "offset": 1414,
- "length": 2,
- "value": "[]"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/TextModal\/TextModalConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 721,
- "length": 8,
- "value": "\"action\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/TextModal\/TextModalConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 761,
- "length": 9,
- "value": "\"invokes\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/TextModal\/TextModalConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 721,
- "length": 8,
- "value": "\"action\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/TextModal\/TextModalConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 761,
- "length": 9,
- "value": "\"invokes\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Dialog\/UI\/DialogViewController.swift",
- "kind": "Array",
- "offset": 450,
- "length": 2,
- "value": "[]"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Dialog\/UI\/DialogViewController.swift",
- "kind": "BooleanLiteral",
- "offset": 490,
- "length": 5,
- "value": "false"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Dialog\/UI\/DialogViewController.swift",
- "kind": "StringLiteral",
- "offset": 283,
- "length": 20,
- "value": "\"ApptentiveKit.DialogViewController\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Responses\/MessagesResponse.swift",
- "kind": "StringLiteral",
- "offset": 819,
- "length": 14,
- "value": "\"content_type\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Responses\/MessagesResponse.swift",
- "kind": "StringLiteral",
- "offset": 866,
- "length": 15,
- "value": "\"original_name\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Responses\/MessagesResponse.swift",
- "kind": "StringLiteral",
- "offset": 819,
- "length": 14,
- "value": "\"content_type\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Responses\/MessagesResponse.swift",
- "kind": "StringLiteral",
- "offset": 866,
- "length": 15,
- "value": "\"original_name\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Responses\/MessagesResponse.swift",
- "kind": "StringLiteral",
- "offset": 1147,
- "length": 15,
- "value": "\"profile_photo\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Responses\/MessagesResponse.swift",
- "kind": "StringLiteral",
- "offset": 1147,
- "length": 15,
- "value": "\"profile_photo\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Responses\/MessagesResponse.swift",
- "kind": "StringLiteral",
- "offset": 1294,
- "length": 9,
- "value": "\"inbound\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Responses\/MessagesResponse.swift",
- "kind": "StringLiteral",
- "offset": 1375,
- "length": 8,
- "value": "\"hidden\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Responses\/MessagesResponse.swift",
- "kind": "StringLiteral",
- "offset": 1415,
- "length": 11,
- "value": "\"automated\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Responses\/MessagesResponse.swift",
- "kind": "StringLiteral",
- "offset": 1455,
- "length": 12,
- "value": "\"created_at\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Responses\/MessagesResponse.swift",
- "kind": "StringLiteral",
- "offset": 1294,
- "length": 9,
- "value": "\"inbound\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Responses\/MessagesResponse.swift",
- "kind": "StringLiteral",
- "offset": 1375,
- "length": 8,
- "value": "\"hidden\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Responses\/MessagesResponse.swift",
- "kind": "StringLiteral",
- "offset": 1415,
- "length": 11,
- "value": "\"automated\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Responses\/MessagesResponse.swift",
- "kind": "StringLiteral",
- "offset": 1455,
- "length": 12,
- "value": "\"created_at\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Responses\/MessagesResponse.swift",
- "kind": "StringLiteral",
- "offset": 1572,
- "length": 11,
- "value": "\"ends_with\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Responses\/MessagesResponse.swift",
- "kind": "StringLiteral",
- "offset": 1607,
- "length": 10,
- "value": "\"has_more\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Responses\/MessagesResponse.swift",
- "kind": "StringLiteral",
- "offset": 1572,
- "length": 11,
- "value": "\"ends_with\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Responses\/MessagesResponse.swift",
- "kind": "StringLiteral",
- "offset": 1607,
- "length": 10,
- "value": "\"has_more\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/EngagementMetric.swift",
- "kind": "IntegerLiteral",
- "offset": 384,
- "length": 1,
- "value": "0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/EngagementMetric.swift",
- "kind": "IntegerLiteral",
- "offset": 407,
- "length": 1,
- "value": "0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/EngagementMetric.swift",
- "kind": "IntegerLiteral",
- "offset": 428,
- "length": 1,
- "value": "0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/EngagementMetric.swift",
- "kind": "IntegerLiteral",
- "offset": 870,
- "length": 1,
- "value": "0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/EngagementMetric.swift",
- "kind": "IntegerLiteral",
- "offset": 1000,
- "length": 1,
- "value": "0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/EngagementMetric.swift",
- "kind": "IntegerLiteral",
- "offset": 1126,
- "length": 1,
- "value": "0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Current\/CurrentLoader.swift",
- "kind": "StringLiteral",
- "offset": 242,
- "length": 16,
- "value": "\"Conversation.A\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Current\/CurrentLoader.swift",
- "kind": "StringLiteral",
- "offset": 293,
- "length": 16,
- "value": "\"PayloadQueue.A\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Current\/CurrentLoader.swift",
- "kind": "StringLiteral",
- "offset": 344,
- "length": 15,
- "value": "\"MessageList.A\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Current\/CurrentLoader.swift",
- "kind": "StringLiteral",
- "offset": 391,
- "length": 7,
- "value": "\"plist\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterViewModel+Message.swift",
- "kind": "StringLiteral",
- "offset": 4157,
- "length": 10,
- "value": "\"ApptentiveKit.Attachment\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyMultiLineCell.swift",
- "kind": "FloatLiteral",
- "offset": 583,
- "length": 3,
- "value": "1.0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyMultiLineCell.swift",
- "kind": "FloatLiteral",
- "offset": 667,
- "length": 3,
- "value": "6.0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyMultiLineCell.swift",
- "kind": "FloatLiteral",
- "offset": 1032,
- "length": 3,
- "value": "1.0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyMultiLineCell.swift",
- "kind": "FloatLiteral",
- "offset": 1043,
- "length": 4,
- "value": "5.0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyMultiLineCell.swift",
- "kind": "FloatLiteral",
- "offset": 1057,
- "length": 3,
- "value": "1.0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyMultiLineCell.swift",
- "kind": "FloatLiteral",
- "offset": 1069,
- "length": 4,
- "value": "5.0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyMultiLineCell.swift",
- "kind": "FloatLiteral",
- "offset": 1131,
- "length": 4,
- "value": "16.0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyMultiLineCell.swift",
- "kind": "FloatLiteral",
- "offset": 1192,
- "length": 4,
- "value": "16.0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyMultiLineCell.swift",
- "kind": "FloatLiteral",
- "offset": 1435,
- "length": 3,
- "value": "6.0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyMultiLineCell.swift",
- "kind": "FloatLiteral",
- "offset": 1446,
- "length": 3,
- "value": "2.0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyMultiLineCell.swift",
- "kind": "FloatLiteral",
- "offset": 1459,
- "length": 3,
- "value": "6.0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyMultiLineCell.swift",
- "kind": "FloatLiteral",
- "offset": 1471,
- "length": 3,
- "value": "2.0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyMultiLineCell.swift",
- "kind": "FloatLiteral",
- "offset": 1574,
- "length": 3,
- "value": "4.0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyMultiLineCell.swift",
- "kind": "FloatLiteral",
- "offset": 1585,
- "length": 3,
- "value": "2.0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyMultiLineCell.swift",
- "kind": "FloatLiteral",
- "offset": 1598,
- "length": 3,
- "value": "4.0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyMultiLineCell.swift",
- "kind": "FloatLiteral",
- "offset": 1610,
- "length": 3,
- "value": "2.0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyMultiLineCell.swift",
- "kind": "FloatLiteral",
- "offset": 1685,
- "length": 4,
- "value": "14.5"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyMultiLineCell.swift",
- "kind": "FloatLiteral",
- "offset": 1742,
- "length": 4,
- "value": "14.5"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyViewModel+ChoiceQuestion.swift",
- "kind": "StringLiteral",
- "offset": 5351,
- "length": 30,
- "value": "\"Should have a view model set\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyViewModel+ChoiceQuestion.swift",
- "kind": "StringLiteral",
- "offset": 5843,
- "length": 36,
- "value": "\"Should have a choice question set.\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyCount.swift",
- "kind": "BooleanLiteral",
- "offset": 277,
- "length": 4,
- "value": "true"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyCount.swift",
- "kind": "StringLiteral",
- "offset": 953,
- "length": 12,
- "value": "\"totalCount\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyCount.swift",
- "kind": "StringLiteral",
- "offset": 1000,
- "length": 14,
- "value": "\"versionCount\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyCount.swift",
- "kind": "StringLiteral",
- "offset": 1047,
- "length": 12,
- "value": "\"buildCount\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyCount.swift",
- "kind": "StringLiteral",
- "offset": 1093,
- "length": 13,
- "value": "\"lastInvoked\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyCount.swift",
- "kind": "StringLiteral",
- "offset": 199,
- "length": 11,
- "value": "\"ApptentiveKit.LegacyCount\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/ApptentiveLogger.swift",
- "kind": "IntegerLiteral",
- "offset": 678,
- "length": 1,
- "value": "0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/ApptentiveLogger.swift",
- "kind": "StringLiteral",
- "offset": 6911,
- "length": 16,
- "value": "\"com.apptentive\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/ApptentiveLogger.swift",
- "kind": "StringLiteral",
- "offset": 6931,
- "length": 13,
- "value": "\".apptentive\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/ApptentiveLogger.swift",
- "kind": "StringLiteral",
- "offset": 7230,
- "length": 13,
- "value": "\".engagement\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/ApptentiveLogger.swift",
- "kind": "StringLiteral",
- "offset": 7377,
- "length": 14,
- "value": "\".interaction\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/ApptentiveLogger.swift",
- "kind": "StringLiteral",
- "offset": 7517,
- "length": 10,
- "value": "\".network\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/ApptentiveLogger.swift",
- "kind": "StringLiteral",
- "offset": 7652,
- "length": 10,
- "value": "\".payload\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/ApptentiveLogger.swift",
- "kind": "StringLiteral",
- "offset": 7784,
- "length": 12,
- "value": "\".targeting\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/ApptentiveLogger.swift",
- "kind": "StringLiteral",
- "offset": 7922,
- "length": 11,
- "value": "\".messages\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/ApptentiveLogger.swift",
- "kind": "StringLiteral",
- "offset": 8065,
- "length": 14,
- "value": "\".attachments\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/ApptentiveLogger.swift",
- "kind": "IntegerLiteral",
- "offset": 8849,
- "length": 4,
- "value": "1"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/ApptentiveLogger.swift",
- "kind": "IntegerLiteral",
- "offset": 8863,
- "length": 6,
- "value": "2"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/ApptentiveLogger.swift",
- "kind": "IntegerLiteral",
- "offset": 8879,
- "length": 7,
- "value": "3"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/ApptentiveLogger.swift",
- "kind": "IntegerLiteral",
- "offset": 8896,
- "length": 5,
- "value": "4"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/ApptentiveLogger.swift",
- "kind": "IntegerLiteral",
- "offset": 8911,
- "length": 8,
- "value": "5"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/ApptentiveLogger.swift",
- "kind": "IntegerLiteral",
- "offset": 8929,
- "length": 5,
- "value": "6"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/ApptentiveLogger.swift",
- "kind": "IntegerLiteral",
- "offset": 8849,
- "length": 4,
- "value": "1"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/ApptentiveLogger.swift",
- "kind": "IntegerLiteral",
- "offset": 8863,
- "length": 6,
- "value": "2"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/ApptentiveLogger.swift",
- "kind": "IntegerLiteral",
- "offset": 8879,
- "length": 7,
- "value": "3"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/ApptentiveLogger.swift",
- "kind": "IntegerLiteral",
- "offset": 8896,
- "length": 5,
- "value": "4"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/ApptentiveLogger.swift",
- "kind": "IntegerLiteral",
- "offset": 8911,
- "length": 8,
- "value": "5"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/ApptentiveLogger.swift",
- "kind": "IntegerLiteral",
- "offset": 8929,
- "length": 5,
- "value": "6"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/ApptentiveLogger.swift",
- "kind": "IntegerLiteral",
- "offset": 8849,
- "length": 4,
- "value": "1"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/ApptentiveLogger.swift",
- "kind": "IntegerLiteral",
- "offset": 8863,
- "length": 6,
- "value": "2"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/ApptentiveLogger.swift",
- "kind": "IntegerLiteral",
- "offset": 8879,
- "length": 7,
- "value": "3"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/ApptentiveLogger.swift",
- "kind": "IntegerLiteral",
- "offset": 8896,
- "length": 5,
- "value": "4"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/ApptentiveLogger.swift",
- "kind": "IntegerLiteral",
- "offset": 8911,
- "length": 8,
- "value": "5"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/ApptentiveLogger.swift",
- "kind": "IntegerLiteral",
- "offset": 8929,
- "length": 5,
- "value": "6"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive.swift",
- "kind": "IntegerLiteral",
- "offset": 4430,
- "length": 1,
- "value": "0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive.swift",
- "kind": "BooleanLiteral",
- "offset": 17153,
- "length": 5,
- "value": "false"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive.swift",
- "kind": "StringLiteral",
- "offset": 223,
- "length": 10,
- "value": "\"ApptentiveKit.Apptentive\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyPerson.swift",
- "kind": "StringLiteral",
- "offset": 1227,
- "length": 6,
- "value": "\"name\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyPerson.swift",
- "kind": "StringLiteral",
- "offset": 1268,
- "length": 14,
- "value": "\"emailAddress\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyPerson.swift",
- "kind": "StringLiteral",
- "offset": 1316,
- "length": 13,
- "value": "\"mParticleId\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyPerson.swift",
- "kind": "StringLiteral",
- "offset": 1362,
- "length": 12,
- "value": "\"customData\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyPerson.swift",
- "kind": "StringLiteral",
- "offset": 201,
- "length": 12,
- "value": "\"ApptentiveKit.LegacyPerson\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyIndicator.swift",
- "kind": "Array",
- "offset": 263,
- "length": 2,
- "value": "[]"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyIndicator.swift",
- "kind": "IntegerLiteral",
- "offset": 306,
- "length": 1,
- "value": "0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyIndicator.swift",
- "kind": "IntegerLiteral",
- "offset": 526,
- "length": 1,
- "value": "0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyIndicator.swift",
- "kind": "Dictionary",
- "offset": 661,
- "length": 3,
- "value": "[]"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyIndicator.swift",
- "kind": "IntegerLiteral",
- "offset": 6922,
- "length": 1,
- "value": "0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveySingleLineCell.swift",
- "kind": "FloatLiteral",
- "offset": 355,
- "length": 3,
- "value": "1.0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveySingleLineCell.swift",
- "kind": "FloatLiteral",
- "offset": 439,
- "length": 3,
- "value": "6.0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveySingleLineCell.swift",
- "kind": "FloatLiteral",
- "offset": 1048,
- "length": 4,
- "value": "16.0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveySingleLineCell.swift",
- "kind": "FloatLiteral",
- "offset": 1109,
- "length": 4,
- "value": "16.0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveySingleLineCell.swift",
- "kind": "IntegerLiteral",
- "offset": 1165,
- "length": 1,
- "value": "0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveySingleLineCell.swift",
- "kind": "IntegerLiteral",
- "offset": 1221,
- "length": 1,
- "value": "0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveySingleLineCell.swift",
- "kind": "IntegerLiteral",
- "offset": 1277,
- "length": 2,
- "value": "44"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/ApptentiveAPI.swift",
- "kind": "BooleanLiteral",
- "offset": 8342,
- "length": 4,
- "value": "true"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/ApptentiveAPI.swift",
- "kind": "BooleanLiteral",
- "offset": 9521,
- "length": 4,
- "value": "true"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/ApptentiveAPI.swift",
- "kind": "StringLiteral",
- "offset": 14484,
- "length": 16,
- "value": "\"APPTENTIVE-KEY\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/ApptentiveAPI.swift",
- "kind": "StringLiteral",
- "offset": 14542,
- "length": 22,
- "value": "\"APPTENTIVE-SIGNATURE\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/ApptentiveAPI.swift",
- "kind": "StringLiteral",
- "offset": 14597,
- "length": 15,
- "value": "\"X-API-Version\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/ApptentiveAPI.swift",
- "kind": "StringLiteral",
- "offset": 14646,
- "length": 14,
- "value": "\"Content-Type\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/ApptentiveAPI.swift",
- "kind": "StringLiteral",
- "offset": 14696,
- "length": 15,
- "value": "\"Authorization\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/ApptentiveAPI.swift",
- "kind": "StringLiteral",
- "offset": 14747,
- "length": 16,
- "value": "\"Accept-Charset\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/ApptentiveAPI.swift",
- "kind": "StringLiteral",
- "offset": 14800,
- "length": 17,
- "value": "\"Accept-Language\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/ApptentiveAPI.swift",
- "kind": "StringLiteral",
- "offset": 14846,
- "length": 8,
- "value": "\"Accept\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadataItem.swift",
- "kind": "BooleanLiteral",
- "offset": 334,
- "length": 4,
- "value": "true"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadataItem.swift",
- "kind": "StringLiteral",
- "offset": 1248,
- "length": 7,
- "value": "\"state\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadataItem.swift",
- "kind": "StringLiteral",
- "offset": 1288,
- "length": 24,
- "value": "\"conversationIdentifier\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadataItem.swift",
- "kind": "StringLiteral",
- "offset": 1350,
- "length": 29,
- "value": "\"conversationLocalIdentifier\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadataItem.swift",
- "kind": "StringLiteral",
- "offset": 1415,
- "length": 10,
- "value": "\"fileName\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadataItem.swift",
- "kind": "StringLiteral",
- "offset": 1451,
- "length": 5,
- "value": "\"JWT\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadataItem.swift",
- "kind": "IntegerLiteral",
- "offset": 1523,
- "length": 1,
- "value": "0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadataItem.swift",
- "kind": "IntegerLiteral",
- "offset": 1538,
- "length": 16,
- "value": "1"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadataItem.swift",
- "kind": "IntegerLiteral",
- "offset": 1568,
- "length": 13,
- "value": "2"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadataItem.swift",
- "kind": "IntegerLiteral",
- "offset": 1595,
- "length": 9,
- "value": "3"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadataItem.swift",
- "kind": "IntegerLiteral",
- "offset": 1618,
- "length": 8,
- "value": "4"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadataItem.swift",
- "kind": "IntegerLiteral",
- "offset": 1640,
- "length": 9,
- "value": "5"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadataItem.swift",
- "kind": "IntegerLiteral",
- "offset": 1523,
- "length": 1,
- "value": "0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadataItem.swift",
- "kind": "IntegerLiteral",
- "offset": 1538,
- "length": 16,
- "value": "1"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadataItem.swift",
- "kind": "IntegerLiteral",
- "offset": 1568,
- "length": 13,
- "value": "2"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadataItem.swift",
- "kind": "IntegerLiteral",
- "offset": 1595,
- "length": 9,
- "value": "3"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadataItem.swift",
- "kind": "IntegerLiteral",
- "offset": 1618,
- "length": 8,
- "value": "4"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadataItem.swift",
- "kind": "IntegerLiteral",
- "offset": 1640,
- "length": 9,
- "value": "5"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadataItem.swift",
- "kind": "IntegerLiteral",
- "offset": 1523,
- "length": 1,
- "value": "0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadataItem.swift",
- "kind": "IntegerLiteral",
- "offset": 1538,
- "length": 16,
- "value": "1"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadataItem.swift",
- "kind": "IntegerLiteral",
- "offset": 1568,
- "length": 13,
- "value": "2"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadataItem.swift",
- "kind": "IntegerLiteral",
- "offset": 1595,
- "length": 9,
- "value": "3"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadataItem.swift",
- "kind": "IntegerLiteral",
- "offset": 1618,
- "length": 8,
- "value": "4"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadataItem.swift",
- "kind": "IntegerLiteral",
- "offset": 1640,
- "length": 9,
- "value": "5"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadataItem.swift",
- "kind": "StringLiteral",
- "offset": 237,
- "length": 30,
- "value": "\"ApptentiveKit.LegacyConversationMetadataItem\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/HTTPRetryPolicy.swift",
- "kind": "FloatLiteral",
- "offset": 366,
- "length": 3,
- "value": "5.0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/HTTPRetryPolicy.swift",
- "kind": "FloatLiteral",
- "offset": 392,
- "length": 3,
- "value": "2.0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/HTTPRetryPolicy.swift",
- "kind": "BooleanLiteral",
- "offset": 415,
- "length": 4,
- "value": "true"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Requests\/ConversationRequest.swift",
- "kind": "StringLiteral",
- "offset": 968,
- "length": 13,
- "value": "\"app_release\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Requests\/ConversationRequest.swift",
- "kind": "StringLiteral",
- "offset": 968,
- "length": 13,
- "value": "\"app_release\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Requests\/ConversationRequest.swift",
- "kind": "StringLiteral",
- "offset": 1371,
- "length": 11,
- "value": "\"device_id\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Requests\/ConversationRequest.swift",
- "kind": "StringLiteral",
- "offset": 1407,
- "length": 11,
- "value": "\"person_id\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Requests\/ConversationRequest.swift",
- "kind": "StringLiteral",
- "offset": 1371,
- "length": 11,
- "value": "\"device_id\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Requests\/ConversationRequest.swift",
- "kind": "StringLiteral",
- "offset": 1407,
- "length": 11,
- "value": "\"person_id\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyViewModel.swift",
- "kind": "BooleanLiteral",
- "offset": 5198,
- "length": 5,
- "value": "false"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyViewModel.swift",
- "kind": "BooleanLiteral",
- "offset": 5356,
- "length": 5,
- "value": "false"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyViewModel.swift",
- "kind": "StringLiteral",
- "offset": 10811,
- "length": 8,
- "value": "\"single\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyViewModel.swift",
- "kind": "StringLiteral",
- "offset": 10851,
- "length": 7,
- "value": "\"intro\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyViewModel.swift",
- "kind": "StringLiteral",
- "offset": 10892,
- "length": 9,
- "value": "\"success\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyViewModel.swift",
- "kind": "BooleanLiteral",
- "offset": 20194,
- "length": 5,
- "value": "false"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyViewModel.swift",
- "kind": "BooleanLiteral",
- "offset": 20250,
- "length": 5,
- "value": "false"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyViewModel.swift",
- "kind": "Array",
- "offset": 21979,
- "length": 2,
- "value": "[]"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/MessageList.swift",
- "kind": "BooleanLiteral",
- "offset": 395,
- "length": 5,
- "value": "false"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/MessageList.swift",
- "kind": "Array",
- "offset": 1485,
- "length": 2,
- "value": "[]"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/MessageList.swift",
- "kind": "BooleanLiteral",
- "offset": 1577,
- "length": 5,
- "value": "false"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/MessageList.swift",
- "kind": "BooleanLiteral",
- "offset": 1601,
- "length": 5,
- "value": "false"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift",
- "kind": "StringLiteral",
- "offset": 3968,
- "length": 22,
- "value": "\"cf_bundle_identifier\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift",
- "kind": "StringLiteral",
- "offset": 4014,
- "length": 32,
- "value": "\"cf_bundle_short_version_string\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift",
- "kind": "StringLiteral",
- "offset": 4068,
- "length": 19,
- "value": "\"cf_bundle_version\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift",
- "kind": "StringLiteral",
- "offset": 4119,
- "length": 19,
- "value": "\"app_store_receipt\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift",
- "kind": "StringLiteral",
- "offset": 4167,
- "length": 7,
- "value": "\"debug\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift",
- "kind": "StringLiteral",
- "offset": 4209,
- "length": 19,
- "value": "\"overriding_styles\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift",
- "kind": "StringLiteral",
- "offset": 4261,
- "length": 19,
- "value": "\"deployment_target\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift",
- "kind": "StringLiteral",
- "offset": 4305,
- "length": 13,
- "value": "\"dt_compiler\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift",
- "kind": "StringLiteral",
- "offset": 4348,
- "length": 19,
- "value": "\"dt_platform_build\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift",
- "kind": "StringLiteral",
- "offset": 4396,
- "length": 18,
- "value": "\"dt_platform_name\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift",
- "kind": "StringLiteral",
- "offset": 4446,
- "length": 21,
- "value": "\"dt_platform_version\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift",
- "kind": "StringLiteral",
- "offset": 4492,
- "length": 14,
- "value": "\"dt_sdk_build\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift",
- "kind": "StringLiteral",
- "offset": 4530,
- "length": 13,
- "value": "\"dt_sdk_name\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift",
- "kind": "StringLiteral",
- "offset": 4565,
- "length": 10,
- "value": "\"dt_xcode\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift",
- "kind": "StringLiteral",
- "offset": 4602,
- "length": 16,
- "value": "\"dt_xcode_build\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift",
- "kind": "StringLiteral",
- "offset": 4645,
- "length": 13,
- "value": "\"sdk_version\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift",
- "kind": "StringLiteral",
- "offset": 4697,
- "length": 26,
- "value": "\"sdk_programming_language\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift",
- "kind": "StringLiteral",
- "offset": 4753,
- "length": 17,
- "value": "\"sdk_author_name\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift",
- "kind": "StringLiteral",
- "offset": 4798,
- "length": 14,
- "value": "\"sdk_platform\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift",
- "kind": "StringLiteral",
- "offset": 4851,
- "length": 26,
- "value": "\"sdk_distribution_version\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift",
- "kind": "StringLiteral",
- "offset": 4913,
- "length": 18,
- "value": "\"sdk_distribution\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift",
- "kind": "StringLiteral",
- "offset": 3968,
- "length": 22,
- "value": "\"cf_bundle_identifier\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift",
- "kind": "StringLiteral",
- "offset": 4014,
- "length": 32,
- "value": "\"cf_bundle_short_version_string\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift",
- "kind": "StringLiteral",
- "offset": 4068,
- "length": 19,
- "value": "\"cf_bundle_version\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift",
- "kind": "StringLiteral",
- "offset": 4119,
- "length": 19,
- "value": "\"app_store_receipt\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift",
- "kind": "StringLiteral",
- "offset": 4167,
- "length": 7,
- "value": "\"debug\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift",
- "kind": "StringLiteral",
- "offset": 4209,
- "length": 19,
- "value": "\"overriding_styles\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift",
- "kind": "StringLiteral",
- "offset": 4261,
- "length": 19,
- "value": "\"deployment_target\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift",
- "kind": "StringLiteral",
- "offset": 4305,
- "length": 13,
- "value": "\"dt_compiler\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift",
- "kind": "StringLiteral",
- "offset": 4348,
- "length": 19,
- "value": "\"dt_platform_build\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift",
- "kind": "StringLiteral",
- "offset": 4396,
- "length": 18,
- "value": "\"dt_platform_name\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift",
- "kind": "StringLiteral",
- "offset": 4446,
- "length": 21,
- "value": "\"dt_platform_version\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift",
- "kind": "StringLiteral",
- "offset": 4492,
- "length": 14,
- "value": "\"dt_sdk_build\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift",
- "kind": "StringLiteral",
- "offset": 4530,
- "length": 13,
- "value": "\"dt_sdk_name\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift",
- "kind": "StringLiteral",
- "offset": 4565,
- "length": 10,
- "value": "\"dt_xcode\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift",
- "kind": "StringLiteral",
- "offset": 4602,
- "length": 16,
- "value": "\"dt_xcode_build\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift",
- "kind": "StringLiteral",
- "offset": 4645,
- "length": 13,
- "value": "\"sdk_version\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift",
- "kind": "StringLiteral",
- "offset": 4697,
- "length": 26,
- "value": "\"sdk_programming_language\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift",
- "kind": "StringLiteral",
- "offset": 4753,
- "length": 17,
- "value": "\"sdk_author_name\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift",
- "kind": "StringLiteral",
- "offset": 4798,
- "length": 14,
- "value": "\"sdk_platform\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift",
- "kind": "StringLiteral",
- "offset": 4851,
- "length": 26,
- "value": "\"sdk_distribution_version\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift",
- "kind": "StringLiteral",
- "offset": 4913,
- "length": 18,
- "value": "\"sdk_distribution\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift",
- "kind": "StringLiteral",
- "offset": 5093,
- "length": 13,
- "value": "\"has_receipt\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift",
- "kind": "StringLiteral",
- "offset": 5093,
- "length": 13,
- "value": "\"has_receipt\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyViewController.swift",
- "kind": "FloatLiteral",
- "offset": 369,
- "length": 4,
- "value": "0.30"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyViewController.swift",
- "kind": "IntegerLiteral",
- "offset": 541,
- "length": 1,
- "value": "1"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyViewController.swift",
- "kind": "IntegerLiteral",
- "offset": 809,
- "length": 1,
- "value": "1"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyViewController.swift",
- "kind": "FloatLiteral",
- "offset": 3051,
- "length": 4,
- "value": "0.33"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyViewController.swift",
- "kind": "BooleanLiteral",
- "offset": 3154,
- "length": 4,
- "value": "true"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyViewController.swift",
- "kind": "BooleanLiteral",
- "offset": 3202,
- "length": 5,
- "value": "false"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyViewController.swift",
- "kind": "BooleanLiteral",
- "offset": 32176,
- "length": 5,
- "value": "false"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyViewController.swift",
- "kind": "BooleanLiteral",
- "offset": 39805,
- "length": 5,
- "value": "false"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyViewController.swift",
- "kind": "StringLiteral",
- "offset": 180,
- "length": 20,
- "value": "\"ApptentiveKit.SurveyViewController\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyViewController.swift",
- "kind": "StringLiteral",
- "offset": 180,
- "length": 20,
- "value": "\"ApptentiveKit.SurveyViewController\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyViewModel+Page.swift",
- "kind": "Array",
- "offset": 1518,
- "length": 2,
- "value": "[]"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyViewModel+Page.swift",
- "kind": "StringLiteral",
- "offset": 1938,
- "length": 9,
- "value": "\"invalid\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyViewModel+Page.swift",
- "kind": "StringLiteral",
- "offset": 1962,
- "length": 24,
- "value": "\"An error has occurred.\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyViewModel+Page.swift",
- "kind": "StringLiteral",
- "offset": 2008,
- "length": 7,
- "value": "\"Close\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyViewModel+Page.swift",
- "kind": "Array",
- "offset": 2031,
- "length": 2,
- "value": "[]"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift",
- "kind": "StringLiteral",
- "offset": 4266,
- "length": 6,
- "value": "\"$and\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift",
- "kind": "StringLiteral",
- "offset": 4375,
- "length": 5,
- "value": "\"$or\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift",
- "kind": "StringLiteral",
- "offset": 4482,
- "length": 6,
- "value": "\"$not\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift",
- "kind": "StringLiteral",
- "offset": 4266,
- "length": 6,
- "value": "\"$and\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift",
- "kind": "StringLiteral",
- "offset": 4375,
- "length": 5,
- "value": "\"$or\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift",
- "kind": "StringLiteral",
- "offset": 4482,
- "length": 6,
- "value": "\"$not\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift",
- "kind": "StringLiteral",
- "offset": 5479,
- "length": 9,
- "value": "\"$exists\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift",
- "kind": "StringLiteral",
- "offset": 5510,
- "length": 5,
- "value": "\"$ne\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift",
- "kind": "StringLiteral",
- "offset": 5534,
- "length": 5,
- "value": "\"$eq\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift",
- "kind": "StringLiteral",
- "offset": 5567,
- "length": 6,
- "value": "\"$lte\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift",
- "kind": "StringLiteral",
- "offset": 5594,
- "length": 5,
- "value": "\"$lt\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift",
- "kind": "StringLiteral",
- "offset": 5623,
- "length": 5,
- "value": "\"$gt\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift",
- "kind": "StringLiteral",
- "offset": 5659,
- "length": 6,
- "value": "\"$gte\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift",
- "kind": "StringLiteral",
- "offset": 5688,
- "length": 14,
- "value": "\"$starts_with\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift",
- "kind": "StringLiteral",
- "offset": 5723,
- "length": 12,
- "value": "\"$ends_with\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift",
- "kind": "StringLiteral",
- "offset": 5756,
- "length": 11,
- "value": "\"$contains\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift",
- "kind": "StringLiteral",
- "offset": 5786,
- "length": 9,
- "value": "\"$before\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift",
- "kind": "StringLiteral",
- "offset": 5813,
- "length": 8,
- "value": "\"$after\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift",
- "kind": "StringLiteral",
- "offset": 5479,
- "length": 9,
- "value": "\"$exists\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift",
- "kind": "StringLiteral",
- "offset": 5510,
- "length": 5,
- "value": "\"$ne\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift",
- "kind": "StringLiteral",
- "offset": 5534,
- "length": 5,
- "value": "\"$eq\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift",
- "kind": "StringLiteral",
- "offset": 5567,
- "length": 6,
- "value": "\"$lte\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift",
- "kind": "StringLiteral",
- "offset": 5594,
- "length": 5,
- "value": "\"$lt\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift",
- "kind": "StringLiteral",
- "offset": 5623,
- "length": 5,
- "value": "\"$gt\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift",
- "kind": "StringLiteral",
- "offset": 5659,
- "length": 6,
- "value": "\"$gte\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift",
- "kind": "StringLiteral",
- "offset": 5688,
- "length": 14,
- "value": "\"$starts_with\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift",
- "kind": "StringLiteral",
- "offset": 5723,
- "length": 12,
- "value": "\"$ends_with\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift",
- "kind": "StringLiteral",
- "offset": 5756,
- "length": 11,
- "value": "\"$contains\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift",
- "kind": "StringLiteral",
- "offset": 5786,
- "length": 9,
- "value": "\"$before\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift",
- "kind": "StringLiteral",
- "offset": 5813,
- "length": 8,
- "value": "\"$after\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterViewModel.swift",
- "kind": "IntegerLiteral",
- "offset": 2335,
- "length": 1,
- "value": "4"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterViewModel.swift",
- "kind": "IntegerLiteral",
- "offset": 4177,
- "length": 2,
- "value": "44"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterViewModel.swift",
- "kind": "IntegerLiteral",
- "offset": 4189,
- "length": 2,
- "value": "44"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterViewModel.swift",
- "kind": "StringLiteral",
- "offset": 34268,
- "length": 17,
- "value": "\"SELF MATCHES %@\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterViewModel.swift",
- "kind": "StringLiteral",
- "offset": 34287,
- "length": 51,
- "value": "\"[A-Z0-9a-z._%+-]+@[A-Za-z0-9.-]+\\.[A-Za-z]{2,64}\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterViewModel.swift",
- "kind": "StringLiteral",
- "offset": 34824,
- "length": 12,
- "value": "\"message_id\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterViewModel.swift",
- "kind": "StringLiteral",
- "offset": 34824,
- "length": 12,
- "value": "\"message_id\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversation.swift",
- "kind": "BooleanLiteral",
- "offset": 305,
- "length": 4,
- "value": "true"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversation.swift",
- "kind": "StringLiteral",
- "offset": 1303,
- "length": 7,
- "value": "\"token\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversation.swift",
- "kind": "StringLiteral",
- "offset": 1343,
- "length": 12,
- "value": "\"identifier\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversation.swift",
- "kind": "StringLiteral",
- "offset": 1388,
- "length": 12,
- "value": "\"engagement\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversation.swift",
- "kind": "StringLiteral",
- "offset": 1429,
- "length": 8,
- "value": "\"person\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversation.swift",
- "kind": "StringLiteral",
- "offset": 1466,
- "length": 8,
- "value": "\"device\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversation.swift",
- "kind": "StringLiteral",
- "offset": 1503,
- "length": 8,
- "value": "\"random\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversation.swift",
- "kind": "StringLiteral",
- "offset": 220,
- "length": 18,
- "value": "\"ApptentiveKit.LegacyConversation\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyViewModel+Question.swift",
- "kind": "StringLiteral",
- "offset": 1770,
- "length": 30,
- "value": "\"Should have a view model set\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyViewModel+Question.swift",
- "kind": "BooleanLiteral",
- "offset": 1559,
- "length": 5,
- "value": "false"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyOtherChoiceCell.swift",
- "kind": "IntegerLiteral",
- "offset": 1669,
- "length": 1,
- "value": "1"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyOtherChoiceCell.swift",
- "kind": "IntegerLiteral",
- "offset": 1673,
- "length": 1,
- "value": "0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyOtherChoiceCell.swift",
- "kind": "BooleanLiteral",
- "offset": 1523,
- "length": 5,
- "value": "false"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Event.swift",
- "kind": "StringLiteral",
- "offset": 3952,
- "length": 5,
- "value": "\"#%\/\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "Array",
- "offset": 4738,
- "length": 2,
- "value": "[]"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "BooleanLiteral",
- "offset": 7169,
- "length": 5,
- "value": "false"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 11908,
- "length": 13,
- "value": "\"app_release\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 11908,
- "length": 13,
- "value": "\"app_release\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 13855,
- "length": 19,
- "value": "\"client_created_at\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 13908,
- "length": 30,
- "value": "\"client_created_at_utc_offset\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 13964,
- "length": 12,
- "value": "\"session_id\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 14027,
- "length": 13,
- "value": "\"custom_data\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 14166,
- "length": 16,
- "value": "\"interaction_id\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 14207,
- "length": 6,
- "value": "\"data\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 14357,
- "length": 7,
- "value": "\"email\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 14410,
- "length": 14,
- "value": "\"mparticle_id\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 14489,
- "length": 9,
- "value": "\"os_name\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 14524,
- "length": 12,
- "value": "\"os_version\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 14560,
- "length": 10,
- "value": "\"os_build\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 14649,
- "length": 23,
- "value": "\"content_size_category\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 14698,
- "length": 12,
- "value": "\"locale_raw\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 14744,
- "length": 21,
- "value": "\"locale_country_code\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 14800,
- "length": 22,
- "value": "\"locale_language_code\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 14848,
- "length": 12,
- "value": "\"utc_offset\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 14901,
- "length": 20,
- "value": "\"integration_config\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 14959,
- "length": 15,
- "value": "\"advertiser_id\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 15054,
- "length": 22,
- "value": "\"cf_bundle_identifier\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 15100,
- "length": 32,
- "value": "\"cf_bundle_short_version_string\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 15154,
- "length": 19,
- "value": "\"cf_bundle_version\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 15205,
- "length": 19,
- "value": "\"app_store_receipt\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 15253,
- "length": 7,
- "value": "\"debug\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 15295,
- "length": 19,
- "value": "\"overriding_styles\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 15347,
- "length": 19,
- "value": "\"deployment_target\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 15391,
- "length": 13,
- "value": "\"dt_compiler\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 15434,
- "length": 19,
- "value": "\"dt_platform_build\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 15482,
- "length": 18,
- "value": "\"dt_platform_name\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 15532,
- "length": 21,
- "value": "\"dt_platform_version\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 15578,
- "length": 14,
- "value": "\"dt_sdk_build\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 15616,
- "length": 13,
- "value": "\"dt_sdk_name\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 15651,
- "length": 10,
- "value": "\"dt_xcode\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 15688,
- "length": 16,
- "value": "\"dt_xcode_build\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 15731,
- "length": 13,
- "value": "\"sdk_version\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 15783,
- "length": 26,
- "value": "\"sdk_programming_language\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 15839,
- "length": 17,
- "value": "\"sdk_author_name\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 15884,
- "length": 14,
- "value": "\"sdk_platform\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 15937,
- "length": 26,
- "value": "\"sdk_distribution_version\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 15999,
- "length": 18,
- "value": "\"sdk_distribution\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 16088,
- "length": 11,
- "value": "\"automated\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 16124,
- "length": 8,
- "value": "\"hidden\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 13855,
- "length": 19,
- "value": "\"client_created_at\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 13908,
- "length": 30,
- "value": "\"client_created_at_utc_offset\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 13964,
- "length": 12,
- "value": "\"session_id\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 14027,
- "length": 13,
- "value": "\"custom_data\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 14166,
- "length": 16,
- "value": "\"interaction_id\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 14207,
- "length": 6,
- "value": "\"data\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 14357,
- "length": 7,
- "value": "\"email\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 14410,
- "length": 14,
- "value": "\"mparticle_id\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 14489,
- "length": 9,
- "value": "\"os_name\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 14524,
- "length": 12,
- "value": "\"os_version\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 14560,
- "length": 10,
- "value": "\"os_build\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 14649,
- "length": 23,
- "value": "\"content_size_category\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 14698,
- "length": 12,
- "value": "\"locale_raw\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 14744,
- "length": 21,
- "value": "\"locale_country_code\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 14800,
- "length": 22,
- "value": "\"locale_language_code\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 14848,
- "length": 12,
- "value": "\"utc_offset\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 14901,
- "length": 20,
- "value": "\"integration_config\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 14959,
- "length": 15,
- "value": "\"advertiser_id\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 15054,
- "length": 22,
- "value": "\"cf_bundle_identifier\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 15100,
- "length": 32,
- "value": "\"cf_bundle_short_version_string\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 15154,
- "length": 19,
- "value": "\"cf_bundle_version\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 15205,
- "length": 19,
- "value": "\"app_store_receipt\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 15253,
- "length": 7,
- "value": "\"debug\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 15295,
- "length": 19,
- "value": "\"overriding_styles\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 15347,
- "length": 19,
- "value": "\"deployment_target\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 15391,
- "length": 13,
- "value": "\"dt_compiler\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 15434,
- "length": 19,
- "value": "\"dt_platform_build\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 15482,
- "length": 18,
- "value": "\"dt_platform_name\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 15532,
- "length": 21,
- "value": "\"dt_platform_version\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 15578,
- "length": 14,
- "value": "\"dt_sdk_build\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 15616,
- "length": 13,
- "value": "\"dt_sdk_name\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 15651,
- "length": 10,
- "value": "\"dt_xcode\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 15688,
- "length": 16,
- "value": "\"dt_xcode_build\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 15731,
- "length": 13,
- "value": "\"sdk_version\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 15783,
- "length": 26,
- "value": "\"sdk_programming_language\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 15839,
- "length": 17,
- "value": "\"sdk_author_name\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 15884,
- "length": 14,
- "value": "\"sdk_platform\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 15937,
- "length": 26,
- "value": "\"sdk_distribution_version\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 15999,
- "length": 18,
- "value": "\"sdk_distribution\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 16088,
- "length": 11,
- "value": "\"automated\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 16124,
- "length": 8,
- "value": "\"hidden\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 16384,
- "length": 8,
- "value": "\"file[]\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Configuration.swift",
- "kind": "StringLiteral",
- "offset": 595,
- "length": 22,
- "value": "\"support_display_name\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Configuration.swift",
- "kind": "StringLiteral",
- "offset": 646,
- "length": 23,
- "value": "\"support_display_email\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Configuration.swift",
- "kind": "StringLiteral",
- "offset": 701,
- "length": 19,
- "value": "\"support_image_url\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Configuration.swift",
- "kind": "StringLiteral",
- "offset": 749,
- "length": 15,
- "value": "\"hide_branding\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Configuration.swift",
- "kind": "StringLiteral",
- "offset": 794,
- "length": 16,
- "value": "\"message_center\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Configuration.swift",
- "kind": "StringLiteral",
- "offset": 846,
- "length": 24,
- "value": "\"message_center_enabled\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Configuration.swift",
- "kind": "StringLiteral",
- "offset": 900,
- "length": 17,
- "value": "\"metrics_enabled\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Configuration.swift",
- "kind": "StringLiteral",
- "offset": 957,
- "length": 23,
- "value": "\"apptimize_integration\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Configuration.swift",
- "kind": "StringLiteral",
- "offset": 1017,
- "length": 15,
- "value": "\"collect_ad_id\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Configuration.swift",
- "kind": "StringLiteral",
- "offset": 595,
- "length": 22,
- "value": "\"support_display_name\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Configuration.swift",
- "kind": "StringLiteral",
- "offset": 646,
- "length": 23,
- "value": "\"support_display_email\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Configuration.swift",
- "kind": "StringLiteral",
- "offset": 701,
- "length": 19,
- "value": "\"support_image_url\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Configuration.swift",
- "kind": "StringLiteral",
- "offset": 749,
- "length": 15,
- "value": "\"hide_branding\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Configuration.swift",
- "kind": "StringLiteral",
- "offset": 794,
- "length": 16,
- "value": "\"message_center\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Configuration.swift",
- "kind": "StringLiteral",
- "offset": 846,
- "length": 24,
- "value": "\"message_center_enabled\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Configuration.swift",
- "kind": "StringLiteral",
- "offset": 900,
- "length": 17,
- "value": "\"metrics_enabled\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Configuration.swift",
- "kind": "StringLiteral",
- "offset": 957,
- "length": 23,
- "value": "\"apptimize_integration\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Configuration.swift",
- "kind": "StringLiteral",
- "offset": 1017,
- "length": 15,
- "value": "\"collect_ad_id\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Configuration.swift",
- "kind": "StringLiteral",
- "offset": 1402,
- "length": 9,
- "value": "\"fg_poll\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Configuration.swift",
- "kind": "StringLiteral",
- "offset": 1457,
- "length": 9,
- "value": "\"bg_poll\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Configuration.swift",
- "kind": "StringLiteral",
- "offset": 1499,
- "length": 16,
- "value": "\"email_required\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Configuration.swift",
- "kind": "StringLiteral",
- "offset": 1553,
- "length": 20,
- "value": "\"notification_popup\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Configuration.swift",
- "kind": "StringLiteral",
- "offset": 1402,
- "length": 9,
- "value": "\"fg_poll\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Configuration.swift",
- "kind": "StringLiteral",
- "offset": 1457,
- "length": 9,
- "value": "\"bg_poll\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Configuration.swift",
- "kind": "StringLiteral",
- "offset": 1499,
- "length": 16,
- "value": "\"email_required\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Configuration.swift",
- "kind": "StringLiteral",
- "offset": 1553,
- "length": 20,
- "value": "\"notification_popup\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Configuration.swift",
- "kind": "StringLiteral",
- "offset": 1746,
- "length": 9,
- "value": "\"enabled\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Configuration.swift",
- "kind": "StringLiteral",
- "offset": 1746,
- "length": 9,
- "value": "\"enabled\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyV11Configuration.swift",
- "kind": "StringLiteral",
- "offset": 1293,
- "length": 13,
- "value": "\"submit_text\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyV11Configuration.swift",
- "kind": "StringLiteral",
- "offset": 1338,
- "length": 18,
- "value": "\"validation_error\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyV11Configuration.swift",
- "kind": "StringLiteral",
- "offset": 1385,
- "length": 13,
- "value": "\"description\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyV11Configuration.swift",
- "kind": "StringLiteral",
- "offset": 1430,
- "length": 17,
- "value": "\"success_message\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyV11Configuration.swift",
- "kind": "StringLiteral",
- "offset": 1482,
- "length": 22,
- "value": "\"show_success_message\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyV11Configuration.swift",
- "kind": "StringLiteral",
- "offset": 1533,
- "length": 15,
- "value": "\"required_text\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyV11Configuration.swift",
- "kind": "StringLiteral",
- "offset": 1609,
- "length": 21,
- "value": "\"close_confirm_title\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyV11Configuration.swift",
- "kind": "StringLiteral",
- "offset": 1671,
- "length": 23,
- "value": "\"close_confirm_message\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyV11Configuration.swift",
- "kind": "StringLiteral",
- "offset": 1743,
- "length": 26,
- "value": "\"close_confirm_close_text\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyV11Configuration.swift",
- "kind": "StringLiteral",
- "offset": 1817,
- "length": 25,
- "value": "\"close_confirm_back_text\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyV11Configuration.swift",
- "kind": "StringLiteral",
- "offset": 1877,
- "length": 22,
- "value": "\"terms_and_conditions\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyV11Configuration.swift",
- "kind": "StringLiteral",
- "offset": 1293,
- "length": 13,
- "value": "\"submit_text\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyV11Configuration.swift",
- "kind": "StringLiteral",
- "offset": 1338,
- "length": 18,
- "value": "\"validation_error\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyV11Configuration.swift",
- "kind": "StringLiteral",
- "offset": 1385,
- "length": 13,
- "value": "\"description\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyV11Configuration.swift",
- "kind": "StringLiteral",
- "offset": 1430,
- "length": 17,
- "value": "\"success_message\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyV11Configuration.swift",
- "kind": "StringLiteral",
- "offset": 1482,
- "length": 22,
- "value": "\"show_success_message\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyV11Configuration.swift",
- "kind": "StringLiteral",
- "offset": 1533,
- "length": 15,
- "value": "\"required_text\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyV11Configuration.swift",
- "kind": "StringLiteral",
- "offset": 1609,
- "length": 21,
- "value": "\"close_confirm_title\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyV11Configuration.swift",
- "kind": "StringLiteral",
- "offset": 1671,
- "length": 23,
- "value": "\"close_confirm_message\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyV11Configuration.swift",
- "kind": "StringLiteral",
- "offset": 1743,
- "length": 26,
- "value": "\"close_confirm_close_text\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyV11Configuration.swift",
- "kind": "StringLiteral",
- "offset": 1817,
- "length": 25,
- "value": "\"close_confirm_back_text\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyV11Configuration.swift",
- "kind": "StringLiteral",
- "offset": 1877,
- "length": 22,
- "value": "\"terms_and_conditions\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/AppRelease.swift",
- "kind": "StringLiteral",
- "offset": 350,
- "length": 5,
- "value": "\"ios\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/AppRelease.swift",
- "kind": "IntegerLiteral",
- "offset": 622,
- "length": 1,
- "value": "0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/AppRelease.swift",
- "kind": "IntegerLiteral",
- "offset": 638,
- "length": 1,
- "value": "0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/AppRelease.swift",
- "kind": "BooleanLiteral",
- "offset": 677,
- "length": 4,
- "value": "true"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/AppRelease.swift",
- "kind": "IntegerLiteral",
- "offset": 883,
- "length": 1,
- "value": "0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/AppRelease.swift",
- "kind": "IntegerLiteral",
- "offset": 899,
- "length": 1,
- "value": "0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/AppRelease.swift",
- "kind": "BooleanLiteral",
- "offset": 936,
- "length": 4,
- "value": "true"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/AppRelease.swift",
- "kind": "BooleanLiteral",
- "offset": 1091,
- "length": 5,
- "value": "false"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/AppRelease.swift",
- "kind": "BooleanLiteral",
- "offset": 1176,
- "length": 5,
- "value": "false"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/AppRelease.swift",
- "kind": "BooleanLiteral",
- "offset": 1288,
- "length": 5,
- "value": "false"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/AppRelease.swift",
- "kind": "BooleanLiteral",
- "offset": 2200,
- "length": 5,
- "value": "false"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/AppRelease.swift",
- "kind": "BooleanLiteral",
- "offset": 2347,
- "length": 5,
- "value": "false"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+NotificationName.swift",
- "kind": "StringLiteral",
- "offset": 266,
- "length": 32,
- "value": "\"com.apptentive.payloadEnqueued\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+NotificationName.swift",
- "kind": "StringLiteral",
- "offset": 350,
- "length": 31,
- "value": "\"com.apptentive.payloadSending\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+NotificationName.swift",
- "kind": "StringLiteral",
- "offset": 430,
- "length": 28,
- "value": "\"com.apptentive.payloadSent\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+NotificationName.swift",
- "kind": "StringLiteral",
- "offset": 509,
- "length": 30,
- "value": "\"com.apptentive.payloadFailed\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+NotificationName.swift",
- "kind": "StringLiteral",
- "offset": 704,
- "length": 39,
- "value": "\"com.apptentive.apptentiveEventEngaged\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/Default UI\/MessageCenterViewController.swift",
- "kind": "StringLiteral",
- "offset": 812,
- "length": 21,
- "value": "\"MessageCellReceived\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/Default UI\/MessageCenterViewController.swift",
- "kind": "StringLiteral",
- "offset": 862,
- "length": 17,
- "value": "\"MessageSentCell\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/Default UI\/MessageCenterViewController.swift",
- "kind": "StringLiteral",
- "offset": 913,
- "length": 22,
- "value": "\"AutomatedMessageCell\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/Default UI\/MessageCenterViewController.swift",
- "kind": "BooleanLiteral",
- "offset": 24568,
- "length": 5,
- "value": "false"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/Default UI\/MessageCenterViewController.swift",
- "kind": "IntegerLiteral",
- "offset": 24669,
- "length": 6,
- "value": "0xFFFF"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/Default UI\/MessageCenterViewController.swift",
- "kind": "StringLiteral",
- "offset": 220,
- "length": 27,
- "value": "\"ApptentiveKit.MessageCenterViewController\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/Default UI\/MessageCenterViewController.swift",
- "kind": "StringLiteral",
- "offset": 220,
- "length": 27,
- "value": "\"ApptentiveKit.MessageCenterViewController\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Dialog\/DialogViewModel.swift",
- "kind": "StringLiteral",
- "offset": 6309,
- "length": 24,
- "value": "\"invoked_interaction_id\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Dialog\/DialogViewModel.swift",
- "kind": "StringLiteral",
- "offset": 6358,
- "length": 11,
- "value": "\"action_id\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Dialog\/DialogViewModel.swift",
- "kind": "StringLiteral",
- "offset": 6309,
- "length": 24,
- "value": "\"invoked_interaction_id\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Dialog\/DialogViewModel.swift",
- "kind": "StringLiteral",
- "offset": 6358,
- "length": 11,
- "value": "\"action_id\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Dialog\/UI\/DialogView.swift",
- "kind": "IntegerLiteral",
- "offset": 1277,
- "length": 2,
- "value": "15"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Dialog\/UI\/DialogView.swift",
- "kind": "IntegerLiteral",
- "offset": 1381,
- "length": 1,
- "value": "0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Dialog\/UI\/DialogView.swift",
- "kind": "BooleanLiteral",
- "offset": 1654,
- "length": 5,
- "value": "false"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Dialog\/UI\/DialogView.swift",
- "kind": "BooleanLiteral",
- "offset": 2617,
- "length": 5,
- "value": "false"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyEngagement.swift",
- "kind": "BooleanLiteral",
- "offset": 292,
- "length": 4,
- "value": "true"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyEngagement.swift",
- "kind": "StringLiteral",
- "offset": 969,
- "length": 14,
- "value": "\"interactions\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyEngagement.swift",
- "kind": "StringLiteral",
- "offset": 1016,
- "length": 12,
- "value": "\"codePoints\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyEngagement.swift",
- "kind": "StringLiteral",
- "offset": 209,
- "length": 16,
- "value": "\"ApptentiveKit.LegacyEngagement\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyRandom.swift",
- "kind": "StringLiteral",
- "offset": 848,
- "length": 15,
- "value": "\"random_values\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyRandom.swift",
- "kind": "StringLiteral",
- "offset": 201,
- "length": 12,
- "value": "\"ApptentiveKit.LegacyRandom\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyDevice.swift",
- "kind": "StringLiteral",
- "offset": 833,
- "length": 12,
- "value": "\"customData\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyDevice.swift",
- "kind": "StringLiteral",
- "offset": 201,
- "length": 12,
- "value": "\"ApptentiveKit.LegacyDevice\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Targeting\/Criteria+Logging.swift",
- "kind": "IntegerLiteral",
- "offset": 4400,
- "length": 1,
- "value": "0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/Default UI\/EditProfileViewController.swift",
- "kind": "StringLiteral",
- "offset": 183,
- "length": 25,
- "value": "\"ApptentiveKit.EditProfileViewController\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadata.swift",
- "kind": "BooleanLiteral",
- "offset": 322,
- "length": 4,
- "value": "true"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadata.swift",
- "kind": "StringLiteral",
- "offset": 229,
- "length": 26,
- "value": "\"ApptentiveKit.LegacyConversationMetadata\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/ApptentiveImageView.swift",
- "kind": "StringLiteral",
- "offset": 197,
- "length": 19,
- "value": "\"ApptentiveKit.ApptentiveImageView\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/ApptentiveImageView.swift",
- "kind": "StringLiteral",
- "offset": 197,
- "length": 19,
- "value": "\"ApptentiveKit.ApptentiveImageView\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/PersonContent.swift",
- "kind": "StringLiteral",
- "offset": 1018,
- "length": 7,
- "value": "\"email\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/PersonContent.swift",
- "kind": "StringLiteral",
- "offset": 1053,
- "length": 14,
- "value": "\"mparticle_id\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/PersonContent.swift",
- "kind": "StringLiteral",
- "offset": 1094,
- "length": 13,
- "value": "\"custom_data\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/PersonContent.swift",
- "kind": "StringLiteral",
- "offset": 1018,
- "length": 7,
- "value": "\"email\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/PersonContent.swift",
- "kind": "StringLiteral",
- "offset": 1053,
- "length": 14,
- "value": "\"mparticle_id\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/PersonContent.swift",
- "kind": "StringLiteral",
- "offset": 1094,
- "length": 13,
- "value": "\"custom_data\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/MessageContent.swift",
- "kind": "StringLiteral",
- "offset": 1026,
- "length": 13,
- "value": "\"custom_data\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/MessageContent.swift",
- "kind": "StringLiteral",
- "offset": 1067,
- "length": 11,
- "value": "\"automated\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/MessageContent.swift",
- "kind": "StringLiteral",
- "offset": 1103,
- "length": 8,
- "value": "\"hidden\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/MessageContent.swift",
- "kind": "StringLiteral",
- "offset": 1026,
- "length": 13,
- "value": "\"custom_data\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/MessageContent.swift",
- "kind": "StringLiteral",
- "offset": 1067,
- "length": 11,
- "value": "\"automated\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/MessageContent.swift",
- "kind": "StringLiteral",
- "offset": 1103,
- "length": 8,
- "value": "\"hidden\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift",
- "kind": "IntegerLiteral",
- "offset": 17565,
- "length": 5,
- "value": "15411"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift",
- "kind": "IntegerLiteral",
- "offset": 19768,
- "length": 1,
- "value": "0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift",
- "kind": "IntegerLiteral",
- "offset": 19842,
- "length": 1,
- "value": "1"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift",
- "kind": "IntegerLiteral",
- "offset": 19912,
- "length": 1,
- "value": "2"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift",
- "kind": "IntegerLiteral",
- "offset": 19979,
- "length": 1,
- "value": "3"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift",
- "kind": "IntegerLiteral",
- "offset": 20050,
- "length": 1,
- "value": "4"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift",
- "kind": "IntegerLiteral",
- "offset": 20138,
- "length": 1,
- "value": "5"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift",
- "kind": "IntegerLiteral",
- "offset": 20213,
- "length": 1,
- "value": "6"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift",
- "kind": "IntegerLiteral",
- "offset": 20265,
- "length": 1,
- "value": "7"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift",
- "kind": "IntegerLiteral",
- "offset": 20321,
- "length": 1,
- "value": "8"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift",
- "kind": "IntegerLiteral",
- "offset": 20393,
- "length": 1,
- "value": "9"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift",
- "kind": "IntegerLiteral",
- "offset": 20476,
- "length": 2,
- "value": "10"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift",
- "kind": "IntegerLiteral",
- "offset": 20614,
- "length": 2,
- "value": "11"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift",
- "kind": "IntegerLiteral",
- "offset": 19768,
- "length": 1,
- "value": "0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift",
- "kind": "IntegerLiteral",
- "offset": 19842,
- "length": 1,
- "value": "1"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift",
- "kind": "IntegerLiteral",
- "offset": 19912,
- "length": 1,
- "value": "2"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift",
- "kind": "IntegerLiteral",
- "offset": 19979,
- "length": 1,
- "value": "3"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift",
- "kind": "IntegerLiteral",
- "offset": 20050,
- "length": 1,
- "value": "4"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift",
- "kind": "IntegerLiteral",
- "offset": 20138,
- "length": 1,
- "value": "5"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift",
- "kind": "IntegerLiteral",
- "offset": 20213,
- "length": 1,
- "value": "6"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift",
- "kind": "IntegerLiteral",
- "offset": 20265,
- "length": 1,
- "value": "7"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift",
- "kind": "IntegerLiteral",
- "offset": 20321,
- "length": 1,
- "value": "8"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift",
- "kind": "IntegerLiteral",
- "offset": 20393,
- "length": 1,
- "value": "9"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift",
- "kind": "IntegerLiteral",
- "offset": 20476,
- "length": 2,
- "value": "10"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift",
- "kind": "IntegerLiteral",
- "offset": 20614,
- "length": 2,
- "value": "11"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift",
- "kind": "BooleanLiteral",
- "offset": 21594,
- "length": 4,
- "value": "true"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift",
- "kind": "BooleanLiteral",
- "offset": 22983,
- "length": 5,
- "value": "false"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift",
- "kind": "StringLiteral",
- "offset": 20752,
- "length": 23,
- "value": "\"ApptentiveKit.ApptentiveConfiguration\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift",
- "kind": "IntegerLiteral",
- "offset": 24347,
- "length": 1,
- "value": "0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift",
- "kind": "IntegerLiteral",
- "offset": 24425,
- "length": 1,
- "value": "1"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift",
- "kind": "IntegerLiteral",
- "offset": 24521,
- "length": 1,
- "value": "2"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift",
- "kind": "IntegerLiteral",
- "offset": 24584,
- "length": 1,
- "value": "3"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift",
- "kind": "IntegerLiteral",
- "offset": 24347,
- "length": 1,
- "value": "0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift",
- "kind": "IntegerLiteral",
- "offset": 24425,
- "length": 1,
- "value": "1"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift",
- "kind": "IntegerLiteral",
- "offset": 24521,
- "length": 1,
- "value": "2"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift",
- "kind": "IntegerLiteral",
- "offset": 24584,
- "length": 1,
- "value": "3"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift",
- "kind": "IntegerLiteral",
- "offset": 24834,
- "length": 1,
- "value": "0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift",
- "kind": "IntegerLiteral",
- "offset": 24892,
- "length": 1,
- "value": "1"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift",
- "kind": "IntegerLiteral",
- "offset": 24940,
- "length": 1,
- "value": "2"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift",
- "kind": "IntegerLiteral",
- "offset": 24989,
- "length": 1,
- "value": "3"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift",
- "kind": "IntegerLiteral",
- "offset": 25044,
- "length": 1,
- "value": "4"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift",
- "kind": "IntegerLiteral",
- "offset": 25128,
- "length": 1,
- "value": "5"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift",
- "kind": "IntegerLiteral",
- "offset": 25193,
- "length": 1,
- "value": "6"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift",
- "kind": "IntegerLiteral",
- "offset": 24834,
- "length": 1,
- "value": "0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift",
- "kind": "IntegerLiteral",
- "offset": 24892,
- "length": 1,
- "value": "1"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift",
- "kind": "IntegerLiteral",
- "offset": 24940,
- "length": 1,
- "value": "2"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift",
- "kind": "IntegerLiteral",
- "offset": 24989,
- "length": 1,
- "value": "3"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift",
- "kind": "IntegerLiteral",
- "offset": 25044,
- "length": 1,
- "value": "4"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift",
- "kind": "IntegerLiteral",
- "offset": 25128,
- "length": 1,
- "value": "5"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift",
- "kind": "IntegerLiteral",
- "offset": 25193,
- "length": 1,
- "value": "6"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift",
- "kind": "StringLiteral",
- "offset": 25745,
- "length": 18,
- "value": "\"ApptentiveKit.TermsAndConditions\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/DeviceContent.swift",
- "kind": "StringLiteral",
- "offset": 2478,
- "length": 9,
- "value": "\"os_name\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/DeviceContent.swift",
- "kind": "StringLiteral",
- "offset": 2513,
- "length": 12,
- "value": "\"os_version\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/DeviceContent.swift",
- "kind": "StringLiteral",
- "offset": 2549,
- "length": 10,
- "value": "\"os_build\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/DeviceContent.swift",
- "kind": "StringLiteral",
- "offset": 2638,
- "length": 23,
- "value": "\"content_size_category\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/DeviceContent.swift",
- "kind": "StringLiteral",
- "offset": 2687,
- "length": 12,
- "value": "\"locale_raw\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/DeviceContent.swift",
- "kind": "StringLiteral",
- "offset": 2733,
- "length": 21,
- "value": "\"locale_country_code\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/DeviceContent.swift",
- "kind": "StringLiteral",
- "offset": 2789,
- "length": 22,
- "value": "\"locale_language_code\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/DeviceContent.swift",
- "kind": "StringLiteral",
- "offset": 2852,
- "length": 20,
- "value": "\"integration_config\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/DeviceContent.swift",
- "kind": "StringLiteral",
- "offset": 2910,
- "length": 15,
- "value": "\"advertiser_id\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/DeviceContent.swift",
- "kind": "StringLiteral",
- "offset": 2952,
- "length": 13,
- "value": "\"custom_data\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/DeviceContent.swift",
- "kind": "StringLiteral",
- "offset": 2478,
- "length": 9,
- "value": "\"os_name\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/DeviceContent.swift",
- "kind": "StringLiteral",
- "offset": 2513,
- "length": 12,
- "value": "\"os_version\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/DeviceContent.swift",
- "kind": "StringLiteral",
- "offset": 2549,
- "length": 10,
- "value": "\"os_build\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/DeviceContent.swift",
- "kind": "StringLiteral",
- "offset": 2638,
- "length": 23,
- "value": "\"content_size_category\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/DeviceContent.swift",
- "kind": "StringLiteral",
- "offset": 2687,
- "length": 12,
- "value": "\"locale_raw\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/DeviceContent.swift",
- "kind": "StringLiteral",
- "offset": 2733,
- "length": 21,
- "value": "\"locale_country_code\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/DeviceContent.swift",
- "kind": "StringLiteral",
- "offset": 2789,
- "length": 22,
- "value": "\"locale_language_code\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/DeviceContent.swift",
- "kind": "StringLiteral",
- "offset": 2852,
- "length": 20,
- "value": "\"integration_config\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/DeviceContent.swift",
- "kind": "StringLiteral",
- "offset": 2910,
- "length": 15,
- "value": "\"advertiser_id\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/DeviceContent.swift",
- "kind": "StringLiteral",
- "offset": 2952,
- "length": 13,
- "value": "\"custom_data\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Environment.swift",
- "kind": "StringLiteral",
- "offset": 6445,
- "length": 14,
- "value": "\"Distribution\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Environment.swift",
- "kind": "StringLiteral",
- "offset": 6476,
- "length": 7,
- "value": "\"plist\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Environment.swift",
- "kind": "Array",
- "offset": 6635,
- "length": 2,
- "value": "[]"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Environment.swift",
- "kind": "StringLiteral",
- "offset": 6718,
- "length": 28,
- "value": "\"CFBundleShortVersionString\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Environment.swift",
- "kind": "StringLiteral",
- "offset": 6810,
- "length": 65,
- "value": "\"Unable to read SDK version from ApptentiveKit's Info.plist file\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Environment.swift",
- "kind": "StringLiteral",
- "offset": 6896,
- "length": 13,
- "value": "\"Unavailable\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Environment.swift",
- "kind": "StringLiteral",
- "offset": 6991,
- "length": 28,
- "value": "\"CFBundleShortVersionString\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Environment.swift",
- "kind": "StringLiteral",
- "offset": 7140,
- "length": 133,
- "value": "\"ApptentiveKit framework is damaged! Version in Info.plist (\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Environment.swift",
- "kind": "StringLiteral",
- "offset": 7225,
- "length": 1,
- "value": "\") does not match SDK version (\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Environment.swift",
- "kind": "StringLiteral",
- "offset": 7271,
- "length": 1,
- "value": "\")\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/PayloadSender.swift",
- "kind": "StringLiteral",
- "offset": 267,
- "length": 7,
- "value": "\"error\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/PayloadSender.swift",
- "kind": "StringLiteral",
- "offset": 303,
- "length": 9,
- "value": "\"payload\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/PayloadSender.swift",
- "kind": "BooleanLiteral",
- "offset": 1759,
- "length": 5,
- "value": "false"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/PayloadSender.swift",
- "kind": "BooleanLiteral",
- "offset": 4250,
- "length": 4,
- "value": "true"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/PayloadSender.swift",
- "kind": "BooleanLiteral",
- "offset": 4373,
- "length": 5,
- "value": "false"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/PayloadSender.swift",
- "kind": "BooleanLiteral",
- "offset": 4474,
- "length": 5,
- "value": "false"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/PayloadSender.swift",
- "kind": "BooleanLiteral",
- "offset": 4612,
- "length": 5,
- "value": "false"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/PayloadSender.swift",
- "kind": "BooleanLiteral",
- "offset": 4929,
- "length": 4,
- "value": "true"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/MessageManager.swift",
- "kind": "IntegerLiteral",
- "offset": 1392,
- "length": 2,
- "value": "44"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/MessageManager.swift",
- "kind": "IntegerLiteral",
- "offset": 1404,
- "length": 2,
- "value": "44"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/MessageManager.swift",
- "kind": "BooleanLiteral",
- "offset": 2594,
- "length": 4,
- "value": "true"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/MessageManager.swift",
- "kind": "BooleanLiteral",
- "offset": 2907,
- "length": 5,
- "value": "false"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/EventContent.swift",
- "kind": "StringLiteral",
- "offset": 2625,
- "length": 16,
- "value": "\"interaction_id\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/EventContent.swift",
- "kind": "StringLiteral",
- "offset": 2666,
- "length": 6,
- "value": "\"data\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/EventContent.swift",
- "kind": "StringLiteral",
- "offset": 2704,
- "length": 13,
- "value": "\"custom_data\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/EventContent.swift",
- "kind": "StringLiteral",
- "offset": 2625,
- "length": 16,
- "value": "\"interaction_id\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/EventContent.swift",
- "kind": "StringLiteral",
- "offset": 2666,
- "length": 6,
- "value": "\"data\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/EventContent.swift",
- "kind": "StringLiteral",
- "offset": 2704,
- "length": 13,
- "value": "\"custom_data\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Dialog\/UI\/DialogButton.swift",
- "kind": "IntegerLiteral",
- "offset": 648,
- "length": 1,
- "value": "0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Dialog\/UI\/DialogButton.swift",
- "kind": "IntegerLiteral",
- "offset": 750,
- "length": 1,
- "value": "0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 1305,
- "length": 13,
- "value": "\"description\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 1349,
- "length": 17,
- "value": "\"success_message\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 1407,
- "length": 22,
- "value": "\"show_success_message\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 1456,
- "length": 13,
- "value": "\"submit_text\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 1494,
- "length": 11,
- "value": "\"next_text\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 1537,
- "length": 18,
- "value": "\"validation_error\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 1584,
- "length": 15,
- "value": "\"required_text\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 1638,
- "length": 21,
- "value": "\"close_confirm_title\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 1700,
- "length": 23,
- "value": "\"close_confirm_message\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 1773,
- "length": 26,
- "value": "\"close_confirm_close_text\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 1848,
- "length": 25,
- "value": "\"close_confirm_back_text\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 1908,
- "length": 22,
- "value": "\"terms_and_conditions\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 1959,
- "length": 15,
- "value": "\"question_sets\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 1999,
- "length": 11,
- "value": "\"render_as\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 2043,
- "length": 19,
- "value": "\"intro_button_text\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 2097,
- "length": 21,
- "value": "\"success_button_text\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 2149,
- "length": 17,
- "value": "\"disclaimer_text\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 1305,
- "length": 13,
- "value": "\"description\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 1349,
- "length": 17,
- "value": "\"success_message\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 1407,
- "length": 22,
- "value": "\"show_success_message\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 1456,
- "length": 13,
- "value": "\"submit_text\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 1494,
- "length": 11,
- "value": "\"next_text\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 1537,
- "length": 18,
- "value": "\"validation_error\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 1584,
- "length": 15,
- "value": "\"required_text\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 1638,
- "length": 21,
- "value": "\"close_confirm_title\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 1700,
- "length": 23,
- "value": "\"close_confirm_message\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 1773,
- "length": 26,
- "value": "\"close_confirm_close_text\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 1848,
- "length": 25,
- "value": "\"close_confirm_back_text\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 1908,
- "length": 22,
- "value": "\"terms_and_conditions\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 1959,
- "length": 15,
- "value": "\"question_sets\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 1999,
- "length": 11,
- "value": "\"render_as\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 2043,
- "length": 19,
- "value": "\"intro_button_text\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 2097,
- "length": 21,
- "value": "\"success_button_text\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 2149,
- "length": 17,
- "value": "\"disclaimer_text\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 2861,
- "length": 7,
- "value": "\"value\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 2953,
- "length": 15,
- "value": "\"error_message\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 3029,
- "length": 16,
- "value": "\"answer_choices\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 3079,
- "length": 16,
- "value": "\"min_selections\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 3129,
- "length": 16,
- "value": "\"max_selections\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 3208,
- "length": 15,
- "value": "\"freeform_hint\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 3253,
- "length": 5,
- "value": "\"min\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 3287,
- "length": 5,
- "value": "\"max\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 3325,
- "length": 11,
- "value": "\"min_label\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 3369,
- "length": 11,
- "value": "\"max_label\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 2861,
- "length": 7,
- "value": "\"value\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 2953,
- "length": 15,
- "value": "\"error_message\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 3029,
- "length": 16,
- "value": "\"answer_choices\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 3079,
- "length": 16,
- "value": "\"min_selections\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 3129,
- "length": 16,
- "value": "\"max_selections\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 3208,
- "length": 15,
- "value": "\"freeform_hint\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 3253,
- "length": 5,
- "value": "\"min\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 3287,
- "length": 5,
- "value": "\"max\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 3325,
- "length": 11,
- "value": "\"min_label\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 3369,
- "length": 11,
- "value": "\"max_label\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 3464,
- "length": 13,
- "value": "\"multichoice\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 3506,
- "length": 13,
- "value": "\"multiselect\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 3548,
- "length": 12,
- "value": "\"singleline\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 3464,
- "length": 13,
- "value": "\"multichoice\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 3506,
- "length": 13,
- "value": "\"multiselect\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 3548,
- "length": 12,
- "value": "\"singleline\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 3929,
- "length": 6,
- "value": "\"hint\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 3929,
- "length": 6,
- "value": "\"hint\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 4030,
- "length": 15,
- "value": "\"select_option\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 4075,
- "length": 14,
- "value": "\"select_other\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 4030,
- "length": 15,
- "value": "\"select_option\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 4075,
- "length": 14,
- "value": "\"select_other\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 4496,
- "length": 13,
- "value": "\"button_text\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 4496,
- "length": 13,
- "value": "\"button_text\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 5584,
- "length": 22,
- "value": "\"next_question_set_id\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 5584,
- "length": 22,
- "value": "\"next_question_set_id\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/EngagementManifest.swift",
- "kind": "StringLiteral",
- "offset": 1227,
- "length": 16,
- "value": "\"interaction_id\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/EngagementManifest.swift",
- "kind": "StringLiteral",
- "offset": 1227,
- "length": 16,
- "value": "\"interaction_id\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/AttachmentManager.swift",
- "kind": "StringLiteral",
- "offset": 575,
- "length": 3,
- "value": "\"#\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 921,
- "length": 19,
- "value": "\"automated_message\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 970,
- "length": 16,
- "value": "\"error_messages\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 921,
- "length": 19,
- "value": "\"automated_message\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 970,
- "length": 16,
- "value": "\"error_messages\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 1398,
- "length": 11,
- "value": "\"hint_text\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 1440,
- "length": 13,
- "value": "\"send_button\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 1483,
- "length": 12,
- "value": "\"send_start\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 1522,
- "length": 9,
- "value": "\"send_ok\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 1560,
- "length": 11,
- "value": "\"send_fail\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 1601,
- "length": 12,
- "value": "\"close_text\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 1650,
- "length": 20,
- "value": "\"close_confirm_body\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 1709,
- "length": 22,
- "value": "\"close_discard_button\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 1769,
- "length": 21,
- "value": "\"close_cancel_button\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 1398,
- "length": 11,
- "value": "\"hint_text\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 1440,
- "length": 13,
- "value": "\"send_button\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 1483,
- "length": 12,
- "value": "\"send_start\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 1522,
- "length": 9,
- "value": "\"send_ok\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 1560,
- "length": 11,
- "value": "\"send_fail\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 1601,
- "length": 12,
- "value": "\"close_text\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 1650,
- "length": 20,
- "value": "\"close_confirm_body\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 1709,
- "length": 22,
- "value": "\"close_discard_button\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 1769,
- "length": 21,
- "value": "\"close_cancel_button\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 1976,
- "length": 17,
- "value": "\"http_error_body\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 2030,
- "length": 20,
- "value": "\"network_error_body\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 1976,
- "length": 17,
- "value": "\"http_error_body\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 2030,
- "length": 20,
- "value": "\"network_error_body\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 2260,
- "length": 11,
- "value": "\"image_url\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 2260,
- "length": 11,
- "value": "\"image_url\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 2649,
- "length": 11,
- "value": "\"name_hint\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 2690,
- "length": 12,
- "value": "\"email_hint\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 2733,
- "length": 13,
- "value": "\"skip_button\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 2777,
- "length": 13,
- "value": "\"save_button\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 2827,
- "length": 19,
- "value": "\"email_explanation\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 2649,
- "length": 11,
- "value": "\"name_hint\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 2690,
- "length": 12,
- "value": "\"email_hint\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 2733,
- "length": 13,
- "value": "\"skip_button\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 2777,
- "length": 13,
- "value": "\"save_button\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 2827,
- "length": 19,
- "value": "\"email_explanation\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 3059,
- "length": 11,
- "value": "\"name_hint\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 3100,
- "length": 12,
- "value": "\"email_hint\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 3143,
- "length": 13,
- "value": "\"skip_button\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 3187,
- "length": 13,
- "value": "\"save_button\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 3059,
- "length": 11,
- "value": "\"name_hint\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 3100,
- "length": 12,
- "value": "\"email_hint\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 3143,
- "length": 13,
- "value": "\"skip_button\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 3187,
- "length": 13,
- "value": "\"save_button\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/HTTPClient.swift",
- "kind": "StringLiteral",
- "offset": 6937,
- "length": 5,
- "value": "\"GET\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/HTTPClient.swift",
- "kind": "StringLiteral",
- "offset": 6958,
- "length": 5,
- "value": "\"PUT\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/HTTPClient.swift",
- "kind": "StringLiteral",
- "offset": 6980,
- "length": 6,
- "value": "\"POST\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/HTTPClient.swift",
- "kind": "StringLiteral",
- "offset": 7005,
- "length": 8,
- "value": "\"DELETE\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/HTTPClient.swift",
- "kind": "StringLiteral",
- "offset": 6937,
- "length": 5,
- "value": "\"GET\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/HTTPClient.swift",
- "kind": "StringLiteral",
- "offset": 6958,
- "length": 5,
- "value": "\"PUT\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/HTTPClient.swift",
- "kind": "StringLiteral",
- "offset": 6980,
- "length": 6,
- "value": "\"POST\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/HTTPClient.swift",
- "kind": "StringLiteral",
- "offset": 7005,
- "length": 8,
- "value": "\"DELETE\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/HTTPClient.swift",
- "kind": "StringLiteral",
- "offset": 7464,
- "length": 32,
- "value": "\"application\/json;charset=UTF-8\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Interaction.swift",
- "kind": "StringLiteral",
- "offset": 2862,
- "length": 13,
- "value": "\"api_version\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Interaction.swift",
- "kind": "StringLiteral",
- "offset": 2862,
- "length": 13,
- "value": "\"api_version\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/EnjoymentDialog\/EnjoymentDialogConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 390,
- "length": 10,
- "value": "\"yes_text\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/EnjoymentDialog\/EnjoymentDialogConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 423,
- "length": 9,
- "value": "\"no_text\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/EnjoymentDialog\/EnjoymentDialogConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 390,
- "length": 10,
- "value": "\"yes_text\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/EnjoymentDialog\/EnjoymentDialogConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 423,
- "length": 9,
- "value": "\"no_text\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "BooleanLiteral",
- "offset": 676,
- "length": 5,
- "value": "false"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "IntegerLiteral",
- "offset": 856,
- "length": 1,
- "value": "0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "StringLiteral",
- "offset": 2126,
- "length": 20,
- "value": "\"person.crop.circle\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "StringLiteral",
- "offset": 2591,
- "length": 7,
- "value": "\"xmark\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "StringLiteral",
- "offset": 3334,
- "length": 23,
- "value": "\"paperclip.circle.fill\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "StringLiteral",
- "offset": 3556,
- "length": 24,
- "value": "\"paperplane.circle.fill\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "StringLiteral",
- "offset": 3758,
- "length": 19,
- "value": "\"messageSentBubble\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "IntegerLiteral",
- "offset": 3897,
- "length": 1,
- "value": "9"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "IntegerLiteral",
- "offset": 3906,
- "length": 1,
- "value": "9"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "IntegerLiteral",
- "offset": 3917,
- "length": 2,
- "value": "18"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "IntegerLiteral",
- "offset": 3928,
- "length": 2,
- "value": "18"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "StringLiteral",
- "offset": 4112,
- "length": 23,
- "value": "\"messageReceivedBubble\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "IntegerLiteral",
- "offset": 4255,
- "length": 1,
- "value": "9"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "IntegerLiteral",
- "offset": 4264,
- "length": 2,
- "value": "18"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "IntegerLiteral",
- "offset": 4276,
- "length": 2,
- "value": "18"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "IntegerLiteral",
- "offset": 4287,
- "length": 1,
- "value": "9"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "StringLiteral",
- "offset": 4487,
- "length": 10,
- "value": "\"document\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "IntegerLiteral",
- "offset": 4617,
- "length": 2,
- "value": "14"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "IntegerLiteral",
- "offset": 4627,
- "length": 1,
- "value": "4"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "IntegerLiteral",
- "offset": 4638,
- "length": 1,
- "value": "4"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "IntegerLiteral",
- "offset": 4648,
- "length": 2,
- "value": "14"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "StringLiteral",
- "offset": 4890,
- "length": 19,
- "value": "\"minus.circle.fill\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "StringLiteral",
- "offset": 5011,
- "length": 19,
- "value": "\"minus.circle.fill\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "StringLiteral",
- "offset": 5400,
- "length": 8,
- "value": "\"circle\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "StringLiteral",
- "offset": 5579,
- "length": 8,
- "value": "\"square\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "StringLiteral",
- "offset": 5782,
- "length": 30,
- "value": "\"smallcircle.fill.circle.fill\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "StringLiteral",
- "offset": 6000,
- "length": 23,
- "value": "\"checkmark.square.fill\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "FloatLiteral",
- "offset": 7186,
- "length": 4,
- "value": "60.0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "FloatLiteral",
- "offset": 7193,
- "length": 5,
- "value": "255.0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "FloatLiteral",
- "offset": 7207,
- "length": 4,
- "value": "60.0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "FloatLiteral",
- "offset": 7214,
- "length": 5,
- "value": "255.0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "FloatLiteral",
- "offset": 7227,
- "length": 4,
- "value": "67.0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "FloatLiteral",
- "offset": 7234,
- "length": 5,
- "value": "255.0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "FloatLiteral",
- "offset": 7248,
- "length": 4,
- "value": "74.0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "FloatLiteral",
- "offset": 7255,
- "length": 5,
- "value": "255.0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "IntegerLiteral",
- "offset": 10494,
- "length": 1,
- "value": "0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "FloatLiteral",
- "offset": 10504,
- "length": 4,
- "value": "0.42"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "IntegerLiteral",
- "offset": 10516,
- "length": 1,
- "value": "1"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "IntegerLiteral",
- "offset": 10526,
- "length": 1,
- "value": "1"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "FloatLiteral",
- "offset": 11465,
- "length": 4,
- "value": "0.86"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "FloatLiteral",
- "offset": 11478,
- "length": 3,
- "value": "0.1"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "IntegerLiteral",
- "offset": 11489,
- "length": 1,
- "value": "0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "IntegerLiteral",
- "offset": 11499,
- "length": 1,
- "value": "1"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "IntegerLiteral",
- "offset": 11543,
- "length": 1,
- "value": "1"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "FloatLiteral",
- "offset": 11553,
- "length": 4,
- "value": "0.28"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "FloatLiteral",
- "offset": 11565,
- "length": 4,
- "value": "0.24"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "IntegerLiteral",
- "offset": 11578,
- "length": 1,
- "value": "1"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "FloatLiteral",
- "offset": 14232,
- "length": 4,
- "value": "60.0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "FloatLiteral",
- "offset": 14239,
- "length": 5,
- "value": "255.0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "FloatLiteral",
- "offset": 14253,
- "length": 4,
- "value": "60.0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "FloatLiteral",
- "offset": 14260,
- "length": 5,
- "value": "255.0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "FloatLiteral",
- "offset": 14273,
- "length": 4,
- "value": "67.0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "FloatLiteral",
- "offset": 14280,
- "length": 5,
- "value": "255.0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "FloatLiteral",
- "offset": 14294,
- "length": 4,
- "value": "74.0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "FloatLiteral",
- "offset": 14301,
- "length": 5,
- "value": "255.0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "FloatLiteral",
- "offset": 15301,
- "length": 4,
- "value": "60.0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "FloatLiteral",
- "offset": 15308,
- "length": 5,
- "value": "255.0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "FloatLiteral",
- "offset": 15322,
- "length": 4,
- "value": "60.0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "FloatLiteral",
- "offset": 15329,
- "length": 5,
- "value": "255.0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "FloatLiteral",
- "offset": 15342,
- "length": 4,
- "value": "67.0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "FloatLiteral",
- "offset": 15349,
- "length": 5,
- "value": "255.0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "FloatLiteral",
- "offset": 15363,
- "length": 4,
- "value": "74.0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "FloatLiteral",
- "offset": 15370,
- "length": 5,
- "value": "255.0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "FloatLiteral",
- "offset": 18691,
- "length": 4,
- "value": "0.86"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "FloatLiteral",
- "offset": 18704,
- "length": 3,
- "value": "0.1"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "IntegerLiteral",
- "offset": 18715,
- "length": 1,
- "value": "0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "IntegerLiteral",
- "offset": 18725,
- "length": 1,
- "value": "1"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "IntegerLiteral",
- "offset": 18769,
- "length": 1,
- "value": "1"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "FloatLiteral",
- "offset": 18779,
- "length": 4,
- "value": "0.28"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "FloatLiteral",
- "offset": 18791,
- "length": 4,
- "value": "0.24"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "IntegerLiteral",
- "offset": 18804,
- "length": 1,
- "value": "1"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "IntegerLiteral",
- "offset": 24962,
- "length": 15,
- "value": "1"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "IntegerLiteral",
- "offset": 24962,
- "length": 15,
- "value": "1"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "IntegerLiteral",
- "offset": 25309,
- "length": 1,
- "value": "2"
- }
- ]
-}
\ No newline at end of file
diff --git a/src/ios/ApptentiveKit.xcframework/ios-arm64_x86_64-simulator/ApptentiveKit.framework/Modules/ApptentiveKit.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface b/src/ios/ApptentiveKit.xcframework/ios-arm64_x86_64-simulator/ApptentiveKit.framework/Modules/ApptentiveKit.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface
deleted file mode 100644
index bcaec28..0000000
--- a/src/ios/ApptentiveKit.xcframework/ios-arm64_x86_64-simulator/ApptentiveKit.framework/Modules/ApptentiveKit.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface
+++ /dev/null
@@ -1,1202 +0,0 @@
-// 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 arm64-apple-ios11.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name ApptentiveKit
-// swift-module-flags-ignorable: -enable-bare-slash-regex
-import CoreTelephony
-import Foundation
-import MobileCoreServices
-import OSLog
-import PhotosUI
-import QuickLook
-import QuickLookThumbnailing
-import StoreKit
-import Swift
-import UIKit
-import _Concurrency
-import _StringProcessing
-@objc @_hasMissingDesignatedInitializers @_Concurrency.MainActor(unsafe) public class DialogViewController : UIKit.UIViewController, ApptentiveKit.DialogViewModelDelegate {
- @_Concurrency.MainActor(unsafe) @objc override dynamic public func viewDidLoad()
- @_Concurrency.MainActor(unsafe) @objc override dynamic public func viewDidAppear(_ animated: Swift.Bool)
- @_Concurrency.MainActor(unsafe) public func dismiss()
- @objc deinit
-}
-extension ApptentiveKit.DialogViewModel {
- @_hasMissingDesignatedInitializers public class Action {
- final public let label: Swift.String
- final public let actionType: ApptentiveKit.DialogViewModel.Action.ActionType
- final public let buttonTapped: () -> Swift.Void
- public enum ActionType : Swift.String {
- case dismiss
- case interaction
- case yes
- case no
- public init?(rawValue: Swift.String)
- public typealias RawValue = Swift.String
- public var rawValue: Swift.String {
- get
- }
- }
- @objc deinit
- }
-}
-extension ApptentiveKit.SurveyViewModel {
- @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers public class RangeQuestion : ApptentiveKit.SurveyViewModel.Question {
- final public let minValue: Swift.Int
- final public let maxValue: Swift.Int
- final public let minText: Swift.String?
- final public let maxText: Swift.String?
- public var selectedValueIndex: Swift.Int? {
- get
- }
- public var value: Swift.Int? {
- get
- }
- public var choiceLabels: [Swift.String] {
- get
- }
- public func selectValue(at index: Swift.Int)
- public var accessibilityHintForSegment: Swift.String {
- get
- }
- @objc deinit
- }
-}
-extension ApptentiveKit.MessageCenterViewModel {
- @_hasMissingDesignatedInitializers public class Message : Swift.Equatable {
- final public let nonce: Swift.String
- final public let direction: ApptentiveKit.MessageCenterViewModel.Message.Direction
- final public let isAutomated: Swift.Bool
- final public let attachments: [ApptentiveKit.MessageCenterViewModel.Message.Attachment]
- final public let sender: ApptentiveKit.MessageCenterViewModel.Message.Sender?
- final public let body: Swift.String?
- final public let sentDate: Foundation.Date
- final public let accessibilityLabel: Swift.String?
- final public let accessibilityHint: Swift.String?
- final public let statusText: Swift.String
- public static func == (lhs: ApptentiveKit.MessageCenterViewModel.Message, rhs: ApptentiveKit.MessageCenterViewModel.Message) -> Swift.Bool
- public enum Direction : Swift.Equatable {
- case sentFromDashboard(ApptentiveKit.MessageCenterViewModel.Message.ReadStatus)
- case sentFromDevice(ApptentiveKit.MessageCenterViewModel.Message.SentStatus)
- case automated
- public static func == (a: ApptentiveKit.MessageCenterViewModel.Message.Direction, b: ApptentiveKit.MessageCenterViewModel.Message.Direction) -> Swift.Bool
- }
- public enum SentStatus : Swift.Codable, Swift.Equatable {
- case draft
- case queued
- case sending
- case sent
- case failed
- public func hash(into hasher: inout Swift.Hasher)
- public static func == (a: ApptentiveKit.MessageCenterViewModel.Message.SentStatus, b: ApptentiveKit.MessageCenterViewModel.Message.SentStatus) -> Swift.Bool
- public func encode(to encoder: Swift.Encoder) throws
- public var hashValue: Swift.Int {
- get
- }
- public init(from decoder: Swift.Decoder) throws
- }
- public enum ReadStatus : Swift.Codable, Swift.Equatable {
- case read
- case unread(messageID: Swift.String?)
- public static func == (a: ApptentiveKit.MessageCenterViewModel.Message.ReadStatus, b: ApptentiveKit.MessageCenterViewModel.Message.ReadStatus) -> Swift.Bool
- public func encode(to encoder: Swift.Encoder) throws
- public init(from decoder: Swift.Decoder) throws
- }
- public struct Sender : Swift.Equatable {
- public static func == (a: ApptentiveKit.MessageCenterViewModel.Message.Sender, b: ApptentiveKit.MessageCenterViewModel.Message.Sender) -> Swift.Bool
- }
- @objc @_hasMissingDesignatedInitializers public class Attachment : ObjectiveC.NSObject, QuickLook.QLPreviewItem {
- final public let fileExtension: Swift.String?
- public var thumbnail: UIKit.UIImage? {
- get
- }
- public var downloadProgress: Swift.Float
- public var localURL: Foundation.URL?
- public var displayName: Swift.String {
- get
- }
- @objc public var previewItemURL: Foundation.URL? {
- @objc get
- }
- @objc public var previewItemTitle: Swift.String? {
- @objc get
- }
- @objc override dynamic public var accessibilityLabel: Swift.String? {
- @objc get
- @objc set
- }
- public var removeButtonAccessibilityLabel: Swift.String {
- get
- }
- public var viewButtonAccessibilityLabel: Swift.String {
- get
- }
- @objc deinit
- }
- @objc deinit
- }
-}
-extension ApptentiveKit.Apptentive : UserNotifications.UNUserNotificationCenterDelegate {
- @objc dynamic public func setRemoteNotificationDeviceToken(_ tokenData: Foundation.Data)
- @available(*, deprecated, message: "Use the (correctly-spelled) 'setRemoteNotificationDeviceToken(_:)' method instead.")
- @objc dynamic public func setRemoteNotifcationDeviceToken(_ tokenData: Foundation.Data)
- @objc dynamic public func didReceiveRemoteNotification(_ userInfo: [Swift.AnyHashable : Any], fetchCompletionHandler completionHandler: @escaping (UIKit.UIBackgroundFetchResult) -> Swift.Void) -> Swift.Bool
- @objc dynamic public func didReceveUserNotificationResponse(_ response: UserNotifications.UNNotificationResponse, withCompletionHandler completionHandler: @escaping () -> Swift.Void) -> Swift.Bool
- @objc dynamic public func willPresent(_ notification: UserNotifications.UNNotification, withCompletionHandler completionHandler: @escaping (UserNotifications.UNNotificationPresentationOptions) -> Swift.Void) -> Swift.Bool
- @objc dynamic public func userNotificationCenter(_ center: UserNotifications.UNUserNotificationCenter, willPresent notification: UserNotifications.UNNotification, withCompletionHandler completionHandler: @escaping (UserNotifications.UNNotificationPresentationOptions) -> Swift.Void)
- @objc dynamic public func userNotificationCenter(_ center: UserNotifications.UNUserNotificationCenter, didReceive response: UserNotifications.UNNotificationResponse, withCompletionHandler completionHandler: @escaping () -> Swift.Void)
-}
-extension ApptentiveKit.SurveyViewModel {
- @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers public class ChoiceQuestion : ApptentiveKit.SurveyViewModel.Question {
- final public let choices: [ApptentiveKit.SurveyViewModel.ChoiceQuestion.Choice]
- public func toggleChoice(at index: Swift.Int)
- public var selectionStyle: ApptentiveKit.SurveyViewModel.ChoiceQuestion.SelectionStyle {
- get
- }
- public enum SelectionStyle {
- case checkbox
- case radioButton
- public static func == (a: ApptentiveKit.SurveyViewModel.ChoiceQuestion.SelectionStyle, b: ApptentiveKit.SurveyViewModel.ChoiceQuestion.SelectionStyle) -> Swift.Bool
- public func hash(into hasher: inout Swift.Hasher)
- public var hashValue: Swift.Int {
- get
- }
- }
- @_hasMissingDesignatedInitializers public class Choice {
- final public let label: Swift.String
- final public let placeholderText: Swift.String?
- final public let supportsOther: Swift.Bool
- public var isSelected: Swift.Bool {
- get
- }
- public var isMarkedAsInvalid: Swift.Bool {
- get
- }
- public var value: Swift.String? {
- get
- set
- }
- @objc deinit
- }
- @objc deinit
- }
-}
-public struct ApptentiveLogger {
- public static var shouldHideSensitiveLogs: Swift.Bool
- public var logLevel: ApptentiveKit.LogLevel
-}
-extension ApptentiveKit.ApptentiveLogger {
- public static var `default`: ApptentiveKit.ApptentiveLogger
- public static var engagement: ApptentiveKit.ApptentiveLogger
- public static var interaction: ApptentiveKit.ApptentiveLogger
- public static var network: ApptentiveKit.ApptentiveLogger
- public static var payload: ApptentiveKit.ApptentiveLogger
- public static var targeting: ApptentiveKit.ApptentiveLogger
- public static var messages: ApptentiveKit.ApptentiveLogger
- public static var attachments: ApptentiveKit.ApptentiveLogger
- public static var logLevel: ApptentiveKit.LogLevel {
- get
- set
- }
-}
-public enum LogLevel : Swift.Int, Swift.Comparable {
- case debug
- case info
- case notice
- case warning
- case error
- case critical
- case fault
- public static func < (lhs: ApptentiveKit.LogLevel, rhs: ApptentiveKit.LogLevel) -> Swift.Bool
- public init?(rawValue: Swift.Int)
- public typealias RawValue = Swift.Int
- public var rawValue: Swift.Int {
- get
- }
-}
-@objc @_hasMissingDesignatedInitializers public class Apptentive : ObjectiveC.NSObject {
- @objc public static let shared: ApptentiveKit.Apptentive
- public var interactionPresenter: ApptentiveKit.InteractionPresenter {
- get
- set
- }
- public var theme: ApptentiveKit.Apptentive.UITheme
- @objc public var personName: Swift.String? {
- @objc get
- @objc set
- }
- @objc public var personEmailAddress: Swift.String? {
- @objc get
- @objc set
- }
- @objc public var mParticleID: Swift.String? {
- @objc get
- @objc set
- }
- public var personCustomData: ApptentiveKit.CustomData {
- get
- set
- }
- public var deviceCustomData: ApptentiveKit.CustomData {
- get
- set
- }
- @objc dynamic public var unreadMessageCount: Swift.Int
- @objc public var distributionName: Swift.String? {
- @objc get
- @objc set
- }
- @objc public var distributionVersion: Swift.String? {
- @objc get
- @objc set
- }
- public enum UITheme {
- case apptentive
- case none
- public static func == (a: ApptentiveKit.Apptentive.UITheme, b: ApptentiveKit.Apptentive.UITheme) -> Swift.Bool
- public func hash(into hasher: inout Swift.Hasher)
- public var hashValue: Swift.Int {
- get
- }
- }
- public func register(with credentials: ApptentiveKit.Apptentive.AppCredentials, completion: ((Swift.Result) -> Swift.Void)? = nil)
- public struct AppCredentials : Swift.Codable, Swift.Equatable {
- public let key: Swift.String
- public let signature: Swift.String
- public init(key: Swift.String, signature: Swift.String)
- public static func == (a: ApptentiveKit.Apptentive.AppCredentials, b: ApptentiveKit.Apptentive.AppCredentials) -> Swift.Bool
- public func encode(to encoder: Swift.Encoder) throws
- public init(from decoder: Swift.Decoder) throws
- }
- public func engage(event: ApptentiveKit.Event, from viewController: UIKit.UIViewController? = nil, completion: ((Swift.Result) -> Swift.Void)? = nil)
- public func dismissAllInteractions(animated: Swift.Bool)
- public func presentMessageCenter(from viewController: UIKit.UIViewController?, completion: ((Swift.Result) -> Swift.Void)? = nil)
- public func presentMessageCenter(from viewController: UIKit.UIViewController?, with customData: ApptentiveKit.CustomData?, completion: ((Swift.Result) -> Swift.Void)? = nil)
- @objc(sendAttachmentText:) public func sendAttachment(_ text: Swift.String)
- @objc(sendAttachmentImage:) public func sendAttachment(_ image: UIKit.UIImage)
- @objc(sendAttachmentFile:withMimeType:) public func sendAttachment(_ fileData: Foundation.Data, mediaType: Swift.String)
- public func canShowInteraction(event: ApptentiveKit.Event, completion: ((Swift.Result) -> Swift.Void)? = nil)
- convenience public init(apiBaseURL: Foundation.URL)
- @objc deinit
-}
-public enum ApptentiveError : Swift.Error {
- case internalInconsistency
- case invalidCustomDataType(Any?)
- case fileExistsAtContainerDirectoryPath
- case mismatchedCredentials
-}
-public var apptentiveAssertionHandler: (_ message: @autoclosure () -> Swift.String, _ file: Swift.StaticString, _ line: Swift.UInt) -> ()
-public protocol CustomDataCompatible {
-}
-extension Swift.String : ApptentiveKit.CustomDataCompatible {
-}
-extension Swift.Double : ApptentiveKit.CustomDataCompatible {
-}
-extension Swift.Float : ApptentiveKit.CustomDataCompatible {
-}
-extension Swift.Int : ApptentiveKit.CustomDataCompatible {
-}
-extension Swift.Bool : ApptentiveKit.CustomDataCompatible {
-}
-public struct CustomData : Swift.Equatable, Swift.Codable {
- public init()
- public subscript(key: Swift.String) -> ApptentiveKit.CustomDataCompatible? {
- get
- set
- }
- public var keys: Swift.Dictionary.Keys {
- get
- }
- public func encode(to encoder: Swift.Encoder) throws
- public init(from decoder: Swift.Decoder) throws
- public static func == (lhs: ApptentiveKit.CustomData, rhs: ApptentiveKit.CustomData) -> Swift.Bool
-}
-public protocol SurveyViewModelDelegate : AnyObject {
- func surveyViewModelDidFinish(_ viewModel: ApptentiveKit.SurveyViewModel)
- func surveyViewModelValidationDidChange(_ viewModel: ApptentiveKit.SurveyViewModel)
- func surveyViewModelSelectionDidChange(_ viewModel: ApptentiveKit.SurveyViewModel)
- func surveyViewModelPageWillChange(_ viewModel: ApptentiveKit.SurveyViewModel)
- func surveyViewModelPageDidChange(_ viewModel: ApptentiveKit.SurveyViewModel)
-}
-@_hasMissingDesignatedInitializers public class SurveyViewModel {
- final public let name: Swift.String?
- final public let isRequired: Swift.Bool
- final public let pageIndicatorSegmentCount: Swift.Int
- final public let validationErrorMessage: Swift.String
- final public let disclaimerText: Swift.String?
- public struct TermsAndConditions {
- }
- final public let termsAndConditions: ApptentiveKit.SurveyViewModel.TermsAndConditions?
- public struct CloseConfirmation {
- }
- final public let closeConfirmation: ApptentiveKit.SurveyViewModel.CloseConfirmation
- weak public var delegate: ApptentiveKit.SurveyViewModelDelegate?
- public var currentPage: ApptentiveKit.SurveyViewModel.Page {
- get
- }
- public var questions: [ApptentiveKit.SurveyViewModel.Question] {
- get
- }
- public var isMarkedAsInvalid: Swift.Bool {
- get
- }
- public var thankYouMessage: Swift.String? {
- get
- }
- public var introduction: Swift.String? {
- get
- }
- public var advanceButtonText: Swift.String {
- get
- }
- public var invalidQuestionIndexes: Foundation.IndexSet {
- get
- }
- public var surveyDidSendResponse: Swift.Bool
- public var highlightFirstQuestionSegment: Swift.Bool
- public func setValue(_ value: Swift.String?, for indexPath: Foundation.IndexPath)
- public func selectValueFromRange(at indexPath: Foundation.IndexPath)
- public func openTermsAndConditions()
- public func advance()
- public var isValid: Swift.Bool {
- get
- }
- public enum DisplayMode {
- case list
- case paged
- public static func == (a: ApptentiveKit.SurveyViewModel.DisplayMode, b: ApptentiveKit.SurveyViewModel.DisplayMode) -> Swift.Bool
- public func hash(into hasher: inout Swift.Hasher)
- public var hashValue: Swift.Int {
- get
- }
- }
- public var displayMode: ApptentiveKit.SurveyViewModel.DisplayMode {
- get
- }
- public var shouldConfirmCancel: Swift.Bool {
- get
- }
- public var currentSelectedSegmentIndex: Swift.Int? {
- get
- }
- public func launch()
- public func continuePartial()
- public func cancel(partial: Swift.Bool)
- @objc deinit
-}
-extension ApptentiveKit.SurveyViewModel {
- @_hasMissingDesignatedInitializers public class Page {
- final public let id: Swift.String
- final public let description: Swift.String?
- final public let questions: [ApptentiveKit.SurveyViewModel.Question]
- final public let advanceButtonLabel: Swift.String
- final public let pageIndicatorValue: Swift.Int?
- @objc deinit
- }
-}
-public protocol MessageCenterViewModelDelegate : AnyObject {
- func messageCenterViewModelDidBeginUpdates(_: ApptentiveKit.MessageCenterViewModel)
- func messageCenterViewModel(_: ApptentiveKit.MessageCenterViewModel, didInsertSectionsWith sectionIndexes: Foundation.IndexSet)
- func messageCenterViewModel(_: ApptentiveKit.MessageCenterViewModel, didDeleteSectionsWith sectionIndexes: Foundation.IndexSet)
- func messageCenterViewModel(_: ApptentiveKit.MessageCenterViewModel, didDeleteRowsAt indexPaths: [Foundation.IndexPath])
- func messageCenterViewModel(_: ApptentiveKit.MessageCenterViewModel, didUpdateRowsAt indexPaths: [Foundation.IndexPath])
- func messageCenterViewModel(_: ApptentiveKit.MessageCenterViewModel, didInsertRowsAt indexPaths: [Foundation.IndexPath])
- func messageCenterViewModel(_: ApptentiveKit.MessageCenterViewModel, didMoveRowsAt indexPathMoves: [(Foundation.IndexPath, Foundation.IndexPath)])
- func messageCenterViewModelDidEndUpdates(_: ApptentiveKit.MessageCenterViewModel)
- func messageCenterViewModelMessageListDidLoad(_: ApptentiveKit.MessageCenterViewModel)
- func messageCenterViewModelDraftMessageDidUpdate(_: ApptentiveKit.MessageCenterViewModel)
- func messageCenterViewModel(_: ApptentiveKit.MessageCenterViewModel, didFailToRemoveAttachmentAt index: Swift.Int, with error: Swift.Error)
- func messageCenterViewModel(_: ApptentiveKit.MessageCenterViewModel, didFailToAddAttachmentWith error: Swift.Error)
- func messageCenterViewModel(_: ApptentiveKit.MessageCenterViewModel, didFailToSendMessageWith error: Swift.Error)
- func messageCenterViewModel(_: ApptentiveKit.MessageCenterViewModel, attachmentDownloadDidFinishAt index: Swift.Int, inMessageAt indexPath: Foundation.IndexPath)
- func messageCenterViewModel(_: ApptentiveKit.MessageCenterViewModel, attachmentDownloadDidFailAt index: Swift.Int, inMessageAt indexPath: Foundation.IndexPath, with error: Swift.Error)
-}
-@_hasMissingDesignatedInitializers public class MessageCenterViewModel {
- final public let headingTitle: Swift.String
- final public let branding: Swift.String?
- final public let composerTitle: Swift.String
- final public let composerSendButtonTitle: Swift.String
- final public let composerAttachButtonTitle: Swift.String
- final public let composerPlaceholderText: Swift.String
- final public let composerCloseConfirmBody: Swift.String
- final public let composerCloseDiscardButtonTitle: Swift.String
- final public let composerCloseCancelButtonTitle: Swift.String
- final public let greetingTitle: Swift.String
- final public let greetingBody: Swift.String
- final public let greetingImageURL: Foundation.URL
- final public let statusBody: Swift.String?
- public var groupedMessages: [[ApptentiveKit.MessageCenterViewModel.Message]]
- public var hasLoadedMessages: Swift.Bool
- public var thumbnailSize: CoreFoundation.CGSize {
- get
- set
- }
- final public let profileNamePlaceholder: Swift.String
- final public let profileEmailPlaceholder: Swift.String
- final public let profileCancelButtonText: Swift.String
- final public let profileSaveButtonText: Swift.String
- final public let editProfileViewTitle: Swift.String
- final public let editProfileNamePlaceholder: Swift.String
- final public let editProfileEmailPlaceholder: Swift.String
- final public let editProfileCancelButtonText: Swift.String
- final public let editProfileSaveButtonText: Swift.String
- final public let profileMode: ApptentiveKit.MessageCenterViewModel.ProfileMode
- final public let closeButtonAccessibilityLabel: Swift.String
- final public let closeButtonAccessibilityHint: Swift.String
- final public let profileButtonAccessibilityLabel: Swift.String
- final public let profileButtonAccessibilityHint: Swift.String
- final public let sendButtonAccessibilityLabel: Swift.String
- final public let sendButtonAccessibilityHint: Swift.String
- final public let attachButtonAccessibilityLabel: Swift.String
- final public let attachButtonAccessibilityHint: Swift.String
- final public let attachmentOptionsTitle: Swift.String
- final public let attachmentOptionsImagesButton: Swift.String
- final public let attachmentOptionsFilesButton: Swift.String
- final public let attachmentOptionsCancelButton: Swift.String
- final public let showAttachmentButtonAccessibilityHint: Swift.String
- final public let downloadAttachmentButtonAccessibilityHint: Swift.String
- public var emailAddress: Swift.String? {
- get
- set
- }
- public var name: Swift.String? {
- get
- set
- }
- public var profileIsValid: Swift.Bool
- public var shouldRequestProfile: Swift.Bool
- public enum ProfileMode {
- case optionalEmail
- case requiredEmail
- case hidden
- public static func == (a: ApptentiveKit.MessageCenterViewModel.ProfileMode, b: ApptentiveKit.MessageCenterViewModel.ProfileMode) -> Swift.Bool
- public func hash(into hasher: inout Swift.Hasher)
- public var hashValue: Swift.Int {
- get
- }
- }
- public var oldestUnreadMessageIndexPath: Foundation.IndexPath? {
- get
- }
- public var newestMessageIndexPath: Foundation.IndexPath? {
- get
- }
- public func commitProfileEdits()
- public func cancelProfileEdits()
- public func launch()
- public func cancel()
- public var numberOfMessageGroups: Swift.Int {
- get
- }
- public func markMessageAsRead(at indexPath: Foundation.IndexPath)
- public func numberOfMessagesInGroup(at index: Swift.Int) -> Swift.Int
- public func dateStringForMessagesInGroup(at index: Swift.Int) -> Swift.String?
- public func message(at indexPath: Foundation.IndexPath) -> ApptentiveKit.MessageCenterViewModel.Message
- public func downloadAttachment(at index: Swift.Int, inMessageAt indexPath: Foundation.IndexPath)
- public var draftMessage: ApptentiveKit.MessageCenterViewModel.Message {
- get
- }
- public var draftMessageBody: Swift.String? {
- get
- set
- }
- public var draftAttachments: [ApptentiveKit.MessageCenterViewModel.Message.Attachment] {
- get
- }
- public func addImageAttachment(_ image: UIKit.UIImage, name: Swift.String?)
- public func addFileAttachment(at sourceURL: Foundation.URL)
- public func removeAttachment(at index: Swift.Int)
- public var remainingAttachmentSlots: Swift.Int {
- get
- }
- public var canAddAttachment: Swift.Bool {
- get
- }
- public var canSendMessage: Swift.Bool {
- get
- }
- public func sendMessage()
- @objc deinit
-}
-public enum MessageCenterViewModelError : Swift.Error {
- case attachmentCountGreaterThanMax
- case unableToGetImageData
- public static func == (a: ApptentiveKit.MessageCenterViewModelError, b: ApptentiveKit.MessageCenterViewModelError) -> Swift.Bool
- public func hash(into hasher: inout Swift.Hasher)
- public var hashValue: Swift.Int {
- get
- }
-}
-extension ApptentiveKit.Apptentive {
- public var engagementManifestURL: Foundation.URL? {
- get
- }
- public func loadEngagementManifest(at url: Foundation.URL?, completion: @escaping (Swift.Result) -> Swift.Void)
- public func getInteractionList(_ completion: @escaping ([ApptentiveKit.Apptentive.InteractionListItem]) -> Swift.Void)
- public func presentInteraction(with id: Swift.String, completion: @escaping (Swift.Result) -> Swift.Void)
- public func presentInteraction(at url: Foundation.URL, completion: @escaping (Swift.Result) -> Swift.Void)
- public struct InteractionListItem {
- public let id: Swift.String
- public let displayName: Swift.String
- public let typeName: Swift.String
- }
- public func getEventList(_ completion: @escaping ([Swift.String]) -> Swift.Void)
-}
-extension ApptentiveKit.SurveyViewModel {
- @_hasMissingDesignatedInitializers public class Question {
- final public let text: Swift.String
- final public let isRequired: Swift.Bool
- final public let requiredText: Swift.String?
- final public let errorMessage: Swift.String
- final public let instructions: Swift.String?
- public var isMarkedAsInvalid: Swift.Bool {
- get
- set
- }
- public var accessibilityLabel: Swift.String {
- get
- }
- @objc deinit
- }
-}
-public struct Event : Swift.ExpressibleByStringLiteral, Swift.CustomDebugStringConvertible {
- public var customData: ApptentiveKit.CustomData
- public init(name: Swift.String)
- public init(stringLiteral value: Swift.String)
- public var debugDescription: Swift.String {
- get
- }
- public typealias ExtendedGraphemeClusterLiteralType = Swift.String
- public typealias StringLiteralType = Swift.String
- public typealias UnicodeScalarLiteralType = Swift.String
-}
-open class InteractionPresenter {
- public init()
- open func presentMessageCenter(with viewModel: ApptentiveKit.MessageCenterViewModel) throws
- open func presentSurvey(with viewModel: ApptentiveKit.SurveyViewModel) throws
- open func presentEnjoymentDialog(with viewModel: ApptentiveKit.DialogViewModel) throws
- open func presentTextModal(with viewModel: ApptentiveKit.DialogViewModel) throws
- open func presentViewController(_ viewControllerToPresent: UIKit.UIViewController, completion: (() -> Swift.Void)? = {}) throws
- public var validatedPresentingViewController: UIKit.UIViewController? {
- get
- }
- open func dismissPresentedViewController(animated: Swift.Bool)
- @objc deinit
-}
-public enum InteractionPresenterError : Swift.Error {
- case notImplemented(Swift.String, Swift.String)
- case decodingFailed(Swift.String, Swift.String)
- case noPresentingViewController
-}
-extension Foundation.NSNotification.Name {
- public static let apptentiveEventEngaged: Foundation.Notification.Name
-}
-public protocol DialogViewModelDelegate : AnyObject {
- func dismiss()
-}
-@_hasMissingDesignatedInitializers public class DialogViewModel {
- final public let title: Swift.String?
- final public let message: Swift.String?
- final public let dialogType: ApptentiveKit.DialogViewModel.DialogType
- final public let actions: [ApptentiveKit.DialogViewModel.Action]
- weak public var delegate: ApptentiveKit.DialogViewModelDelegate?
- public func buttonSelected(at position: Swift.Int)
- public func launch()
- public func cancel()
- public enum DialogType {
- case enjoymentDialog
- case textModal
- public static func == (a: ApptentiveKit.DialogViewModel.DialogType, b: ApptentiveKit.DialogViewModel.DialogType) -> Swift.Bool
- public func hash(into hasher: inout Swift.Hasher)
- public var hashValue: Swift.Int {
- get
- }
- }
- @objc deinit
-}
-@objc @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @_Concurrency.MainActor(unsafe) public class DialogView : UIKit.UIView {
- @objc @_Concurrency.MainActor(unsafe) dynamic public var titleTextColor: UIKit.UIColor
- @objc @_Concurrency.MainActor(unsafe) dynamic public var messageTextColor: UIKit.UIColor
- @objc @_Concurrency.MainActor(unsafe) dynamic public var titleFont: UIKit.UIFont
- @objc @_Concurrency.MainActor(unsafe) dynamic public var messageFont: UIKit.UIFont
- @objc @_Concurrency.MainActor(unsafe) dynamic public var headerImage: UIKit.UIImage?
- @objc @_Concurrency.MainActor(unsafe) dynamic public var cornerRadius: CoreFoundation.CGFloat
- @objc @_Concurrency.MainActor(unsafe) dynamic public var buttonSpacing: CoreFoundation.CGFloat
- @objc @_Concurrency.MainActor(unsafe) dynamic public var buttonInset: UIKit.UIEdgeInsets
- @objc @_Concurrency.MainActor(unsafe) dynamic public var separatorsAreHidden: Swift.Bool
- @objc @_Concurrency.MainActor(unsafe) dynamic public var separatorColor: UIKit.UIColor
- @_Concurrency.MainActor(unsafe) @objc override dynamic public func didMoveToWindow()
- @_Concurrency.MainActor(unsafe) @objc override dynamic public func layoutSubviews()
- @objc deinit
-}
-extension ApptentiveKit.SurveyViewModel {
- @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers public class FreeformQuestion : ApptentiveKit.SurveyViewModel.Question {
- final public let placeholderText: Swift.String?
- final public let allowMultipleLines: Swift.Bool
- public var value: Swift.String? {
- get
- set
- }
- @objc deinit
- }
-}
-extension ApptentiveKit.Apptentive {
- @available(*, deprecated, message: "Use the 'register(with:completion:)' method on the 'shared' instance instead.")
- @objc(registerWithConfiguration:) dynamic public class func register(with configuration: ApptentiveKit.ApptentiveConfiguration)
- @available(swift, deprecated: 1.0, message: "Use the 'register(with:completion:) method that takes an 'AppCredentials' argument.")
- @objc(registerWithConfiguration:completion:) dynamic public func register(with configuration: ApptentiveKit.ApptentiveConfiguration, completion: ((Swift.Bool) -> Swift.Void)? = nil)
- @available(*, deprecated, message: "Use the 'shared' static property instead.")
- @objc dynamic public class func sharedConnection() -> ApptentiveKit.Apptentive
- @available(*, deprecated, message: "This property is ignored. SKStoreReviewController will be used for all ratings.")
- @objc dynamic public var appID: Swift.String? {
- @objc get
- @objc set
- }
- @available(*, deprecated, message: "This property is ignored. The info button no longer exists.")
- @objc dynamic public var showInfoButton: Swift.Bool {
- @objc get
- @objc set
- }
- @available(*, deprecated, message: "This feature is not implemented.")
- @objc dynamic public var surveyTermsAndConditions: ApptentiveKit.TermsAndConditions? {
- @objc get
- @objc set
- }
- @available(*, deprecated, message: "This property is not available for reading.")
- @objc dynamic public var apptentiveKey: Swift.String {
- @objc get
- }
- @available(*, deprecated, message: "This property is not available for reading.")
- @objc dynamic public var apptentiveSignature: Swift.String {
- @objc get
- }
- @objc(engage:fromViewController:) dynamic public func engage(_ event: Swift.String, fromViewController viewController: UIKit.UIViewController?)
- @objc(engage:fromViewController:completion:) dynamic public func engage(_ event: Swift.String, fromViewController viewController: UIKit.UIViewController?, completion: ((Swift.Bool) -> Swift.Void)? = nil)
- @available(swift, deprecated: 1.0, message: "Create an 'Event' object and subscript its 'customData' property.")
- @objc(engage:withCustomData:fromViewController:) dynamic public func engage(event: Swift.String, withCustomData customData: [Swift.AnyHashable : Any]?, from viewController: UIKit.UIViewController?)
- @available(swift, deprecated: 1.0, message: "Create an 'Event' object and subscript its 'customData' property.")
- @objc(engage:withCustomData:fromViewController:completion:) dynamic public func engage(event: Swift.String, withCustomData customData: [Swift.AnyHashable : Any]?, from viewController: UIKit.UIViewController?, completion: ((Swift.Bool) -> Swift.Void)? = nil)
- @available(*, deprecated, message: "Event extended data are no longer supported. Event will be engaged without extended data.")
- @objc(engage:withCustomData:withExtendedData:fromViewController:) dynamic public func engage(event: Swift.String, withCustomData customData: [Swift.AnyHashable : Any]?, withExtendedData extendedData: [[Swift.AnyHashable : Any]]?, from viewController: UIKit.UIViewController?)
- @available(*, deprecated, message: "Event extended data are no longer supported. Event will be engaged without extended data.")
- @objc(engage:withCustomData:withExtendedData:fromViewController:completion:) dynamic public func engage(event: Swift.String, withCustomData customData: [Swift.AnyHashable : Any]?, withExtendedData extendedData: [[Swift.AnyHashable : Any]]?, from viewController: UIKit.UIViewController?, completion: ((Swift.Bool) -> Swift.Void)? = nil)
- @available(swift, deprecated: 1.0, message: "Use the 'canShowInteraction(event:completion:)' method instead.")
- @objc dynamic public func queryCanShowInteraction(forEvent event: Swift.String, completion: @escaping (Swift.Bool) -> Swift.Void)
- @available(*, deprecated, message: "Extended event data are no longer supported.")
- @objc(extendedDataDate:) dynamic public class func extendedData(date: Foundation.Date) -> [Swift.AnyHashable : Any]
- @available(*, deprecated, message: "Extended event data are no longer supported.")
- @objc(extendedDataLocationForLatitude:longitude:) dynamic public class func extendedData(latitude: Swift.Double, longitude: Swift.Double) -> [Swift.AnyHashable : Any]
- @available(*, deprecated, message: "Extended event data are no longer supported.")
- @objc(extendedDataCommerceWithTransactionID:affiliation:revenue:shipping:tax:currency:commerceItems:) dynamic public class func extendedData(transactionID: Swift.String?, affiliation: Swift.String?, revenue: Foundation.NSNumber?, shipping: Foundation.NSNumber?, tax: Foundation.NSNumber?, currency: Swift.String?, commerceItems: [[Swift.AnyHashable : Any]]?) -> [Swift.AnyHashable : Any]
- @available(*, deprecated, message: "Extended event data are no longer supported.")
- @objc(extendedDataCommerceItemWithItemID:name:category:price:quantity:currency:) dynamic public class func extendedData(itemID: Swift.String?, name: Swift.String?, category: Swift.String?, price: Foundation.NSNumber?, quantity: Foundation.NSNumber?, currency: Swift.String?) -> [Swift.AnyHashable : Any]
- @available(*, deprecated, message: "This feature is not implemented and will always result in false.")
- @objc dynamic public func queryCanShowMessageCenter(completion: @escaping (Swift.Bool) -> Swift.Void)
- @objc(presentMessageCenterFromViewController:) dynamic public func presentMessageCenterCompat(from viewController: UIKit.UIViewController?)
- @available(swift, deprecated: 1.0, message: "Use the method whose completion handler takes a Result parameter.")
- @objc(presentMessageCenterFromViewController:completion:) dynamic public func presentMessageCenterCompat(from viewController: UIKit.UIViewController?, completion: ((Swift.Bool) -> Swift.Void)? = nil)
- @objc(presentMessageCenterFromViewController:withCustomData:) dynamic public func presentMessageCenterCompat(from viewController: UIKit.UIViewController?, withCustomData customData: [Swift.AnyHashable : Any]?)
- @available(swift, deprecated: 1.0, message: "Use the method whose completion handler takes a Result parameter.")
- @objc(presentMessageCenterFromViewController:withCustomData:completion:) dynamic public func presentMessageCenterCompat(from viewController: UIKit.UIViewController?, withCustomData customData: [Swift.AnyHashable : Any]?, completion: ((Swift.Bool) -> Swift.Void)? = nil)
- @available(*, deprecated, message: "This feature is not implemented and this method will always result in false.")
- @objc dynamic public func dismissMessageCenter(animated: Swift.Bool, completion: (() -> Swift.Void)? = nil)
- @available(*, deprecated, message: "This feature is not implemented and this property will return an empty view.")
- @objc dynamic public func unreadMessageCountAccessoryView(apptentiveHeart: Swift.Bool) -> UIKit.UIView
- @available(*, deprecated, message: "This method is no longer implemented and will trigger an assertion failure.")
- @objc dynamic public func openAppStore()
- @available(*, deprecated, message: "Use the 'setRemoteNotificationToken()' method instead.")
- @objc dynamic public func setPushProvider(_ pushProvider: ApptentiveKit.ApptentivePushProvider, deviceToken: Foundation.Data)
- @available(*, deprecated, message: "This method is deprecated in favor of didReceveUserNotificationResponse(_:from:withCompletionHandler:).")
- @objc dynamic public func didReceveUserNotificationResponse(_ response: UserNotifications.UNNotificationResponse, from _: UIKit.UIViewController?, withCompletionHandler completionHandler: @escaping () -> Swift.Void) -> Swift.Bool
- @available(*, deprecated, message: "Advertising identifier collection is not implemented.")
- @objc dynamic public var advertisingIdentifier: Foundation.UUID? {
- @objc get
- @objc set
- }
- @available(*, deprecated, message: "mParticleId has been renamed to mParticleID.")
- @objc dynamic public var mParticleId: Swift.String? {
- @objc get
- @objc set
- }
- @available(swift, deprecated: 1.0, message: "Subscript the 'personCustomData' property instead.")
- @objc dynamic public func removeCustomPersonData(withKey key: Swift.String)
- @available(swift, deprecated: 1.0, message: "Subscript the 'deviceCustomData' property instead.")
- @objc dynamic public func removeCustomDeviceData(withKey key: Swift.String)
- @available(swift, deprecated: 1.0, message: "Subscript the 'deviceCustomData' property instead.")
- @objc(addCustomDeviceDataString:withKey:) dynamic public func addCustomDeviceData(_ string: Swift.String, withKey key: Swift.String)
- @available(swift, deprecated: 1.0, message: "Subscript the 'deviceCustomData' property instead.")
- @objc(addCustomDeviceDataNumber:withKey:) dynamic public func addCustomDeviceData(_ number: Foundation.NSNumber, withKey key: Swift.String)
- @available(swift, deprecated: 1.0, message: "Subscript the 'deviceCustomData' property instead.")
- @objc(addCustomDeviceDataBool:withKey:) dynamic public func addCustomDeviceData(_ boolValue: Swift.Bool, withKey key: Swift.String)
- @available(swift, deprecated: 1.0, message: "Subscript the 'personCustomData' property instead.")
- @objc(addCustomPersonDataString:withKey:) dynamic public func addCustomPersonData(_ string: Swift.String, withKey key: Swift.String)
- @available(swift, deprecated: 1.0, message: "Subscript the 'personCustomData' property instead.")
- @objc(addCustomPersonDataNumber:withKey:) dynamic public func addCustomPersonData(_ number: Foundation.NSNumber, withKey key: Swift.String)
- @available(swift, deprecated: 1.0, message: "Subscript the 'personCustomData' property instead.")
- @objc(addCustomPersonDataBool:withKey:) dynamic public func addCustomPersonData(_ boolValue: Swift.Bool, withKey key: Swift.String)
- @available(*, deprecated, message: "Set style overrides defined in UIKit+Apptentive.swift extensions.")
- @objc dynamic public var styleSheet: Any? {
- @objc get
- @objc set
- }
- @available(*, deprecated, message: "This method is not currently implemented and will trigger an assertion failure.")
- @objc dynamic public func checkSDKConfiguration()
- @available(*, deprecated, message: "This method is not currently implemented and will trigger an assertion failure.")
- @objc dynamic public func logIn(withToken token: Swift.String, completion: @escaping (Swift.Bool, Swift.Error) -> Swift.Void)
- @available(*, deprecated, message: "This method is not currently implemented and will trigger an assertion failure.")
- @objc dynamic public func logOut()
- @available(*, deprecated, message: "Multiple users on the same device is not currently supported.")
- @objc dynamic public var authenticationFailureCallback: ApptentiveKit.ApptentiveAuthenticationFailureCallback? {
- @objc get
- @objc set
- }
- @available(*, deprecated, message: "This feature is no longer supported.")
- @objc dynamic public var preInteractionCallback: ApptentiveKit.ApptentiveInteractionCallback? {
- @objc get
- @objc set
- }
- @available(*, deprecated, message: "This method is not currently implemented and will trigger an assertion failure.")
- @objc dynamic public func updateToken(_ token: Swift.String, completion: ((Swift.Bool) -> Swift.Void)? = nil)
- @available(swift, deprecated: 1.0, message: "Set the 'logLevel' property on 'ApptentiveLogger' or one of it's static log properties.")
- @objc dynamic public var logLevel: ApptentiveKit.ApptentiveLogLevel {
- @objc get
- @objc set
- }
-}
-extension UIKit.UIButton {
- @available(swift, deprecated: 1.0, message: "Set the 'apptentiveStyle' property to 'ApptentiveButtonStyle.pill'.")
- @objc @_Concurrency.MainActor(unsafe) public static let apptentivePillRadius: CoreFoundation.CGFloat
- @available(swift, deprecated: 1.0, message: "Use the 'apptentiveStyle' property.")
- @objc @_Concurrency.MainActor(unsafe) public static var apptentiveCornerRadius: CoreFoundation.CGFloat {
- @objc get
- @objc set
- }
-}
-extension UIKit.UITableView {
- @available(swift, deprecated: 1.0, message: "Use the 'apptentive' property on 'UITableView.Style'.")
- @objc @_Concurrency.MainActor(unsafe) public static var apptentiveStyle: Swift.Int {
- @objc get
- @objc set
- }
-}
-extension UIKit.UIViewController {
- @available(swift, deprecated: 1.0, message: "Use the 'apptentive' property on 'UIModalPresentationStyle'.")
- @objc @_Concurrency.MainActor(unsafe) dynamic public var apptentiveModalPresentationStyle: UIKit.UIModalPresentationStyle {
- @objc get
- @objc set
- }
-}
-@available(*, deprecated, message: "Multiple users on the same device is not currently supported.")
-public typealias ApptentiveAuthenticationFailureCallback = (ApptentiveKit.ApptentiveAuthenticationFailureReason, Swift.String) -> Swift.Void
-@available(*, deprecated, message: "This feature is no longer supported.")
-public typealias ApptentiveInteractionCallback = (Swift.String, [Swift.AnyHashable : Any]?) -> Swift.Bool
-@available(*, deprecated, message: "Multiple users on the same device is not currently supported.")
-@objc public enum ApptentiveAuthenticationFailureReason : Swift.Int {
- case unknown = 0
- case invalidAlgorithm = 1
- case malformedToken = 2
- case invalidToken = 3
- case missingSubClaim = 4
- case mismatchedSubClaim = 5
- case invalidSubClaim = 6
- case expiredToken = 7
- case revokedToken = 8
- case missingAppKey = 9
- case missingAppSignature = 10
- case invalidKeySignaturePair = 11
- public init?(rawValue: Swift.Int)
- public typealias RawValue = Swift.Int
- public var rawValue: Swift.Int {
- get
- }
-}
-@objc @available(swift, deprecated: 1.0, message: "Set the properties from this class on the 'Apptentive' object directly.")
-public class ApptentiveConfiguration : ObjectiveC.NSObject {
- @objc final public let apptentiveKey: Swift.String
- @objc final public let apptentiveSignature: Swift.String
- @available(swift, deprecated: 1.0, message: "Set the 'logLevel' property on 'ApptentiveLogger' or one of its static log properties.")
- @objc public var logLevel: ApptentiveKit.ApptentiveLogLevel
- @available(swift, deprecated: 1.0, message: "Set the 'shouldHideSensitiveLogs' property on 'ApptentiveLogger' or one of its static log properties.")
- @objc public var shouldSanitizeLogMessages: Swift.Bool
- @available(*, deprecated, message: "This property is ignored. Use the designated initializer for 'Apptentive' to set this.")
- @objc public var baseURL: Foundation.URL?
- @available(swift, deprecated: 1.0, message: "Set the 'distributionName' property on 'Apptentive' directly before calling 'register(with:completion)'.")
- @objc public var distributionName: Swift.String?
- @available(swift, deprecated: 1.0, message: "Set the 'distributionVersion' property on 'Apptentive' directly before calling 'register(with:completion)'.")
- @objc public var distributionVersion: Swift.String?
- @available(*, deprecated, message: "This property is ignored. An 'SKStoreReviewController' will be used for all ratings.")
- @objc public var appID: Swift.String?
- @available(*, deprecated, message: "This property is ignored. The info button no longer exists.")
- @objc public var showInfoButton: Swift.Bool
- @available(*, deprecated, message: "This property is ignored. Configure survey terms and conditions in the Apptentive Dashboard.")
- @objc public var surveyTermsAndConditions: ApptentiveKit.TermsAndConditions?
- @objc(initWithApptentiveKey:apptentiveSignature:) required public init?(apptentiveKey: Swift.String, apptentiveSignature: Swift.String)
- @objc public static func configuration(apptentiveKey key: Swift.String, apptentiveSignature signature: Swift.String) -> ApptentiveKit.ApptentiveConfiguration
- @objc deinit
-}
-@available(*, deprecated, message: "Selecting a push notification provider is no longer supported.")
-@objc public enum ApptentivePushProvider : Swift.Int {
- case apptentive = 0
- case urbanAirship = 1
- case amazonSNS = 2
- case parse = 3
- public init?(rawValue: Swift.Int)
- public typealias RawValue = Swift.Int
- public var rawValue: Swift.Int {
- get
- }
-}
-@available(*, deprecated, message: "Use the 'LogLevel' enumeration to set the 'logLevel' property on 'ApptentiveLogger' or one of it's static log properties.")
-@objc public enum ApptentiveLogLevel : Swift.UInt {
- case undefined = 0
- case crit = 1
- case error = 2
- case warn = 3
- case info = 4
- case debug = 5
- case verbose = 6
- public init?(rawValue: Swift.UInt)
- public typealias RawValue = Swift.UInt
- public var rawValue: Swift.UInt {
- get
- }
-}
-@objc @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.")
-public class TermsAndConditions : ObjectiveC.NSObject {
- @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.")
- public init(bodyText: Swift.String?, linkText: Swift.String?, linkURL: Foundation.URL?)
- final public let bodyText: Swift.String?
- final public let linkText: Swift.String?
- final public let linkURL: Foundation.URL?
- @objc deinit
-}
-@available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.")
-public protocol ApptentiveStyle {
- @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.")
- func font(for textStyle: ApptentiveKit.ApptentiveStyleIdentifier) -> UIKit.UIFont
- @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.")
- func color(for style: ApptentiveKit.ApptentiveStyleIdentifier) -> UIKit.UIColor
-}
-@available(*, deprecated, message: "This enumeration is provided for compatibility but this feature is not implemented.")
-public enum ApptentiveStyleIdentifier {
- case body
- case headerTitle
- case headerMessage
- case messageDate
- case messageSender
- case messageStatus
- case messageCenterStatus
- case surveyInstructions
- case doneButton
- case button
- case submitButton
- case textInput
- case headerBackground
- case footerBackground
- case failure
- case separator
- case background
- case collectionBackground
- case textInputBackground
- case textInputPlaceholder
- case messageBackground
- case replyBackground
- case contextBackground
- public static func == (a: ApptentiveKit.ApptentiveStyleIdentifier, b: ApptentiveKit.ApptentiveStyleIdentifier) -> Swift.Bool
- public func hash(into hasher: inout Swift.Hasher)
- public var hashValue: Swift.Int {
- get
- }
-}
-@_hasMissingDesignatedInitializers @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.")
-public class ApptentiveStyleSheet : ApptentiveKit.ApptentiveStyle {
- @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.")
- public func font(for textStyle: ApptentiveKit.ApptentiveStyleIdentifier) -> UIKit.UIFont
- @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.")
- public func color(for style: ApptentiveKit.ApptentiveStyleIdentifier) -> UIKit.UIColor
- @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.")
- convenience public init?(contentsOf stylePropertyListURL: Foundation.URL)
- @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.")
- public var fontFamily: Swift.String
- @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.")
- public var lightFaceAttribute: Swift.String?
- @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.")
- public var regularFaceAttribute: Swift.String?
- @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.")
- public var mediumFaceAttribute: Swift.String?
- @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.")
- public var boldFaceAttribute: Swift.String?
- @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.")
- public var primaryColor: UIKit.UIColor
- @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.")
- public var secondaryColor: UIKit.UIColor
- @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.")
- public var failureColor: UIKit.UIColor
- @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.")
- public var backgroundColor: UIKit.UIColor
- @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.")
- public var separatorColor: UIKit.UIColor
- @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.")
- public var collectionBackgroundColor: UIKit.UIColor
- @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.")
- public var placeholderColor: UIKit.UIColor
- @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.")
- public var sizeAdjustment: CoreFoundation.CGFloat
- @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.")
- public func setFontDescriptor(_ fontDescriptor: UIKit.UIFontDescriptor, forStyle style: Swift.String)
- @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.")
- public func setColor(_ color: UIKit.UIColor, forStyle style: Swift.String)
- @objc deinit
-}
-@objc @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @_Concurrency.MainActor(unsafe) public class DialogButton : UIKit.UIButton {
- @objc @_Concurrency.MainActor(unsafe) dynamic public var titleFont: UIKit.UIFont
- @objc @_Concurrency.MainActor(unsafe) dynamic public var cornerRadius: CoreFoundation.CGFloat
- @objc @_Concurrency.MainActor(unsafe) dynamic public var borderWidth: CoreFoundation.CGFloat
- @objc @_Concurrency.MainActor(unsafe) dynamic public var borderColor: UIKit.UIColor
- @_Concurrency.MainActor(unsafe) @objc override dynamic public var intrinsicContentSize: CoreFoundation.CGSize {
- @objc get
- }
- @_Concurrency.MainActor(unsafe) @objc override dynamic public func layoutSubviews()
- @_Concurrency.MainActor(unsafe) @objc override dynamic public func tintColorDidChange()
- @_Concurrency.MainActor(unsafe) @objc override dynamic public func didMoveToWindow()
- @objc deinit
-}
-@objc @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @_Concurrency.MainActor(unsafe) public class DismissButton : ApptentiveKit.DialogButton {
- @objc deinit
-}
-@objc @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @_Concurrency.MainActor(unsafe) public class InteractionButton : ApptentiveKit.DialogButton {
- @objc deinit
-}
-@objc @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @_Concurrency.MainActor(unsafe) public class YesButton : ApptentiveKit.DialogButton {
- @objc deinit
-}
-@objc @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @_Concurrency.MainActor(unsafe) public class NoButton : ApptentiveKit.DialogButton {
- @objc deinit
-}
-public struct Sysctl {
- public enum Error : Swift.Error {
- case unknown
- case malformedUTF8
- case invalidSize
- case posixError(Darwin.POSIXErrorCode)
- }
- public static func data(for keys: [Swift.Int32]) throws -> [Swift.Int8]
- public static func keys(for name: Swift.String) throws -> [Swift.Int32]
- public static func value(ofType: T.Type, forKeys keys: [Swift.Int32]) throws -> T
- public static func value(ofType type: T.Type, forKeys keys: Swift.Int32...) throws -> T
- public static func value(ofType type: T.Type, forName name: Swift.String) throws -> T
- public static func string(for keys: [Swift.Int32]) throws -> Swift.String
- public static func string(for keys: Swift.Int32...) throws -> Swift.String
- public static func string(for name: Swift.String) throws -> Swift.String
- public static var hostName: Swift.String {
- get
- }
- public static var machine: Swift.String {
- get
- }
- public static var model: Swift.String {
- get
- }
- public static var activeCPUs: Swift.Int32 {
- get
- }
- public static var osRelease: Swift.String {
- get
- }
- public static var osType: Swift.String {
- get
- }
- public static var osVersion: Swift.String {
- get
- }
- public static var version: Swift.String {
- get
- }
-}
-@objc @_inheritsConvenienceInitializers @_Concurrency.MainActor(unsafe) public class ApptentiveNavigationController : UIKit.UINavigationController {
- @_Concurrency.MainActor(unsafe) @objc override dynamic public var preferredStatusBarStyle: UIKit.UIStatusBarStyle {
- @objc get
- }
- @objc @_Concurrency.MainActor(unsafe) public static var prefersLargeHeader: Swift.Bool
- @available(iOS 5.0, *)
- @_Concurrency.MainActor(unsafe) @objc override dynamic public init(navigationBarClass: Swift.AnyClass?, toolbarClass: Swift.AnyClass?)
- @_Concurrency.MainActor(unsafe) @objc override dynamic public init(rootViewController: UIKit.UIViewController)
- @_Concurrency.MainActor(unsafe) @objc override dynamic public init(nibName nibNameOrNil: Swift.String?, bundle nibBundleOrNil: Foundation.Bundle?)
- @_Concurrency.MainActor(unsafe) @objc required dynamic public init?(coder aDecoder: Foundation.NSCoder)
- @objc deinit
-}
-extension UIKit.UITableView {
- @_Concurrency.MainActor(unsafe) public static var apptentiveQuestionSeparatorHeight: CoreFoundation.CGFloat
-}
-extension UIKit.UITableView.Style {
- public static var apptentive: UIKit.UITableView.Style
-}
-extension UIKit.UIModalPresentationStyle {
- public static var apptentive: UIKit.UIModalPresentationStyle
-}
-extension UIKit.UIBarButtonItem {
- @objc @_Concurrency.MainActor(unsafe) public static var apptentiveClose: UIKit.UIBarButtonItem
- @objc @_Concurrency.MainActor(unsafe) public static var apptentiveProfileEdit: UIKit.UIBarButtonItem
-}
-extension UIKit.UIButton {
- @_Concurrency.MainActor(unsafe) public static var apptentiveClose: UIKit.UIButton?
- public enum ApptentiveButtonStyle {
- case pill
- case radius(CoreFoundation.CGFloat)
- }
- @_Concurrency.MainActor(unsafe) public static var apptentiveStyle: UIKit.UIButton.ApptentiveButtonStyle
-}
-extension UIKit.UIImage {
- @objc public static var apptentiveMessageAttachmentButton: UIKit.UIImage?
- @objc public static var apptentiveMessageSendButton: UIKit.UIImage?
- @objc public static var apptentiveSentMessageBubble: UIKit.UIImage?
- @objc public static var apptentiveReceivedMessageBubble: UIKit.UIImage?
- @objc public static var apptentiveAttachmentPlaceholder: UIKit.UIImage?
- @objc public static var apptentiveAttachmentRemoveButton: UIKit.UIImage?
- @objc public static var apptentiveHeaderLogo: UIKit.UIImage?
- @objc public static var apptentiveRadioButton: UIKit.UIImage?
- @objc public static var apptentiveCheckbox: UIKit.UIImage?
- @objc public static var apptentiveRadioButtonSelected: UIKit.UIImage?
- @objc public static var apptentiveCheckboxSelected: UIKit.UIImage?
-}
-extension UIKit.UIColor {
- @objc public static var apptentiveMessageCenterTextInputBackground: UIKit.UIColor
- @objc public static var apptentiveMessageCenterTextInputPlaceholder: UIKit.UIColor
- @available(*, deprecated, message: "This property has been renamed to 'apptentiveMessageTextInputPlaceholder'.")
- @objc public static var apptentiveMessageTextViewPlaceholder: UIKit.UIColor {
- @objc get
- @objc set
- }
- @objc public static var apptentiveMessageCenterTextInput: UIKit.UIColor
- @objc public static var apptentivetextInputTint: UIKit.UIColor
- @objc public static var apptentiveMessageCenterTextInputBorder: UIKit.UIColor
- @available(*, deprecated, message: "This property has been renamed to 'apptentiveMessageCenterTextInputBorder'.")
- @objc public static var apptentiveMessageCenterTextViewBorder: UIKit.UIColor {
- @objc get
- @objc set
- }
- @objc public static var apptentiveMessageCenterAttachmentButton: UIKit.UIColor
- @objc public static var apptentiveMessageTextInputPlaceholder: UIKit.UIColor
- @objc public static var apptentiveMessageCenterStatus: UIKit.UIColor
- @objc public static var apptentiveMessageCenterGreetingBody: UIKit.UIColor
- @objc public static var apptentiveMessageCenterGreetingTitle: UIKit.UIColor
- @objc public static var apptentiveMessageBubbleInbound: UIKit.UIColor
- @objc public static var apptentiveMessageBubbleOutbound: UIKit.UIColor
- @objc public static var apptentiveMessageLabelInbound: UIKit.UIColor
- @objc public static var apptentiveMessageLabelOutbound: UIKit.UIColor
- @objc public static var apptentiveQuestionLabel: UIKit.UIColor
- @objc public static var apptentiveInstructionsLabel: UIKit.UIColor
- @objc public static var apptentiveChoiceLabel: UIKit.UIColor
- @objc public static var apptentiveError: UIKit.UIColor
- @objc public static var apptentiveSecondaryLabel: UIKit.UIColor
- @objc public static var apptentiveRangeControlBorder: UIKit.UIColor
- @objc public static var apptentiveSurveyIntroduction: UIKit.UIColor
- @objc public static var apptentiveTextInputBorder: UIKit.UIColor
- @objc public static var apptentiveTextInputBackground: UIKit.UIColor
- @objc public static var apptentiveTextInput: UIKit.UIColor
- @objc public static var apptentiveTextInputPlaceholder: UIKit.UIColor
- @objc public static var apptentiveMinMaxLabel: UIKit.UIColor
- @objc public static var apptentiveGroupedBackground: UIKit.UIColor
- @objc public static var apptentiveSecondaryGroupedBackground: UIKit.UIColor
- @objc public static var apptentiveSeparator: UIKit.UIColor
- @objc public static var apptentiveImageSelected: UIKit.UIColor
- @objc public static var apptentiveImageNotSelected: UIKit.UIColor
- @objc public static var apptentiveSubmitButton: UIKit.UIColor
- @objc public static var apptentiveBranchedSurveyFooter: UIKit.UIColor
- @available(*, deprecated, message: "This property has been renamed to 'apptentiveSubmitStatusLabel'.")
- public static var apptentiveSubmitLabel: UIKit.UIColor
- @objc public static var apptentiveSubmitStatusLabel: UIKit.UIColor
- @objc public static var apptentiveTermsOfServiceLabel: UIKit.UIColor
- @objc public static var apptentiveSubmitButtonTitle: UIKit.UIColor
- @objc public static var apptentiveSubmitButtonBorder: UIKit.UIColor
- @objc public static var apptentiveQuestionSeparator: UIKit.UIColor
- public static var apptentiveUnselectedSurveyIndicatorSegment: UIKit.UIColor
- public static var apptentiveSelectedSurveyIndicatorSegment: UIKit.UIColor
- @objc public static var apptentiveMessageCenterBackground: UIKit.UIColor
- @objc public static var apptentiveMessageCenterAttachmentDeleteButton: UIKit.UIColor
- @objc public static var apptentiveMessageCenterComposeBoxBackground: UIKit.UIColor
- @objc public static var apptentiveMessageCenterComposeBoxSeparator: UIKit.UIColor
- @objc public static var apptentiveTextInputBorderSelected: UIKit.UIColor
- @objc public static var apptentiveDisclaimerLabel: UIKit.UIColor
-}
-extension UIKit.UIFont {
- @objc public static var apptentiveMessageCenterTextInputPlaceholder: UIKit.UIFont
- @objc public static var apptentiveMessageCenterTextInput: UIKit.UIFont
- @objc public static var apptentiveTextInputPlaceholder: UIKit.UIFont
- @objc public static var apptentiveMessageCenterStatus: UIKit.UIFont
- @objc public static var apptentiveMessageCenterGreetingTitle: UIKit.UIFont
- @objc public static var apptentiveMessageCenterGreetingBody: UIKit.UIFont
- @objc public static var apptentiveMessageCenterAttachmentLabel: UIKit.UIFont
- @objc public static var apptentiveQuestionLabel: UIKit.UIFont
- @objc public static var apptentiveTermsOfServiceLabel: UIKit.UIFont
- @objc public static var apptentiveChoiceLabel: UIKit.UIFont
- @objc public static var apptentiveMessageLabel: UIKit.UIFont
- @objc public static var apptentiveMinMaxLabel: UIKit.UIFont
- @objc public static var apptentiveSenderLabel: UIKit.UIFont
- @objc public static var apptentiveMessageDateLabel: UIKit.UIFont
- @objc public static var apptentiveInstructionsLabel: UIKit.UIFont
- @objc public static var apptentiveSurveyIntroductionLabel: UIKit.UIFont
- @available(*, deprecated, message: "This property has been renamed to 'apptentiveSubmitStatusLabel'.")
- public static var apptentiveSubmitLabel: UIKit.UIFont
- @objc public static var apptentiveSubmitStatusLabel: UIKit.UIFont
- @objc public static var apptentiveDisclaimerLabel: UIKit.UIFont
- @objc public static var apptentiveSubmitButtonTitle: UIKit.UIFont
- @objc public static var apptentiveTextInput: UIKit.UIFont
-}
-extension UIKit.UIToolbar {
- @objc public enum ToolbarMode : Swift.Int {
- case alwaysShown
- case hiddenWhenEmpty
- public init?(rawValue: Swift.Int)
- public typealias RawValue = Swift.Int
- public var rawValue: Swift.Int {
- get
- }
- }
- @objc @_Concurrency.MainActor(unsafe) public static var apptentiveMode: UIKit.UIToolbar.ToolbarMode
-}
-extension CoreFoundation.CGFloat {
- public static var apptentiveButtonBorderWidth: CoreFoundation.CGFloat
-}
-extension ApptentiveKit.DialogViewModel.Action.ActionType : Swift.Equatable {}
-extension ApptentiveKit.DialogViewModel.Action.ActionType : Swift.Hashable {}
-extension ApptentiveKit.DialogViewModel.Action.ActionType : Swift.RawRepresentable {}
-extension ApptentiveKit.MessageCenterViewModel.Message.SentStatus : Swift.Hashable {}
-extension ApptentiveKit.SurveyViewModel.ChoiceQuestion.SelectionStyle : Swift.Equatable {}
-extension ApptentiveKit.SurveyViewModel.ChoiceQuestion.SelectionStyle : Swift.Hashable {}
-extension ApptentiveKit.LogLevel : Swift.Hashable {}
-extension ApptentiveKit.LogLevel : Swift.RawRepresentable {}
-extension ApptentiveKit.Apptentive.UITheme : Swift.Equatable {}
-extension ApptentiveKit.Apptentive.UITheme : Swift.Hashable {}
-extension ApptentiveKit.SurveyViewModel.DisplayMode : Swift.Equatable {}
-extension ApptentiveKit.SurveyViewModel.DisplayMode : Swift.Hashable {}
-extension ApptentiveKit.MessageCenterViewModel.ProfileMode : Swift.Equatable {}
-extension ApptentiveKit.MessageCenterViewModel.ProfileMode : Swift.Hashable {}
-extension ApptentiveKit.MessageCenterViewModelError : Swift.Equatable {}
-extension ApptentiveKit.MessageCenterViewModelError : Swift.Hashable {}
-extension ApptentiveKit.DialogViewModel.DialogType : Swift.Equatable {}
-extension ApptentiveKit.DialogViewModel.DialogType : Swift.Hashable {}
-@available(*, deprecated, message: "Multiple users on the same device is not currently supported.")
-extension ApptentiveKit.ApptentiveAuthenticationFailureReason : Swift.Equatable {}
-@available(*, deprecated, message: "Multiple users on the same device is not currently supported.")
-extension ApptentiveKit.ApptentiveAuthenticationFailureReason : Swift.Hashable {}
-@available(*, deprecated, message: "Multiple users on the same device is not currently supported.")
-extension ApptentiveKit.ApptentiveAuthenticationFailureReason : Swift.RawRepresentable {}
-@available(*, deprecated, message: "Selecting a push notification provider is no longer supported.")
-extension ApptentiveKit.ApptentivePushProvider : Swift.Equatable {}
-@available(*, deprecated, message: "Selecting a push notification provider is no longer supported.")
-extension ApptentiveKit.ApptentivePushProvider : Swift.Hashable {}
-@available(*, deprecated, message: "Selecting a push notification provider is no longer supported.")
-extension ApptentiveKit.ApptentivePushProvider : Swift.RawRepresentable {}
-@available(*, deprecated, message: "Use the 'LogLevel' enumeration to set the 'logLevel' property on 'ApptentiveLogger' or one of it's static log properties.")
-extension ApptentiveKit.ApptentiveLogLevel : Swift.Equatable {}
-@available(*, deprecated, message: "Use the 'LogLevel' enumeration to set the 'logLevel' property on 'ApptentiveLogger' or one of it's static log properties.")
-extension ApptentiveKit.ApptentiveLogLevel : Swift.Hashable {}
-@available(*, deprecated, message: "Use the 'LogLevel' enumeration to set the 'logLevel' property on 'ApptentiveLogger' or one of it's static log properties.")
-extension ApptentiveKit.ApptentiveLogLevel : Swift.RawRepresentable {}
-@available(*, deprecated, message: "This enumeration is provided for compatibility but this feature is not implemented.")
-extension ApptentiveKit.ApptentiveStyleIdentifier : Swift.Equatable {}
-@available(*, deprecated, message: "This enumeration is provided for compatibility but this feature is not implemented.")
-extension ApptentiveKit.ApptentiveStyleIdentifier : Swift.Hashable {}
-extension UIKit.UIToolbar.ToolbarMode : Swift.Equatable {}
-extension UIKit.UIToolbar.ToolbarMode : Swift.Hashable {}
-extension UIKit.UIToolbar.ToolbarMode : Swift.RawRepresentable {}
diff --git a/src/ios/ApptentiveKit.xcframework/ios-arm64_x86_64-simulator/ApptentiveKit.framework/Modules/ApptentiveKit.swiftmodule/arm64-apple-ios-simulator.swiftdoc b/src/ios/ApptentiveKit.xcframework/ios-arm64_x86_64-simulator/ApptentiveKit.framework/Modules/ApptentiveKit.swiftmodule/arm64-apple-ios-simulator.swiftdoc
deleted file mode 100644
index fd9d74c..0000000
Binary files a/src/ios/ApptentiveKit.xcframework/ios-arm64_x86_64-simulator/ApptentiveKit.framework/Modules/ApptentiveKit.swiftmodule/arm64-apple-ios-simulator.swiftdoc and /dev/null differ
diff --git a/src/ios/ApptentiveKit.xcframework/ios-arm64_x86_64-simulator/ApptentiveKit.framework/Modules/ApptentiveKit.swiftmodule/arm64-apple-ios-simulator.swiftinterface b/src/ios/ApptentiveKit.xcframework/ios-arm64_x86_64-simulator/ApptentiveKit.framework/Modules/ApptentiveKit.swiftmodule/arm64-apple-ios-simulator.swiftinterface
deleted file mode 100644
index bcaec28..0000000
--- a/src/ios/ApptentiveKit.xcframework/ios-arm64_x86_64-simulator/ApptentiveKit.framework/Modules/ApptentiveKit.swiftmodule/arm64-apple-ios-simulator.swiftinterface
+++ /dev/null
@@ -1,1202 +0,0 @@
-// 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 arm64-apple-ios11.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name ApptentiveKit
-// swift-module-flags-ignorable: -enable-bare-slash-regex
-import CoreTelephony
-import Foundation
-import MobileCoreServices
-import OSLog
-import PhotosUI
-import QuickLook
-import QuickLookThumbnailing
-import StoreKit
-import Swift
-import UIKit
-import _Concurrency
-import _StringProcessing
-@objc @_hasMissingDesignatedInitializers @_Concurrency.MainActor(unsafe) public class DialogViewController : UIKit.UIViewController, ApptentiveKit.DialogViewModelDelegate {
- @_Concurrency.MainActor(unsafe) @objc override dynamic public func viewDidLoad()
- @_Concurrency.MainActor(unsafe) @objc override dynamic public func viewDidAppear(_ animated: Swift.Bool)
- @_Concurrency.MainActor(unsafe) public func dismiss()
- @objc deinit
-}
-extension ApptentiveKit.DialogViewModel {
- @_hasMissingDesignatedInitializers public class Action {
- final public let label: Swift.String
- final public let actionType: ApptentiveKit.DialogViewModel.Action.ActionType
- final public let buttonTapped: () -> Swift.Void
- public enum ActionType : Swift.String {
- case dismiss
- case interaction
- case yes
- case no
- public init?(rawValue: Swift.String)
- public typealias RawValue = Swift.String
- public var rawValue: Swift.String {
- get
- }
- }
- @objc deinit
- }
-}
-extension ApptentiveKit.SurveyViewModel {
- @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers public class RangeQuestion : ApptentiveKit.SurveyViewModel.Question {
- final public let minValue: Swift.Int
- final public let maxValue: Swift.Int
- final public let minText: Swift.String?
- final public let maxText: Swift.String?
- public var selectedValueIndex: Swift.Int? {
- get
- }
- public var value: Swift.Int? {
- get
- }
- public var choiceLabels: [Swift.String] {
- get
- }
- public func selectValue(at index: Swift.Int)
- public var accessibilityHintForSegment: Swift.String {
- get
- }
- @objc deinit
- }
-}
-extension ApptentiveKit.MessageCenterViewModel {
- @_hasMissingDesignatedInitializers public class Message : Swift.Equatable {
- final public let nonce: Swift.String
- final public let direction: ApptentiveKit.MessageCenterViewModel.Message.Direction
- final public let isAutomated: Swift.Bool
- final public let attachments: [ApptentiveKit.MessageCenterViewModel.Message.Attachment]
- final public let sender: ApptentiveKit.MessageCenterViewModel.Message.Sender?
- final public let body: Swift.String?
- final public let sentDate: Foundation.Date
- final public let accessibilityLabel: Swift.String?
- final public let accessibilityHint: Swift.String?
- final public let statusText: Swift.String
- public static func == (lhs: ApptentiveKit.MessageCenterViewModel.Message, rhs: ApptentiveKit.MessageCenterViewModel.Message) -> Swift.Bool
- public enum Direction : Swift.Equatable {
- case sentFromDashboard(ApptentiveKit.MessageCenterViewModel.Message.ReadStatus)
- case sentFromDevice(ApptentiveKit.MessageCenterViewModel.Message.SentStatus)
- case automated
- public static func == (a: ApptentiveKit.MessageCenterViewModel.Message.Direction, b: ApptentiveKit.MessageCenterViewModel.Message.Direction) -> Swift.Bool
- }
- public enum SentStatus : Swift.Codable, Swift.Equatable {
- case draft
- case queued
- case sending
- case sent
- case failed
- public func hash(into hasher: inout Swift.Hasher)
- public static func == (a: ApptentiveKit.MessageCenterViewModel.Message.SentStatus, b: ApptentiveKit.MessageCenterViewModel.Message.SentStatus) -> Swift.Bool
- public func encode(to encoder: Swift.Encoder) throws
- public var hashValue: Swift.Int {
- get
- }
- public init(from decoder: Swift.Decoder) throws
- }
- public enum ReadStatus : Swift.Codable, Swift.Equatable {
- case read
- case unread(messageID: Swift.String?)
- public static func == (a: ApptentiveKit.MessageCenterViewModel.Message.ReadStatus, b: ApptentiveKit.MessageCenterViewModel.Message.ReadStatus) -> Swift.Bool
- public func encode(to encoder: Swift.Encoder) throws
- public init(from decoder: Swift.Decoder) throws
- }
- public struct Sender : Swift.Equatable {
- public static func == (a: ApptentiveKit.MessageCenterViewModel.Message.Sender, b: ApptentiveKit.MessageCenterViewModel.Message.Sender) -> Swift.Bool
- }
- @objc @_hasMissingDesignatedInitializers public class Attachment : ObjectiveC.NSObject, QuickLook.QLPreviewItem {
- final public let fileExtension: Swift.String?
- public var thumbnail: UIKit.UIImage? {
- get
- }
- public var downloadProgress: Swift.Float
- public var localURL: Foundation.URL?
- public var displayName: Swift.String {
- get
- }
- @objc public var previewItemURL: Foundation.URL? {
- @objc get
- }
- @objc public var previewItemTitle: Swift.String? {
- @objc get
- }
- @objc override dynamic public var accessibilityLabel: Swift.String? {
- @objc get
- @objc set
- }
- public var removeButtonAccessibilityLabel: Swift.String {
- get
- }
- public var viewButtonAccessibilityLabel: Swift.String {
- get
- }
- @objc deinit
- }
- @objc deinit
- }
-}
-extension ApptentiveKit.Apptentive : UserNotifications.UNUserNotificationCenterDelegate {
- @objc dynamic public func setRemoteNotificationDeviceToken(_ tokenData: Foundation.Data)
- @available(*, deprecated, message: "Use the (correctly-spelled) 'setRemoteNotificationDeviceToken(_:)' method instead.")
- @objc dynamic public func setRemoteNotifcationDeviceToken(_ tokenData: Foundation.Data)
- @objc dynamic public func didReceiveRemoteNotification(_ userInfo: [Swift.AnyHashable : Any], fetchCompletionHandler completionHandler: @escaping (UIKit.UIBackgroundFetchResult) -> Swift.Void) -> Swift.Bool
- @objc dynamic public func didReceveUserNotificationResponse(_ response: UserNotifications.UNNotificationResponse, withCompletionHandler completionHandler: @escaping () -> Swift.Void) -> Swift.Bool
- @objc dynamic public func willPresent(_ notification: UserNotifications.UNNotification, withCompletionHandler completionHandler: @escaping (UserNotifications.UNNotificationPresentationOptions) -> Swift.Void) -> Swift.Bool
- @objc dynamic public func userNotificationCenter(_ center: UserNotifications.UNUserNotificationCenter, willPresent notification: UserNotifications.UNNotification, withCompletionHandler completionHandler: @escaping (UserNotifications.UNNotificationPresentationOptions) -> Swift.Void)
- @objc dynamic public func userNotificationCenter(_ center: UserNotifications.UNUserNotificationCenter, didReceive response: UserNotifications.UNNotificationResponse, withCompletionHandler completionHandler: @escaping () -> Swift.Void)
-}
-extension ApptentiveKit.SurveyViewModel {
- @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers public class ChoiceQuestion : ApptentiveKit.SurveyViewModel.Question {
- final public let choices: [ApptentiveKit.SurveyViewModel.ChoiceQuestion.Choice]
- public func toggleChoice(at index: Swift.Int)
- public var selectionStyle: ApptentiveKit.SurveyViewModel.ChoiceQuestion.SelectionStyle {
- get
- }
- public enum SelectionStyle {
- case checkbox
- case radioButton
- public static func == (a: ApptentiveKit.SurveyViewModel.ChoiceQuestion.SelectionStyle, b: ApptentiveKit.SurveyViewModel.ChoiceQuestion.SelectionStyle) -> Swift.Bool
- public func hash(into hasher: inout Swift.Hasher)
- public var hashValue: Swift.Int {
- get
- }
- }
- @_hasMissingDesignatedInitializers public class Choice {
- final public let label: Swift.String
- final public let placeholderText: Swift.String?
- final public let supportsOther: Swift.Bool
- public var isSelected: Swift.Bool {
- get
- }
- public var isMarkedAsInvalid: Swift.Bool {
- get
- }
- public var value: Swift.String? {
- get
- set
- }
- @objc deinit
- }
- @objc deinit
- }
-}
-public struct ApptentiveLogger {
- public static var shouldHideSensitiveLogs: Swift.Bool
- public var logLevel: ApptentiveKit.LogLevel
-}
-extension ApptentiveKit.ApptentiveLogger {
- public static var `default`: ApptentiveKit.ApptentiveLogger
- public static var engagement: ApptentiveKit.ApptentiveLogger
- public static var interaction: ApptentiveKit.ApptentiveLogger
- public static var network: ApptentiveKit.ApptentiveLogger
- public static var payload: ApptentiveKit.ApptentiveLogger
- public static var targeting: ApptentiveKit.ApptentiveLogger
- public static var messages: ApptentiveKit.ApptentiveLogger
- public static var attachments: ApptentiveKit.ApptentiveLogger
- public static var logLevel: ApptentiveKit.LogLevel {
- get
- set
- }
-}
-public enum LogLevel : Swift.Int, Swift.Comparable {
- case debug
- case info
- case notice
- case warning
- case error
- case critical
- case fault
- public static func < (lhs: ApptentiveKit.LogLevel, rhs: ApptentiveKit.LogLevel) -> Swift.Bool
- public init?(rawValue: Swift.Int)
- public typealias RawValue = Swift.Int
- public var rawValue: Swift.Int {
- get
- }
-}
-@objc @_hasMissingDesignatedInitializers public class Apptentive : ObjectiveC.NSObject {
- @objc public static let shared: ApptentiveKit.Apptentive
- public var interactionPresenter: ApptentiveKit.InteractionPresenter {
- get
- set
- }
- public var theme: ApptentiveKit.Apptentive.UITheme
- @objc public var personName: Swift.String? {
- @objc get
- @objc set
- }
- @objc public var personEmailAddress: Swift.String? {
- @objc get
- @objc set
- }
- @objc public var mParticleID: Swift.String? {
- @objc get
- @objc set
- }
- public var personCustomData: ApptentiveKit.CustomData {
- get
- set
- }
- public var deviceCustomData: ApptentiveKit.CustomData {
- get
- set
- }
- @objc dynamic public var unreadMessageCount: Swift.Int
- @objc public var distributionName: Swift.String? {
- @objc get
- @objc set
- }
- @objc public var distributionVersion: Swift.String? {
- @objc get
- @objc set
- }
- public enum UITheme {
- case apptentive
- case none
- public static func == (a: ApptentiveKit.Apptentive.UITheme, b: ApptentiveKit.Apptentive.UITheme) -> Swift.Bool
- public func hash(into hasher: inout Swift.Hasher)
- public var hashValue: Swift.Int {
- get
- }
- }
- public func register(with credentials: ApptentiveKit.Apptentive.AppCredentials, completion: ((Swift.Result) -> Swift.Void)? = nil)
- public struct AppCredentials : Swift.Codable, Swift.Equatable {
- public let key: Swift.String
- public let signature: Swift.String
- public init(key: Swift.String, signature: Swift.String)
- public static func == (a: ApptentiveKit.Apptentive.AppCredentials, b: ApptentiveKit.Apptentive.AppCredentials) -> Swift.Bool
- public func encode(to encoder: Swift.Encoder) throws
- public init(from decoder: Swift.Decoder) throws
- }
- public func engage(event: ApptentiveKit.Event, from viewController: UIKit.UIViewController? = nil, completion: ((Swift.Result) -> Swift.Void)? = nil)
- public func dismissAllInteractions(animated: Swift.Bool)
- public func presentMessageCenter(from viewController: UIKit.UIViewController?, completion: ((Swift.Result) -> Swift.Void)? = nil)
- public func presentMessageCenter(from viewController: UIKit.UIViewController?, with customData: ApptentiveKit.CustomData?, completion: ((Swift.Result) -> Swift.Void)? = nil)
- @objc(sendAttachmentText:) public func sendAttachment(_ text: Swift.String)
- @objc(sendAttachmentImage:) public func sendAttachment(_ image: UIKit.UIImage)
- @objc(sendAttachmentFile:withMimeType:) public func sendAttachment(_ fileData: Foundation.Data, mediaType: Swift.String)
- public func canShowInteraction(event: ApptentiveKit.Event, completion: ((Swift.Result) -> Swift.Void)? = nil)
- convenience public init(apiBaseURL: Foundation.URL)
- @objc deinit
-}
-public enum ApptentiveError : Swift.Error {
- case internalInconsistency
- case invalidCustomDataType(Any?)
- case fileExistsAtContainerDirectoryPath
- case mismatchedCredentials
-}
-public var apptentiveAssertionHandler: (_ message: @autoclosure () -> Swift.String, _ file: Swift.StaticString, _ line: Swift.UInt) -> ()
-public protocol CustomDataCompatible {
-}
-extension Swift.String : ApptentiveKit.CustomDataCompatible {
-}
-extension Swift.Double : ApptentiveKit.CustomDataCompatible {
-}
-extension Swift.Float : ApptentiveKit.CustomDataCompatible {
-}
-extension Swift.Int : ApptentiveKit.CustomDataCompatible {
-}
-extension Swift.Bool : ApptentiveKit.CustomDataCompatible {
-}
-public struct CustomData : Swift.Equatable, Swift.Codable {
- public init()
- public subscript(key: Swift.String) -> ApptentiveKit.CustomDataCompatible? {
- get
- set
- }
- public var keys: Swift.Dictionary.Keys {
- get
- }
- public func encode(to encoder: Swift.Encoder) throws
- public init(from decoder: Swift.Decoder) throws
- public static func == (lhs: ApptentiveKit.CustomData, rhs: ApptentiveKit.CustomData) -> Swift.Bool
-}
-public protocol SurveyViewModelDelegate : AnyObject {
- func surveyViewModelDidFinish(_ viewModel: ApptentiveKit.SurveyViewModel)
- func surveyViewModelValidationDidChange(_ viewModel: ApptentiveKit.SurveyViewModel)
- func surveyViewModelSelectionDidChange(_ viewModel: ApptentiveKit.SurveyViewModel)
- func surveyViewModelPageWillChange(_ viewModel: ApptentiveKit.SurveyViewModel)
- func surveyViewModelPageDidChange(_ viewModel: ApptentiveKit.SurveyViewModel)
-}
-@_hasMissingDesignatedInitializers public class SurveyViewModel {
- final public let name: Swift.String?
- final public let isRequired: Swift.Bool
- final public let pageIndicatorSegmentCount: Swift.Int
- final public let validationErrorMessage: Swift.String
- final public let disclaimerText: Swift.String?
- public struct TermsAndConditions {
- }
- final public let termsAndConditions: ApptentiveKit.SurveyViewModel.TermsAndConditions?
- public struct CloseConfirmation {
- }
- final public let closeConfirmation: ApptentiveKit.SurveyViewModel.CloseConfirmation
- weak public var delegate: ApptentiveKit.SurveyViewModelDelegate?
- public var currentPage: ApptentiveKit.SurveyViewModel.Page {
- get
- }
- public var questions: [ApptentiveKit.SurveyViewModel.Question] {
- get
- }
- public var isMarkedAsInvalid: Swift.Bool {
- get
- }
- public var thankYouMessage: Swift.String? {
- get
- }
- public var introduction: Swift.String? {
- get
- }
- public var advanceButtonText: Swift.String {
- get
- }
- public var invalidQuestionIndexes: Foundation.IndexSet {
- get
- }
- public var surveyDidSendResponse: Swift.Bool
- public var highlightFirstQuestionSegment: Swift.Bool
- public func setValue(_ value: Swift.String?, for indexPath: Foundation.IndexPath)
- public func selectValueFromRange(at indexPath: Foundation.IndexPath)
- public func openTermsAndConditions()
- public func advance()
- public var isValid: Swift.Bool {
- get
- }
- public enum DisplayMode {
- case list
- case paged
- public static func == (a: ApptentiveKit.SurveyViewModel.DisplayMode, b: ApptentiveKit.SurveyViewModel.DisplayMode) -> Swift.Bool
- public func hash(into hasher: inout Swift.Hasher)
- public var hashValue: Swift.Int {
- get
- }
- }
- public var displayMode: ApptentiveKit.SurveyViewModel.DisplayMode {
- get
- }
- public var shouldConfirmCancel: Swift.Bool {
- get
- }
- public var currentSelectedSegmentIndex: Swift.Int? {
- get
- }
- public func launch()
- public func continuePartial()
- public func cancel(partial: Swift.Bool)
- @objc deinit
-}
-extension ApptentiveKit.SurveyViewModel {
- @_hasMissingDesignatedInitializers public class Page {
- final public let id: Swift.String
- final public let description: Swift.String?
- final public let questions: [ApptentiveKit.SurveyViewModel.Question]
- final public let advanceButtonLabel: Swift.String
- final public let pageIndicatorValue: Swift.Int?
- @objc deinit
- }
-}
-public protocol MessageCenterViewModelDelegate : AnyObject {
- func messageCenterViewModelDidBeginUpdates(_: ApptentiveKit.MessageCenterViewModel)
- func messageCenterViewModel(_: ApptentiveKit.MessageCenterViewModel, didInsertSectionsWith sectionIndexes: Foundation.IndexSet)
- func messageCenterViewModel(_: ApptentiveKit.MessageCenterViewModel, didDeleteSectionsWith sectionIndexes: Foundation.IndexSet)
- func messageCenterViewModel(_: ApptentiveKit.MessageCenterViewModel, didDeleteRowsAt indexPaths: [Foundation.IndexPath])
- func messageCenterViewModel(_: ApptentiveKit.MessageCenterViewModel, didUpdateRowsAt indexPaths: [Foundation.IndexPath])
- func messageCenterViewModel(_: ApptentiveKit.MessageCenterViewModel, didInsertRowsAt indexPaths: [Foundation.IndexPath])
- func messageCenterViewModel(_: ApptentiveKit.MessageCenterViewModel, didMoveRowsAt indexPathMoves: [(Foundation.IndexPath, Foundation.IndexPath)])
- func messageCenterViewModelDidEndUpdates(_: ApptentiveKit.MessageCenterViewModel)
- func messageCenterViewModelMessageListDidLoad(_: ApptentiveKit.MessageCenterViewModel)
- func messageCenterViewModelDraftMessageDidUpdate(_: ApptentiveKit.MessageCenterViewModel)
- func messageCenterViewModel(_: ApptentiveKit.MessageCenterViewModel, didFailToRemoveAttachmentAt index: Swift.Int, with error: Swift.Error)
- func messageCenterViewModel(_: ApptentiveKit.MessageCenterViewModel, didFailToAddAttachmentWith error: Swift.Error)
- func messageCenterViewModel(_: ApptentiveKit.MessageCenterViewModel, didFailToSendMessageWith error: Swift.Error)
- func messageCenterViewModel(_: ApptentiveKit.MessageCenterViewModel, attachmentDownloadDidFinishAt index: Swift.Int, inMessageAt indexPath: Foundation.IndexPath)
- func messageCenterViewModel(_: ApptentiveKit.MessageCenterViewModel, attachmentDownloadDidFailAt index: Swift.Int, inMessageAt indexPath: Foundation.IndexPath, with error: Swift.Error)
-}
-@_hasMissingDesignatedInitializers public class MessageCenterViewModel {
- final public let headingTitle: Swift.String
- final public let branding: Swift.String?
- final public let composerTitle: Swift.String
- final public let composerSendButtonTitle: Swift.String
- final public let composerAttachButtonTitle: Swift.String
- final public let composerPlaceholderText: Swift.String
- final public let composerCloseConfirmBody: Swift.String
- final public let composerCloseDiscardButtonTitle: Swift.String
- final public let composerCloseCancelButtonTitle: Swift.String
- final public let greetingTitle: Swift.String
- final public let greetingBody: Swift.String
- final public let greetingImageURL: Foundation.URL
- final public let statusBody: Swift.String?
- public var groupedMessages: [[ApptentiveKit.MessageCenterViewModel.Message]]
- public var hasLoadedMessages: Swift.Bool
- public var thumbnailSize: CoreFoundation.CGSize {
- get
- set
- }
- final public let profileNamePlaceholder: Swift.String
- final public let profileEmailPlaceholder: Swift.String
- final public let profileCancelButtonText: Swift.String
- final public let profileSaveButtonText: Swift.String
- final public let editProfileViewTitle: Swift.String
- final public let editProfileNamePlaceholder: Swift.String
- final public let editProfileEmailPlaceholder: Swift.String
- final public let editProfileCancelButtonText: Swift.String
- final public let editProfileSaveButtonText: Swift.String
- final public let profileMode: ApptentiveKit.MessageCenterViewModel.ProfileMode
- final public let closeButtonAccessibilityLabel: Swift.String
- final public let closeButtonAccessibilityHint: Swift.String
- final public let profileButtonAccessibilityLabel: Swift.String
- final public let profileButtonAccessibilityHint: Swift.String
- final public let sendButtonAccessibilityLabel: Swift.String
- final public let sendButtonAccessibilityHint: Swift.String
- final public let attachButtonAccessibilityLabel: Swift.String
- final public let attachButtonAccessibilityHint: Swift.String
- final public let attachmentOptionsTitle: Swift.String
- final public let attachmentOptionsImagesButton: Swift.String
- final public let attachmentOptionsFilesButton: Swift.String
- final public let attachmentOptionsCancelButton: Swift.String
- final public let showAttachmentButtonAccessibilityHint: Swift.String
- final public let downloadAttachmentButtonAccessibilityHint: Swift.String
- public var emailAddress: Swift.String? {
- get
- set
- }
- public var name: Swift.String? {
- get
- set
- }
- public var profileIsValid: Swift.Bool
- public var shouldRequestProfile: Swift.Bool
- public enum ProfileMode {
- case optionalEmail
- case requiredEmail
- case hidden
- public static func == (a: ApptentiveKit.MessageCenterViewModel.ProfileMode, b: ApptentiveKit.MessageCenterViewModel.ProfileMode) -> Swift.Bool
- public func hash(into hasher: inout Swift.Hasher)
- public var hashValue: Swift.Int {
- get
- }
- }
- public var oldestUnreadMessageIndexPath: Foundation.IndexPath? {
- get
- }
- public var newestMessageIndexPath: Foundation.IndexPath? {
- get
- }
- public func commitProfileEdits()
- public func cancelProfileEdits()
- public func launch()
- public func cancel()
- public var numberOfMessageGroups: Swift.Int {
- get
- }
- public func markMessageAsRead(at indexPath: Foundation.IndexPath)
- public func numberOfMessagesInGroup(at index: Swift.Int) -> Swift.Int
- public func dateStringForMessagesInGroup(at index: Swift.Int) -> Swift.String?
- public func message(at indexPath: Foundation.IndexPath) -> ApptentiveKit.MessageCenterViewModel.Message
- public func downloadAttachment(at index: Swift.Int, inMessageAt indexPath: Foundation.IndexPath)
- public var draftMessage: ApptentiveKit.MessageCenterViewModel.Message {
- get
- }
- public var draftMessageBody: Swift.String? {
- get
- set
- }
- public var draftAttachments: [ApptentiveKit.MessageCenterViewModel.Message.Attachment] {
- get
- }
- public func addImageAttachment(_ image: UIKit.UIImage, name: Swift.String?)
- public func addFileAttachment(at sourceURL: Foundation.URL)
- public func removeAttachment(at index: Swift.Int)
- public var remainingAttachmentSlots: Swift.Int {
- get
- }
- public var canAddAttachment: Swift.Bool {
- get
- }
- public var canSendMessage: Swift.Bool {
- get
- }
- public func sendMessage()
- @objc deinit
-}
-public enum MessageCenterViewModelError : Swift.Error {
- case attachmentCountGreaterThanMax
- case unableToGetImageData
- public static func == (a: ApptentiveKit.MessageCenterViewModelError, b: ApptentiveKit.MessageCenterViewModelError) -> Swift.Bool
- public func hash(into hasher: inout Swift.Hasher)
- public var hashValue: Swift.Int {
- get
- }
-}
-extension ApptentiveKit.Apptentive {
- public var engagementManifestURL: Foundation.URL? {
- get
- }
- public func loadEngagementManifest(at url: Foundation.URL?, completion: @escaping (Swift.Result) -> Swift.Void)
- public func getInteractionList(_ completion: @escaping ([ApptentiveKit.Apptentive.InteractionListItem]) -> Swift.Void)
- public func presentInteraction(with id: Swift.String, completion: @escaping (Swift.Result) -> Swift.Void)
- public func presentInteraction(at url: Foundation.URL, completion: @escaping (Swift.Result) -> Swift.Void)
- public struct InteractionListItem {
- public let id: Swift.String
- public let displayName: Swift.String
- public let typeName: Swift.String
- }
- public func getEventList(_ completion: @escaping ([Swift.String]) -> Swift.Void)
-}
-extension ApptentiveKit.SurveyViewModel {
- @_hasMissingDesignatedInitializers public class Question {
- final public let text: Swift.String
- final public let isRequired: Swift.Bool
- final public let requiredText: Swift.String?
- final public let errorMessage: Swift.String
- final public let instructions: Swift.String?
- public var isMarkedAsInvalid: Swift.Bool {
- get
- set
- }
- public var accessibilityLabel: Swift.String {
- get
- }
- @objc deinit
- }
-}
-public struct Event : Swift.ExpressibleByStringLiteral, Swift.CustomDebugStringConvertible {
- public var customData: ApptentiveKit.CustomData
- public init(name: Swift.String)
- public init(stringLiteral value: Swift.String)
- public var debugDescription: Swift.String {
- get
- }
- public typealias ExtendedGraphemeClusterLiteralType = Swift.String
- public typealias StringLiteralType = Swift.String
- public typealias UnicodeScalarLiteralType = Swift.String
-}
-open class InteractionPresenter {
- public init()
- open func presentMessageCenter(with viewModel: ApptentiveKit.MessageCenterViewModel) throws
- open func presentSurvey(with viewModel: ApptentiveKit.SurveyViewModel) throws
- open func presentEnjoymentDialog(with viewModel: ApptentiveKit.DialogViewModel) throws
- open func presentTextModal(with viewModel: ApptentiveKit.DialogViewModel) throws
- open func presentViewController(_ viewControllerToPresent: UIKit.UIViewController, completion: (() -> Swift.Void)? = {}) throws
- public var validatedPresentingViewController: UIKit.UIViewController? {
- get
- }
- open func dismissPresentedViewController(animated: Swift.Bool)
- @objc deinit
-}
-public enum InteractionPresenterError : Swift.Error {
- case notImplemented(Swift.String, Swift.String)
- case decodingFailed(Swift.String, Swift.String)
- case noPresentingViewController
-}
-extension Foundation.NSNotification.Name {
- public static let apptentiveEventEngaged: Foundation.Notification.Name
-}
-public protocol DialogViewModelDelegate : AnyObject {
- func dismiss()
-}
-@_hasMissingDesignatedInitializers public class DialogViewModel {
- final public let title: Swift.String?
- final public let message: Swift.String?
- final public let dialogType: ApptentiveKit.DialogViewModel.DialogType
- final public let actions: [ApptentiveKit.DialogViewModel.Action]
- weak public var delegate: ApptentiveKit.DialogViewModelDelegate?
- public func buttonSelected(at position: Swift.Int)
- public func launch()
- public func cancel()
- public enum DialogType {
- case enjoymentDialog
- case textModal
- public static func == (a: ApptentiveKit.DialogViewModel.DialogType, b: ApptentiveKit.DialogViewModel.DialogType) -> Swift.Bool
- public func hash(into hasher: inout Swift.Hasher)
- public var hashValue: Swift.Int {
- get
- }
- }
- @objc deinit
-}
-@objc @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @_Concurrency.MainActor(unsafe) public class DialogView : UIKit.UIView {
- @objc @_Concurrency.MainActor(unsafe) dynamic public var titleTextColor: UIKit.UIColor
- @objc @_Concurrency.MainActor(unsafe) dynamic public var messageTextColor: UIKit.UIColor
- @objc @_Concurrency.MainActor(unsafe) dynamic public var titleFont: UIKit.UIFont
- @objc @_Concurrency.MainActor(unsafe) dynamic public var messageFont: UIKit.UIFont
- @objc @_Concurrency.MainActor(unsafe) dynamic public var headerImage: UIKit.UIImage?
- @objc @_Concurrency.MainActor(unsafe) dynamic public var cornerRadius: CoreFoundation.CGFloat
- @objc @_Concurrency.MainActor(unsafe) dynamic public var buttonSpacing: CoreFoundation.CGFloat
- @objc @_Concurrency.MainActor(unsafe) dynamic public var buttonInset: UIKit.UIEdgeInsets
- @objc @_Concurrency.MainActor(unsafe) dynamic public var separatorsAreHidden: Swift.Bool
- @objc @_Concurrency.MainActor(unsafe) dynamic public var separatorColor: UIKit.UIColor
- @_Concurrency.MainActor(unsafe) @objc override dynamic public func didMoveToWindow()
- @_Concurrency.MainActor(unsafe) @objc override dynamic public func layoutSubviews()
- @objc deinit
-}
-extension ApptentiveKit.SurveyViewModel {
- @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers public class FreeformQuestion : ApptentiveKit.SurveyViewModel.Question {
- final public let placeholderText: Swift.String?
- final public let allowMultipleLines: Swift.Bool
- public var value: Swift.String? {
- get
- set
- }
- @objc deinit
- }
-}
-extension ApptentiveKit.Apptentive {
- @available(*, deprecated, message: "Use the 'register(with:completion:)' method on the 'shared' instance instead.")
- @objc(registerWithConfiguration:) dynamic public class func register(with configuration: ApptentiveKit.ApptentiveConfiguration)
- @available(swift, deprecated: 1.0, message: "Use the 'register(with:completion:) method that takes an 'AppCredentials' argument.")
- @objc(registerWithConfiguration:completion:) dynamic public func register(with configuration: ApptentiveKit.ApptentiveConfiguration, completion: ((Swift.Bool) -> Swift.Void)? = nil)
- @available(*, deprecated, message: "Use the 'shared' static property instead.")
- @objc dynamic public class func sharedConnection() -> ApptentiveKit.Apptentive
- @available(*, deprecated, message: "This property is ignored. SKStoreReviewController will be used for all ratings.")
- @objc dynamic public var appID: Swift.String? {
- @objc get
- @objc set
- }
- @available(*, deprecated, message: "This property is ignored. The info button no longer exists.")
- @objc dynamic public var showInfoButton: Swift.Bool {
- @objc get
- @objc set
- }
- @available(*, deprecated, message: "This feature is not implemented.")
- @objc dynamic public var surveyTermsAndConditions: ApptentiveKit.TermsAndConditions? {
- @objc get
- @objc set
- }
- @available(*, deprecated, message: "This property is not available for reading.")
- @objc dynamic public var apptentiveKey: Swift.String {
- @objc get
- }
- @available(*, deprecated, message: "This property is not available for reading.")
- @objc dynamic public var apptentiveSignature: Swift.String {
- @objc get
- }
- @objc(engage:fromViewController:) dynamic public func engage(_ event: Swift.String, fromViewController viewController: UIKit.UIViewController?)
- @objc(engage:fromViewController:completion:) dynamic public func engage(_ event: Swift.String, fromViewController viewController: UIKit.UIViewController?, completion: ((Swift.Bool) -> Swift.Void)? = nil)
- @available(swift, deprecated: 1.0, message: "Create an 'Event' object and subscript its 'customData' property.")
- @objc(engage:withCustomData:fromViewController:) dynamic public func engage(event: Swift.String, withCustomData customData: [Swift.AnyHashable : Any]?, from viewController: UIKit.UIViewController?)
- @available(swift, deprecated: 1.0, message: "Create an 'Event' object and subscript its 'customData' property.")
- @objc(engage:withCustomData:fromViewController:completion:) dynamic public func engage(event: Swift.String, withCustomData customData: [Swift.AnyHashable : Any]?, from viewController: UIKit.UIViewController?, completion: ((Swift.Bool) -> Swift.Void)? = nil)
- @available(*, deprecated, message: "Event extended data are no longer supported. Event will be engaged without extended data.")
- @objc(engage:withCustomData:withExtendedData:fromViewController:) dynamic public func engage(event: Swift.String, withCustomData customData: [Swift.AnyHashable : Any]?, withExtendedData extendedData: [[Swift.AnyHashable : Any]]?, from viewController: UIKit.UIViewController?)
- @available(*, deprecated, message: "Event extended data are no longer supported. Event will be engaged without extended data.")
- @objc(engage:withCustomData:withExtendedData:fromViewController:completion:) dynamic public func engage(event: Swift.String, withCustomData customData: [Swift.AnyHashable : Any]?, withExtendedData extendedData: [[Swift.AnyHashable : Any]]?, from viewController: UIKit.UIViewController?, completion: ((Swift.Bool) -> Swift.Void)? = nil)
- @available(swift, deprecated: 1.0, message: "Use the 'canShowInteraction(event:completion:)' method instead.")
- @objc dynamic public func queryCanShowInteraction(forEvent event: Swift.String, completion: @escaping (Swift.Bool) -> Swift.Void)
- @available(*, deprecated, message: "Extended event data are no longer supported.")
- @objc(extendedDataDate:) dynamic public class func extendedData(date: Foundation.Date) -> [Swift.AnyHashable : Any]
- @available(*, deprecated, message: "Extended event data are no longer supported.")
- @objc(extendedDataLocationForLatitude:longitude:) dynamic public class func extendedData(latitude: Swift.Double, longitude: Swift.Double) -> [Swift.AnyHashable : Any]
- @available(*, deprecated, message: "Extended event data are no longer supported.")
- @objc(extendedDataCommerceWithTransactionID:affiliation:revenue:shipping:tax:currency:commerceItems:) dynamic public class func extendedData(transactionID: Swift.String?, affiliation: Swift.String?, revenue: Foundation.NSNumber?, shipping: Foundation.NSNumber?, tax: Foundation.NSNumber?, currency: Swift.String?, commerceItems: [[Swift.AnyHashable : Any]]?) -> [Swift.AnyHashable : Any]
- @available(*, deprecated, message: "Extended event data are no longer supported.")
- @objc(extendedDataCommerceItemWithItemID:name:category:price:quantity:currency:) dynamic public class func extendedData(itemID: Swift.String?, name: Swift.String?, category: Swift.String?, price: Foundation.NSNumber?, quantity: Foundation.NSNumber?, currency: Swift.String?) -> [Swift.AnyHashable : Any]
- @available(*, deprecated, message: "This feature is not implemented and will always result in false.")
- @objc dynamic public func queryCanShowMessageCenter(completion: @escaping (Swift.Bool) -> Swift.Void)
- @objc(presentMessageCenterFromViewController:) dynamic public func presentMessageCenterCompat(from viewController: UIKit.UIViewController?)
- @available(swift, deprecated: 1.0, message: "Use the method whose completion handler takes a Result parameter.")
- @objc(presentMessageCenterFromViewController:completion:) dynamic public func presentMessageCenterCompat(from viewController: UIKit.UIViewController?, completion: ((Swift.Bool) -> Swift.Void)? = nil)
- @objc(presentMessageCenterFromViewController:withCustomData:) dynamic public func presentMessageCenterCompat(from viewController: UIKit.UIViewController?, withCustomData customData: [Swift.AnyHashable : Any]?)
- @available(swift, deprecated: 1.0, message: "Use the method whose completion handler takes a Result parameter.")
- @objc(presentMessageCenterFromViewController:withCustomData:completion:) dynamic public func presentMessageCenterCompat(from viewController: UIKit.UIViewController?, withCustomData customData: [Swift.AnyHashable : Any]?, completion: ((Swift.Bool) -> Swift.Void)? = nil)
- @available(*, deprecated, message: "This feature is not implemented and this method will always result in false.")
- @objc dynamic public func dismissMessageCenter(animated: Swift.Bool, completion: (() -> Swift.Void)? = nil)
- @available(*, deprecated, message: "This feature is not implemented and this property will return an empty view.")
- @objc dynamic public func unreadMessageCountAccessoryView(apptentiveHeart: Swift.Bool) -> UIKit.UIView
- @available(*, deprecated, message: "This method is no longer implemented and will trigger an assertion failure.")
- @objc dynamic public func openAppStore()
- @available(*, deprecated, message: "Use the 'setRemoteNotificationToken()' method instead.")
- @objc dynamic public func setPushProvider(_ pushProvider: ApptentiveKit.ApptentivePushProvider, deviceToken: Foundation.Data)
- @available(*, deprecated, message: "This method is deprecated in favor of didReceveUserNotificationResponse(_:from:withCompletionHandler:).")
- @objc dynamic public func didReceveUserNotificationResponse(_ response: UserNotifications.UNNotificationResponse, from _: UIKit.UIViewController?, withCompletionHandler completionHandler: @escaping () -> Swift.Void) -> Swift.Bool
- @available(*, deprecated, message: "Advertising identifier collection is not implemented.")
- @objc dynamic public var advertisingIdentifier: Foundation.UUID? {
- @objc get
- @objc set
- }
- @available(*, deprecated, message: "mParticleId has been renamed to mParticleID.")
- @objc dynamic public var mParticleId: Swift.String? {
- @objc get
- @objc set
- }
- @available(swift, deprecated: 1.0, message: "Subscript the 'personCustomData' property instead.")
- @objc dynamic public func removeCustomPersonData(withKey key: Swift.String)
- @available(swift, deprecated: 1.0, message: "Subscript the 'deviceCustomData' property instead.")
- @objc dynamic public func removeCustomDeviceData(withKey key: Swift.String)
- @available(swift, deprecated: 1.0, message: "Subscript the 'deviceCustomData' property instead.")
- @objc(addCustomDeviceDataString:withKey:) dynamic public func addCustomDeviceData(_ string: Swift.String, withKey key: Swift.String)
- @available(swift, deprecated: 1.0, message: "Subscript the 'deviceCustomData' property instead.")
- @objc(addCustomDeviceDataNumber:withKey:) dynamic public func addCustomDeviceData(_ number: Foundation.NSNumber, withKey key: Swift.String)
- @available(swift, deprecated: 1.0, message: "Subscript the 'deviceCustomData' property instead.")
- @objc(addCustomDeviceDataBool:withKey:) dynamic public func addCustomDeviceData(_ boolValue: Swift.Bool, withKey key: Swift.String)
- @available(swift, deprecated: 1.0, message: "Subscript the 'personCustomData' property instead.")
- @objc(addCustomPersonDataString:withKey:) dynamic public func addCustomPersonData(_ string: Swift.String, withKey key: Swift.String)
- @available(swift, deprecated: 1.0, message: "Subscript the 'personCustomData' property instead.")
- @objc(addCustomPersonDataNumber:withKey:) dynamic public func addCustomPersonData(_ number: Foundation.NSNumber, withKey key: Swift.String)
- @available(swift, deprecated: 1.0, message: "Subscript the 'personCustomData' property instead.")
- @objc(addCustomPersonDataBool:withKey:) dynamic public func addCustomPersonData(_ boolValue: Swift.Bool, withKey key: Swift.String)
- @available(*, deprecated, message: "Set style overrides defined in UIKit+Apptentive.swift extensions.")
- @objc dynamic public var styleSheet: Any? {
- @objc get
- @objc set
- }
- @available(*, deprecated, message: "This method is not currently implemented and will trigger an assertion failure.")
- @objc dynamic public func checkSDKConfiguration()
- @available(*, deprecated, message: "This method is not currently implemented and will trigger an assertion failure.")
- @objc dynamic public func logIn(withToken token: Swift.String, completion: @escaping (Swift.Bool, Swift.Error) -> Swift.Void)
- @available(*, deprecated, message: "This method is not currently implemented and will trigger an assertion failure.")
- @objc dynamic public func logOut()
- @available(*, deprecated, message: "Multiple users on the same device is not currently supported.")
- @objc dynamic public var authenticationFailureCallback: ApptentiveKit.ApptentiveAuthenticationFailureCallback? {
- @objc get
- @objc set
- }
- @available(*, deprecated, message: "This feature is no longer supported.")
- @objc dynamic public var preInteractionCallback: ApptentiveKit.ApptentiveInteractionCallback? {
- @objc get
- @objc set
- }
- @available(*, deprecated, message: "This method is not currently implemented and will trigger an assertion failure.")
- @objc dynamic public func updateToken(_ token: Swift.String, completion: ((Swift.Bool) -> Swift.Void)? = nil)
- @available(swift, deprecated: 1.0, message: "Set the 'logLevel' property on 'ApptentiveLogger' or one of it's static log properties.")
- @objc dynamic public var logLevel: ApptentiveKit.ApptentiveLogLevel {
- @objc get
- @objc set
- }
-}
-extension UIKit.UIButton {
- @available(swift, deprecated: 1.0, message: "Set the 'apptentiveStyle' property to 'ApptentiveButtonStyle.pill'.")
- @objc @_Concurrency.MainActor(unsafe) public static let apptentivePillRadius: CoreFoundation.CGFloat
- @available(swift, deprecated: 1.0, message: "Use the 'apptentiveStyle' property.")
- @objc @_Concurrency.MainActor(unsafe) public static var apptentiveCornerRadius: CoreFoundation.CGFloat {
- @objc get
- @objc set
- }
-}
-extension UIKit.UITableView {
- @available(swift, deprecated: 1.0, message: "Use the 'apptentive' property on 'UITableView.Style'.")
- @objc @_Concurrency.MainActor(unsafe) public static var apptentiveStyle: Swift.Int {
- @objc get
- @objc set
- }
-}
-extension UIKit.UIViewController {
- @available(swift, deprecated: 1.0, message: "Use the 'apptentive' property on 'UIModalPresentationStyle'.")
- @objc @_Concurrency.MainActor(unsafe) dynamic public var apptentiveModalPresentationStyle: UIKit.UIModalPresentationStyle {
- @objc get
- @objc set
- }
-}
-@available(*, deprecated, message: "Multiple users on the same device is not currently supported.")
-public typealias ApptentiveAuthenticationFailureCallback = (ApptentiveKit.ApptentiveAuthenticationFailureReason, Swift.String) -> Swift.Void
-@available(*, deprecated, message: "This feature is no longer supported.")
-public typealias ApptentiveInteractionCallback = (Swift.String, [Swift.AnyHashable : Any]?) -> Swift.Bool
-@available(*, deprecated, message: "Multiple users on the same device is not currently supported.")
-@objc public enum ApptentiveAuthenticationFailureReason : Swift.Int {
- case unknown = 0
- case invalidAlgorithm = 1
- case malformedToken = 2
- case invalidToken = 3
- case missingSubClaim = 4
- case mismatchedSubClaim = 5
- case invalidSubClaim = 6
- case expiredToken = 7
- case revokedToken = 8
- case missingAppKey = 9
- case missingAppSignature = 10
- case invalidKeySignaturePair = 11
- public init?(rawValue: Swift.Int)
- public typealias RawValue = Swift.Int
- public var rawValue: Swift.Int {
- get
- }
-}
-@objc @available(swift, deprecated: 1.0, message: "Set the properties from this class on the 'Apptentive' object directly.")
-public class ApptentiveConfiguration : ObjectiveC.NSObject {
- @objc final public let apptentiveKey: Swift.String
- @objc final public let apptentiveSignature: Swift.String
- @available(swift, deprecated: 1.0, message: "Set the 'logLevel' property on 'ApptentiveLogger' or one of its static log properties.")
- @objc public var logLevel: ApptentiveKit.ApptentiveLogLevel
- @available(swift, deprecated: 1.0, message: "Set the 'shouldHideSensitiveLogs' property on 'ApptentiveLogger' or one of its static log properties.")
- @objc public var shouldSanitizeLogMessages: Swift.Bool
- @available(*, deprecated, message: "This property is ignored. Use the designated initializer for 'Apptentive' to set this.")
- @objc public var baseURL: Foundation.URL?
- @available(swift, deprecated: 1.0, message: "Set the 'distributionName' property on 'Apptentive' directly before calling 'register(with:completion)'.")
- @objc public var distributionName: Swift.String?
- @available(swift, deprecated: 1.0, message: "Set the 'distributionVersion' property on 'Apptentive' directly before calling 'register(with:completion)'.")
- @objc public var distributionVersion: Swift.String?
- @available(*, deprecated, message: "This property is ignored. An 'SKStoreReviewController' will be used for all ratings.")
- @objc public var appID: Swift.String?
- @available(*, deprecated, message: "This property is ignored. The info button no longer exists.")
- @objc public var showInfoButton: Swift.Bool
- @available(*, deprecated, message: "This property is ignored. Configure survey terms and conditions in the Apptentive Dashboard.")
- @objc public var surveyTermsAndConditions: ApptentiveKit.TermsAndConditions?
- @objc(initWithApptentiveKey:apptentiveSignature:) required public init?(apptentiveKey: Swift.String, apptentiveSignature: Swift.String)
- @objc public static func configuration(apptentiveKey key: Swift.String, apptentiveSignature signature: Swift.String) -> ApptentiveKit.ApptentiveConfiguration
- @objc deinit
-}
-@available(*, deprecated, message: "Selecting a push notification provider is no longer supported.")
-@objc public enum ApptentivePushProvider : Swift.Int {
- case apptentive = 0
- case urbanAirship = 1
- case amazonSNS = 2
- case parse = 3
- public init?(rawValue: Swift.Int)
- public typealias RawValue = Swift.Int
- public var rawValue: Swift.Int {
- get
- }
-}
-@available(*, deprecated, message: "Use the 'LogLevel' enumeration to set the 'logLevel' property on 'ApptentiveLogger' or one of it's static log properties.")
-@objc public enum ApptentiveLogLevel : Swift.UInt {
- case undefined = 0
- case crit = 1
- case error = 2
- case warn = 3
- case info = 4
- case debug = 5
- case verbose = 6
- public init?(rawValue: Swift.UInt)
- public typealias RawValue = Swift.UInt
- public var rawValue: Swift.UInt {
- get
- }
-}
-@objc @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.")
-public class TermsAndConditions : ObjectiveC.NSObject {
- @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.")
- public init(bodyText: Swift.String?, linkText: Swift.String?, linkURL: Foundation.URL?)
- final public let bodyText: Swift.String?
- final public let linkText: Swift.String?
- final public let linkURL: Foundation.URL?
- @objc deinit
-}
-@available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.")
-public protocol ApptentiveStyle {
- @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.")
- func font(for textStyle: ApptentiveKit.ApptentiveStyleIdentifier) -> UIKit.UIFont
- @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.")
- func color(for style: ApptentiveKit.ApptentiveStyleIdentifier) -> UIKit.UIColor
-}
-@available(*, deprecated, message: "This enumeration is provided for compatibility but this feature is not implemented.")
-public enum ApptentiveStyleIdentifier {
- case body
- case headerTitle
- case headerMessage
- case messageDate
- case messageSender
- case messageStatus
- case messageCenterStatus
- case surveyInstructions
- case doneButton
- case button
- case submitButton
- case textInput
- case headerBackground
- case footerBackground
- case failure
- case separator
- case background
- case collectionBackground
- case textInputBackground
- case textInputPlaceholder
- case messageBackground
- case replyBackground
- case contextBackground
- public static func == (a: ApptentiveKit.ApptentiveStyleIdentifier, b: ApptentiveKit.ApptentiveStyleIdentifier) -> Swift.Bool
- public func hash(into hasher: inout Swift.Hasher)
- public var hashValue: Swift.Int {
- get
- }
-}
-@_hasMissingDesignatedInitializers @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.")
-public class ApptentiveStyleSheet : ApptentiveKit.ApptentiveStyle {
- @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.")
- public func font(for textStyle: ApptentiveKit.ApptentiveStyleIdentifier) -> UIKit.UIFont
- @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.")
- public func color(for style: ApptentiveKit.ApptentiveStyleIdentifier) -> UIKit.UIColor
- @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.")
- convenience public init?(contentsOf stylePropertyListURL: Foundation.URL)
- @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.")
- public var fontFamily: Swift.String
- @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.")
- public var lightFaceAttribute: Swift.String?
- @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.")
- public var regularFaceAttribute: Swift.String?
- @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.")
- public var mediumFaceAttribute: Swift.String?
- @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.")
- public var boldFaceAttribute: Swift.String?
- @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.")
- public var primaryColor: UIKit.UIColor
- @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.")
- public var secondaryColor: UIKit.UIColor
- @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.")
- public var failureColor: UIKit.UIColor
- @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.")
- public var backgroundColor: UIKit.UIColor
- @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.")
- public var separatorColor: UIKit.UIColor
- @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.")
- public var collectionBackgroundColor: UIKit.UIColor
- @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.")
- public var placeholderColor: UIKit.UIColor
- @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.")
- public var sizeAdjustment: CoreFoundation.CGFloat
- @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.")
- public func setFontDescriptor(_ fontDescriptor: UIKit.UIFontDescriptor, forStyle style: Swift.String)
- @available(*, deprecated, message: "This class is provided for compatibility but this feature is not implemented.")
- public func setColor(_ color: UIKit.UIColor, forStyle style: Swift.String)
- @objc deinit
-}
-@objc @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @_Concurrency.MainActor(unsafe) public class DialogButton : UIKit.UIButton {
- @objc @_Concurrency.MainActor(unsafe) dynamic public var titleFont: UIKit.UIFont
- @objc @_Concurrency.MainActor(unsafe) dynamic public var cornerRadius: CoreFoundation.CGFloat
- @objc @_Concurrency.MainActor(unsafe) dynamic public var borderWidth: CoreFoundation.CGFloat
- @objc @_Concurrency.MainActor(unsafe) dynamic public var borderColor: UIKit.UIColor
- @_Concurrency.MainActor(unsafe) @objc override dynamic public var intrinsicContentSize: CoreFoundation.CGSize {
- @objc get
- }
- @_Concurrency.MainActor(unsafe) @objc override dynamic public func layoutSubviews()
- @_Concurrency.MainActor(unsafe) @objc override dynamic public func tintColorDidChange()
- @_Concurrency.MainActor(unsafe) @objc override dynamic public func didMoveToWindow()
- @objc deinit
-}
-@objc @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @_Concurrency.MainActor(unsafe) public class DismissButton : ApptentiveKit.DialogButton {
- @objc deinit
-}
-@objc @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @_Concurrency.MainActor(unsafe) public class InteractionButton : ApptentiveKit.DialogButton {
- @objc deinit
-}
-@objc @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @_Concurrency.MainActor(unsafe) public class YesButton : ApptentiveKit.DialogButton {
- @objc deinit
-}
-@objc @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @_Concurrency.MainActor(unsafe) public class NoButton : ApptentiveKit.DialogButton {
- @objc deinit
-}
-public struct Sysctl {
- public enum Error : Swift.Error {
- case unknown
- case malformedUTF8
- case invalidSize
- case posixError(Darwin.POSIXErrorCode)
- }
- public static func data(for keys: [Swift.Int32]) throws -> [Swift.Int8]
- public static func keys(for name: Swift.String) throws -> [Swift.Int32]
- public static func value(ofType: T.Type, forKeys keys: [Swift.Int32]) throws -> T
- public static func value(ofType type: T.Type, forKeys keys: Swift.Int32...) throws -> T
- public static func value(ofType type: T.Type, forName name: Swift.String) throws -> T
- public static func string(for keys: [Swift.Int32]) throws -> Swift.String
- public static func string(for keys: Swift.Int32...) throws -> Swift.String
- public static func string(for name: Swift.String) throws -> Swift.String
- public static var hostName: Swift.String {
- get
- }
- public static var machine: Swift.String {
- get
- }
- public static var model: Swift.String {
- get
- }
- public static var activeCPUs: Swift.Int32 {
- get
- }
- public static var osRelease: Swift.String {
- get
- }
- public static var osType: Swift.String {
- get
- }
- public static var osVersion: Swift.String {
- get
- }
- public static var version: Swift.String {
- get
- }
-}
-@objc @_inheritsConvenienceInitializers @_Concurrency.MainActor(unsafe) public class ApptentiveNavigationController : UIKit.UINavigationController {
- @_Concurrency.MainActor(unsafe) @objc override dynamic public var preferredStatusBarStyle: UIKit.UIStatusBarStyle {
- @objc get
- }
- @objc @_Concurrency.MainActor(unsafe) public static var prefersLargeHeader: Swift.Bool
- @available(iOS 5.0, *)
- @_Concurrency.MainActor(unsafe) @objc override dynamic public init(navigationBarClass: Swift.AnyClass?, toolbarClass: Swift.AnyClass?)
- @_Concurrency.MainActor(unsafe) @objc override dynamic public init(rootViewController: UIKit.UIViewController)
- @_Concurrency.MainActor(unsafe) @objc override dynamic public init(nibName nibNameOrNil: Swift.String?, bundle nibBundleOrNil: Foundation.Bundle?)
- @_Concurrency.MainActor(unsafe) @objc required dynamic public init?(coder aDecoder: Foundation.NSCoder)
- @objc deinit
-}
-extension UIKit.UITableView {
- @_Concurrency.MainActor(unsafe) public static var apptentiveQuestionSeparatorHeight: CoreFoundation.CGFloat
-}
-extension UIKit.UITableView.Style {
- public static var apptentive: UIKit.UITableView.Style
-}
-extension UIKit.UIModalPresentationStyle {
- public static var apptentive: UIKit.UIModalPresentationStyle
-}
-extension UIKit.UIBarButtonItem {
- @objc @_Concurrency.MainActor(unsafe) public static var apptentiveClose: UIKit.UIBarButtonItem
- @objc @_Concurrency.MainActor(unsafe) public static var apptentiveProfileEdit: UIKit.UIBarButtonItem
-}
-extension UIKit.UIButton {
- @_Concurrency.MainActor(unsafe) public static var apptentiveClose: UIKit.UIButton?
- public enum ApptentiveButtonStyle {
- case pill
- case radius(CoreFoundation.CGFloat)
- }
- @_Concurrency.MainActor(unsafe) public static var apptentiveStyle: UIKit.UIButton.ApptentiveButtonStyle
-}
-extension UIKit.UIImage {
- @objc public static var apptentiveMessageAttachmentButton: UIKit.UIImage?
- @objc public static var apptentiveMessageSendButton: UIKit.UIImage?
- @objc public static var apptentiveSentMessageBubble: UIKit.UIImage?
- @objc public static var apptentiveReceivedMessageBubble: UIKit.UIImage?
- @objc public static var apptentiveAttachmentPlaceholder: UIKit.UIImage?
- @objc public static var apptentiveAttachmentRemoveButton: UIKit.UIImage?
- @objc public static var apptentiveHeaderLogo: UIKit.UIImage?
- @objc public static var apptentiveRadioButton: UIKit.UIImage?
- @objc public static var apptentiveCheckbox: UIKit.UIImage?
- @objc public static var apptentiveRadioButtonSelected: UIKit.UIImage?
- @objc public static var apptentiveCheckboxSelected: UIKit.UIImage?
-}
-extension UIKit.UIColor {
- @objc public static var apptentiveMessageCenterTextInputBackground: UIKit.UIColor
- @objc public static var apptentiveMessageCenterTextInputPlaceholder: UIKit.UIColor
- @available(*, deprecated, message: "This property has been renamed to 'apptentiveMessageTextInputPlaceholder'.")
- @objc public static var apptentiveMessageTextViewPlaceholder: UIKit.UIColor {
- @objc get
- @objc set
- }
- @objc public static var apptentiveMessageCenterTextInput: UIKit.UIColor
- @objc public static var apptentivetextInputTint: UIKit.UIColor
- @objc public static var apptentiveMessageCenterTextInputBorder: UIKit.UIColor
- @available(*, deprecated, message: "This property has been renamed to 'apptentiveMessageCenterTextInputBorder'.")
- @objc public static var apptentiveMessageCenterTextViewBorder: UIKit.UIColor {
- @objc get
- @objc set
- }
- @objc public static var apptentiveMessageCenterAttachmentButton: UIKit.UIColor
- @objc public static var apptentiveMessageTextInputPlaceholder: UIKit.UIColor
- @objc public static var apptentiveMessageCenterStatus: UIKit.UIColor
- @objc public static var apptentiveMessageCenterGreetingBody: UIKit.UIColor
- @objc public static var apptentiveMessageCenterGreetingTitle: UIKit.UIColor
- @objc public static var apptentiveMessageBubbleInbound: UIKit.UIColor
- @objc public static var apptentiveMessageBubbleOutbound: UIKit.UIColor
- @objc public static var apptentiveMessageLabelInbound: UIKit.UIColor
- @objc public static var apptentiveMessageLabelOutbound: UIKit.UIColor
- @objc public static var apptentiveQuestionLabel: UIKit.UIColor
- @objc public static var apptentiveInstructionsLabel: UIKit.UIColor
- @objc public static var apptentiveChoiceLabel: UIKit.UIColor
- @objc public static var apptentiveError: UIKit.UIColor
- @objc public static var apptentiveSecondaryLabel: UIKit.UIColor
- @objc public static var apptentiveRangeControlBorder: UIKit.UIColor
- @objc public static var apptentiveSurveyIntroduction: UIKit.UIColor
- @objc public static var apptentiveTextInputBorder: UIKit.UIColor
- @objc public static var apptentiveTextInputBackground: UIKit.UIColor
- @objc public static var apptentiveTextInput: UIKit.UIColor
- @objc public static var apptentiveTextInputPlaceholder: UIKit.UIColor
- @objc public static var apptentiveMinMaxLabel: UIKit.UIColor
- @objc public static var apptentiveGroupedBackground: UIKit.UIColor
- @objc public static var apptentiveSecondaryGroupedBackground: UIKit.UIColor
- @objc public static var apptentiveSeparator: UIKit.UIColor
- @objc public static var apptentiveImageSelected: UIKit.UIColor
- @objc public static var apptentiveImageNotSelected: UIKit.UIColor
- @objc public static var apptentiveSubmitButton: UIKit.UIColor
- @objc public static var apptentiveBranchedSurveyFooter: UIKit.UIColor
- @available(*, deprecated, message: "This property has been renamed to 'apptentiveSubmitStatusLabel'.")
- public static var apptentiveSubmitLabel: UIKit.UIColor
- @objc public static var apptentiveSubmitStatusLabel: UIKit.UIColor
- @objc public static var apptentiveTermsOfServiceLabel: UIKit.UIColor
- @objc public static var apptentiveSubmitButtonTitle: UIKit.UIColor
- @objc public static var apptentiveSubmitButtonBorder: UIKit.UIColor
- @objc public static var apptentiveQuestionSeparator: UIKit.UIColor
- public static var apptentiveUnselectedSurveyIndicatorSegment: UIKit.UIColor
- public static var apptentiveSelectedSurveyIndicatorSegment: UIKit.UIColor
- @objc public static var apptentiveMessageCenterBackground: UIKit.UIColor
- @objc public static var apptentiveMessageCenterAttachmentDeleteButton: UIKit.UIColor
- @objc public static var apptentiveMessageCenterComposeBoxBackground: UIKit.UIColor
- @objc public static var apptentiveMessageCenterComposeBoxSeparator: UIKit.UIColor
- @objc public static var apptentiveTextInputBorderSelected: UIKit.UIColor
- @objc public static var apptentiveDisclaimerLabel: UIKit.UIColor
-}
-extension UIKit.UIFont {
- @objc public static var apptentiveMessageCenterTextInputPlaceholder: UIKit.UIFont
- @objc public static var apptentiveMessageCenterTextInput: UIKit.UIFont
- @objc public static var apptentiveTextInputPlaceholder: UIKit.UIFont
- @objc public static var apptentiveMessageCenterStatus: UIKit.UIFont
- @objc public static var apptentiveMessageCenterGreetingTitle: UIKit.UIFont
- @objc public static var apptentiveMessageCenterGreetingBody: UIKit.UIFont
- @objc public static var apptentiveMessageCenterAttachmentLabel: UIKit.UIFont
- @objc public static var apptentiveQuestionLabel: UIKit.UIFont
- @objc public static var apptentiveTermsOfServiceLabel: UIKit.UIFont
- @objc public static var apptentiveChoiceLabel: UIKit.UIFont
- @objc public static var apptentiveMessageLabel: UIKit.UIFont
- @objc public static var apptentiveMinMaxLabel: UIKit.UIFont
- @objc public static var apptentiveSenderLabel: UIKit.UIFont
- @objc public static var apptentiveMessageDateLabel: UIKit.UIFont
- @objc public static var apptentiveInstructionsLabel: UIKit.UIFont
- @objc public static var apptentiveSurveyIntroductionLabel: UIKit.UIFont
- @available(*, deprecated, message: "This property has been renamed to 'apptentiveSubmitStatusLabel'.")
- public static var apptentiveSubmitLabel: UIKit.UIFont
- @objc public static var apptentiveSubmitStatusLabel: UIKit.UIFont
- @objc public static var apptentiveDisclaimerLabel: UIKit.UIFont
- @objc public static var apptentiveSubmitButtonTitle: UIKit.UIFont
- @objc public static var apptentiveTextInput: UIKit.UIFont
-}
-extension UIKit.UIToolbar {
- @objc public enum ToolbarMode : Swift.Int {
- case alwaysShown
- case hiddenWhenEmpty
- public init?(rawValue: Swift.Int)
- public typealias RawValue = Swift.Int
- public var rawValue: Swift.Int {
- get
- }
- }
- @objc @_Concurrency.MainActor(unsafe) public static var apptentiveMode: UIKit.UIToolbar.ToolbarMode
-}
-extension CoreFoundation.CGFloat {
- public static var apptentiveButtonBorderWidth: CoreFoundation.CGFloat
-}
-extension ApptentiveKit.DialogViewModel.Action.ActionType : Swift.Equatable {}
-extension ApptentiveKit.DialogViewModel.Action.ActionType : Swift.Hashable {}
-extension ApptentiveKit.DialogViewModel.Action.ActionType : Swift.RawRepresentable {}
-extension ApptentiveKit.MessageCenterViewModel.Message.SentStatus : Swift.Hashable {}
-extension ApptentiveKit.SurveyViewModel.ChoiceQuestion.SelectionStyle : Swift.Equatable {}
-extension ApptentiveKit.SurveyViewModel.ChoiceQuestion.SelectionStyle : Swift.Hashable {}
-extension ApptentiveKit.LogLevel : Swift.Hashable {}
-extension ApptentiveKit.LogLevel : Swift.RawRepresentable {}
-extension ApptentiveKit.Apptentive.UITheme : Swift.Equatable {}
-extension ApptentiveKit.Apptentive.UITheme : Swift.Hashable {}
-extension ApptentiveKit.SurveyViewModel.DisplayMode : Swift.Equatable {}
-extension ApptentiveKit.SurveyViewModel.DisplayMode : Swift.Hashable {}
-extension ApptentiveKit.MessageCenterViewModel.ProfileMode : Swift.Equatable {}
-extension ApptentiveKit.MessageCenterViewModel.ProfileMode : Swift.Hashable {}
-extension ApptentiveKit.MessageCenterViewModelError : Swift.Equatable {}
-extension ApptentiveKit.MessageCenterViewModelError : Swift.Hashable {}
-extension ApptentiveKit.DialogViewModel.DialogType : Swift.Equatable {}
-extension ApptentiveKit.DialogViewModel.DialogType : Swift.Hashable {}
-@available(*, deprecated, message: "Multiple users on the same device is not currently supported.")
-extension ApptentiveKit.ApptentiveAuthenticationFailureReason : Swift.Equatable {}
-@available(*, deprecated, message: "Multiple users on the same device is not currently supported.")
-extension ApptentiveKit.ApptentiveAuthenticationFailureReason : Swift.Hashable {}
-@available(*, deprecated, message: "Multiple users on the same device is not currently supported.")
-extension ApptentiveKit.ApptentiveAuthenticationFailureReason : Swift.RawRepresentable {}
-@available(*, deprecated, message: "Selecting a push notification provider is no longer supported.")
-extension ApptentiveKit.ApptentivePushProvider : Swift.Equatable {}
-@available(*, deprecated, message: "Selecting a push notification provider is no longer supported.")
-extension ApptentiveKit.ApptentivePushProvider : Swift.Hashable {}
-@available(*, deprecated, message: "Selecting a push notification provider is no longer supported.")
-extension ApptentiveKit.ApptentivePushProvider : Swift.RawRepresentable {}
-@available(*, deprecated, message: "Use the 'LogLevel' enumeration to set the 'logLevel' property on 'ApptentiveLogger' or one of it's static log properties.")
-extension ApptentiveKit.ApptentiveLogLevel : Swift.Equatable {}
-@available(*, deprecated, message: "Use the 'LogLevel' enumeration to set the 'logLevel' property on 'ApptentiveLogger' or one of it's static log properties.")
-extension ApptentiveKit.ApptentiveLogLevel : Swift.Hashable {}
-@available(*, deprecated, message: "Use the 'LogLevel' enumeration to set the 'logLevel' property on 'ApptentiveLogger' or one of it's static log properties.")
-extension ApptentiveKit.ApptentiveLogLevel : Swift.RawRepresentable {}
-@available(*, deprecated, message: "This enumeration is provided for compatibility but this feature is not implemented.")
-extension ApptentiveKit.ApptentiveStyleIdentifier : Swift.Equatable {}
-@available(*, deprecated, message: "This enumeration is provided for compatibility but this feature is not implemented.")
-extension ApptentiveKit.ApptentiveStyleIdentifier : Swift.Hashable {}
-extension UIKit.UIToolbar.ToolbarMode : Swift.Equatable {}
-extension UIKit.UIToolbar.ToolbarMode : Swift.Hashable {}
-extension UIKit.UIToolbar.ToolbarMode : Swift.RawRepresentable {}
diff --git a/src/ios/ApptentiveKit.xcframework/ios-arm64_x86_64-simulator/ApptentiveKit.framework/Modules/ApptentiveKit.swiftmodule/x86_64-apple-ios-simulator.abi.json b/src/ios/ApptentiveKit.xcframework/ios-arm64_x86_64-simulator/ApptentiveKit.framework/Modules/ApptentiveKit.swiftmodule/x86_64-apple-ios-simulator.abi.json
deleted file mode 100644
index 5827519..0000000
--- a/src/ios/ApptentiveKit.xcframework/ios-arm64_x86_64-simulator/ApptentiveKit.framework/Modules/ApptentiveKit.swiftmodule/x86_64-apple-ios-simulator.abi.json
+++ /dev/null
@@ -1,50876 +0,0 @@
-{
- "ABIRoot": {
- "kind": "Root",
- "name": "TopLevel",
- "printedName": "TopLevel",
- "children": [
- {
- "kind": "Import",
- "name": "StoreKit",
- "printedName": "StoreKit",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "UIKit",
- "printedName": "UIKit",
- "declKind": "Import",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "UIKit",
- "printedName": "UIKit",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "UIKit",
- "printedName": "UIKit",
- "declKind": "Import",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "UIKit",
- "printedName": "UIKit",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "UIKit",
- "printedName": "UIKit",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "DialogViewController",
- "printedName": "DialogViewController",
- "children": [
- {
- "kind": "Function",
- "name": "viewDidLoad",
- "printedName": "viewDidLoad()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Func",
- "usr": "c:@M@ApptentiveKit@objc(cs)DialogViewController(im)viewDidLoad",
- "mangledName": "$s13ApptentiveKit20DialogViewControllerC11viewDidLoadyyF",
- "moduleName": "ApptentiveKit",
- "overriding": true,
- "objc_name": "viewDidLoad",
- "declAttributes": [
- "Dynamic",
- "ObjC",
- "Custom",
- "Override",
- "AccessControl",
- "RawDocComment"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "viewDidAppear",
- "printedName": "viewDidAppear(_:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ],
- "declKind": "Func",
- "usr": "c:@M@ApptentiveKit@objc(cs)DialogViewController(im)viewDidAppear:",
- "mangledName": "$s13ApptentiveKit20DialogViewControllerC13viewDidAppearyySbF",
- "moduleName": "ApptentiveKit",
- "overriding": true,
- "objc_name": "viewDidAppear:",
- "declAttributes": [
- "Dynamic",
- "ObjC",
- "Custom",
- "Override",
- "AccessControl"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "dismiss",
- "printedName": "dismiss()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit20DialogViewControllerC7dismissyyF",
- "mangledName": "$s13ApptentiveKit20DialogViewControllerC7dismissyyF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Custom",
- "AccessControl",
- "RawDocComment"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(nibName:bundle:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "DialogViewController",
- "printedName": "ApptentiveKit.DialogViewController",
- "usr": "c:@M@ApptentiveKit@objc(cs)DialogViewController"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Foundation.Bundle?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bundle",
- "printedName": "Foundation.Bundle",
- "usr": "c:objc(cs)NSBundle"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Constructor",
- "usr": "c:@M@ApptentiveKit@objc(cs)DialogViewController(im)initWithNibName:bundle:",
- "mangledName": "$s13ApptentiveKit20DialogViewControllerC7nibName6bundleACSSSg_So8NSBundleCSgtcfc",
- "moduleName": "ApptentiveKit",
- "overriding": true,
- "implicit": true,
- "objc_name": "initWithNibName:bundle:",
- "declAttributes": [
- "Dynamic",
- "ObjC",
- "Custom",
- "Override"
- ],
- "init_kind": "Designated"
- }
- ],
- "declKind": "Class",
- "usr": "c:@M@ApptentiveKit@objc(cs)DialogViewController",
- "mangledName": "$s13ApptentiveKit20DialogViewControllerC",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Custom",
- "AccessControl",
- "RawDocComment",
- "ObjC"
- ],
- "superclassUsr": "c:objc(cs)UIViewController",
- "hasMissingDesignatedInitializers": true,
- "superclassNames": [
- "UIKit.UIViewController",
- "UIKit.UIResponder",
- "ObjectiveC.NSObject"
- ],
- "conformances": [
- {
- "kind": "Conformance",
- "name": "DialogViewModelDelegate",
- "printedName": "DialogViewModelDelegate",
- "usr": "s:13ApptentiveKit23DialogViewModelDelegateP",
- "mangledName": "$s13ApptentiveKit23DialogViewModelDelegateP"
- },
- {
- "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": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "UIKit",
- "printedName": "UIKit",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "QuickLook",
- "printedName": "QuickLook",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "UIKit",
- "printedName": "UIKit",
- "declKind": "Import",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "Import",
- "name": "UIKit",
- "printedName": "UIKit",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "UIKit",
- "printedName": "UIKit",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "UIKit",
- "printedName": "UIKit",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "UIKit",
- "printedName": "UIKit",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "OSLog",
- "printedName": "OSLog",
- "declKind": "Import",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "TypeDecl",
- "name": "ApptentiveLogger",
- "printedName": "ApptentiveLogger",
- "children": [
- {
- "kind": "Var",
- "name": "shouldHideSensitiveLogs",
- "printedName": "shouldHideSensitiveLogs",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit0A6LoggerV23shouldHideSensitiveLogsSbvpZ",
- "mangledName": "$s13ApptentiveKit0A6LoggerV23shouldHideSensitiveLogsSbvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A6LoggerV23shouldHideSensitiveLogsSbvgZ",
- "mangledName": "$s13ApptentiveKit0A6LoggerV23shouldHideSensitiveLogsSbvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "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": "s:13ApptentiveKit0A6LoggerV23shouldHideSensitiveLogsSbvsZ",
- "mangledName": "$s13ApptentiveKit0A6LoggerV23shouldHideSensitiveLogsSbvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A6LoggerV23shouldHideSensitiveLogsSbvMZ",
- "mangledName": "$s13ApptentiveKit0A6LoggerV23shouldHideSensitiveLogsSbvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "logLevel",
- "printedName": "logLevel",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "LogLevel",
- "printedName": "ApptentiveKit.LogLevel",
- "usr": "s:13ApptentiveKit8LogLevelO"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit0A6LoggerV8logLevelAA03LogE0Ovp",
- "mangledName": "$s13ApptentiveKit0A6LoggerV8logLevelAA03LogE0Ovp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "LogLevel",
- "printedName": "ApptentiveKit.LogLevel",
- "usr": "s:13ApptentiveKit8LogLevelO"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A6LoggerV8logLevelAA03LogE0Ovg",
- "mangledName": "$s13ApptentiveKit0A6LoggerV8logLevelAA03LogE0Ovg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "LogLevel",
- "printedName": "ApptentiveKit.LogLevel",
- "usr": "s:13ApptentiveKit8LogLevelO"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A6LoggerV8logLevelAA03LogE0Ovs",
- "mangledName": "$s13ApptentiveKit0A6LoggerV8logLevelAA03LogE0Ovs",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A6LoggerV8logLevelAA03LogE0OvM",
- "mangledName": "$s13ApptentiveKit0A6LoggerV8logLevelAA03LogE0OvM",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "default",
- "printedName": "default",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveLogger",
- "printedName": "ApptentiveKit.ApptentiveLogger",
- "usr": "s:13ApptentiveKit0A6LoggerV"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit0A6LoggerV7defaultACvpZ",
- "mangledName": "$s13ApptentiveKit0A6LoggerV7defaultACvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveLogger",
- "printedName": "ApptentiveKit.ApptentiveLogger",
- "usr": "s:13ApptentiveKit0A6LoggerV"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A6LoggerV7defaultACvgZ",
- "mangledName": "$s13ApptentiveKit0A6LoggerV7defaultACvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "ApptentiveLogger",
- "printedName": "ApptentiveKit.ApptentiveLogger",
- "usr": "s:13ApptentiveKit0A6LoggerV"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A6LoggerV7defaultACvsZ",
- "mangledName": "$s13ApptentiveKit0A6LoggerV7defaultACvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A6LoggerV7defaultACvMZ",
- "mangledName": "$s13ApptentiveKit0A6LoggerV7defaultACvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "engagement",
- "printedName": "engagement",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveLogger",
- "printedName": "ApptentiveKit.ApptentiveLogger",
- "usr": "s:13ApptentiveKit0A6LoggerV"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit0A6LoggerV10engagementACvpZ",
- "mangledName": "$s13ApptentiveKit0A6LoggerV10engagementACvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveLogger",
- "printedName": "ApptentiveKit.ApptentiveLogger",
- "usr": "s:13ApptentiveKit0A6LoggerV"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A6LoggerV10engagementACvgZ",
- "mangledName": "$s13ApptentiveKit0A6LoggerV10engagementACvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "ApptentiveLogger",
- "printedName": "ApptentiveKit.ApptentiveLogger",
- "usr": "s:13ApptentiveKit0A6LoggerV"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A6LoggerV10engagementACvsZ",
- "mangledName": "$s13ApptentiveKit0A6LoggerV10engagementACvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A6LoggerV10engagementACvMZ",
- "mangledName": "$s13ApptentiveKit0A6LoggerV10engagementACvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "interaction",
- "printedName": "interaction",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveLogger",
- "printedName": "ApptentiveKit.ApptentiveLogger",
- "usr": "s:13ApptentiveKit0A6LoggerV"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit0A6LoggerV11interactionACvpZ",
- "mangledName": "$s13ApptentiveKit0A6LoggerV11interactionACvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveLogger",
- "printedName": "ApptentiveKit.ApptentiveLogger",
- "usr": "s:13ApptentiveKit0A6LoggerV"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A6LoggerV11interactionACvgZ",
- "mangledName": "$s13ApptentiveKit0A6LoggerV11interactionACvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "ApptentiveLogger",
- "printedName": "ApptentiveKit.ApptentiveLogger",
- "usr": "s:13ApptentiveKit0A6LoggerV"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A6LoggerV11interactionACvsZ",
- "mangledName": "$s13ApptentiveKit0A6LoggerV11interactionACvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A6LoggerV11interactionACvMZ",
- "mangledName": "$s13ApptentiveKit0A6LoggerV11interactionACvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "network",
- "printedName": "network",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveLogger",
- "printedName": "ApptentiveKit.ApptentiveLogger",
- "usr": "s:13ApptentiveKit0A6LoggerV"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit0A6LoggerV7networkACvpZ",
- "mangledName": "$s13ApptentiveKit0A6LoggerV7networkACvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveLogger",
- "printedName": "ApptentiveKit.ApptentiveLogger",
- "usr": "s:13ApptentiveKit0A6LoggerV"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A6LoggerV7networkACvgZ",
- "mangledName": "$s13ApptentiveKit0A6LoggerV7networkACvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "ApptentiveLogger",
- "printedName": "ApptentiveKit.ApptentiveLogger",
- "usr": "s:13ApptentiveKit0A6LoggerV"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A6LoggerV7networkACvsZ",
- "mangledName": "$s13ApptentiveKit0A6LoggerV7networkACvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A6LoggerV7networkACvMZ",
- "mangledName": "$s13ApptentiveKit0A6LoggerV7networkACvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "payload",
- "printedName": "payload",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveLogger",
- "printedName": "ApptentiveKit.ApptentiveLogger",
- "usr": "s:13ApptentiveKit0A6LoggerV"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit0A6LoggerV7payloadACvpZ",
- "mangledName": "$s13ApptentiveKit0A6LoggerV7payloadACvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveLogger",
- "printedName": "ApptentiveKit.ApptentiveLogger",
- "usr": "s:13ApptentiveKit0A6LoggerV"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A6LoggerV7payloadACvgZ",
- "mangledName": "$s13ApptentiveKit0A6LoggerV7payloadACvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "ApptentiveLogger",
- "printedName": "ApptentiveKit.ApptentiveLogger",
- "usr": "s:13ApptentiveKit0A6LoggerV"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A6LoggerV7payloadACvsZ",
- "mangledName": "$s13ApptentiveKit0A6LoggerV7payloadACvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A6LoggerV7payloadACvMZ",
- "mangledName": "$s13ApptentiveKit0A6LoggerV7payloadACvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "targeting",
- "printedName": "targeting",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveLogger",
- "printedName": "ApptentiveKit.ApptentiveLogger",
- "usr": "s:13ApptentiveKit0A6LoggerV"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit0A6LoggerV9targetingACvpZ",
- "mangledName": "$s13ApptentiveKit0A6LoggerV9targetingACvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveLogger",
- "printedName": "ApptentiveKit.ApptentiveLogger",
- "usr": "s:13ApptentiveKit0A6LoggerV"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A6LoggerV9targetingACvgZ",
- "mangledName": "$s13ApptentiveKit0A6LoggerV9targetingACvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "ApptentiveLogger",
- "printedName": "ApptentiveKit.ApptentiveLogger",
- "usr": "s:13ApptentiveKit0A6LoggerV"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A6LoggerV9targetingACvsZ",
- "mangledName": "$s13ApptentiveKit0A6LoggerV9targetingACvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A6LoggerV9targetingACvMZ",
- "mangledName": "$s13ApptentiveKit0A6LoggerV9targetingACvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "messages",
- "printedName": "messages",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveLogger",
- "printedName": "ApptentiveKit.ApptentiveLogger",
- "usr": "s:13ApptentiveKit0A6LoggerV"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit0A6LoggerV8messagesACvpZ",
- "mangledName": "$s13ApptentiveKit0A6LoggerV8messagesACvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveLogger",
- "printedName": "ApptentiveKit.ApptentiveLogger",
- "usr": "s:13ApptentiveKit0A6LoggerV"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A6LoggerV8messagesACvgZ",
- "mangledName": "$s13ApptentiveKit0A6LoggerV8messagesACvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "ApptentiveLogger",
- "printedName": "ApptentiveKit.ApptentiveLogger",
- "usr": "s:13ApptentiveKit0A6LoggerV"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A6LoggerV8messagesACvsZ",
- "mangledName": "$s13ApptentiveKit0A6LoggerV8messagesACvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A6LoggerV8messagesACvMZ",
- "mangledName": "$s13ApptentiveKit0A6LoggerV8messagesACvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "attachments",
- "printedName": "attachments",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveLogger",
- "printedName": "ApptentiveKit.ApptentiveLogger",
- "usr": "s:13ApptentiveKit0A6LoggerV"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit0A6LoggerV11attachmentsACvpZ",
- "mangledName": "$s13ApptentiveKit0A6LoggerV11attachmentsACvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveLogger",
- "printedName": "ApptentiveKit.ApptentiveLogger",
- "usr": "s:13ApptentiveKit0A6LoggerV"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A6LoggerV11attachmentsACvgZ",
- "mangledName": "$s13ApptentiveKit0A6LoggerV11attachmentsACvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "ApptentiveLogger",
- "printedName": "ApptentiveKit.ApptentiveLogger",
- "usr": "s:13ApptentiveKit0A6LoggerV"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A6LoggerV11attachmentsACvsZ",
- "mangledName": "$s13ApptentiveKit0A6LoggerV11attachmentsACvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A6LoggerV11attachmentsACvMZ",
- "mangledName": "$s13ApptentiveKit0A6LoggerV11attachmentsACvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "logLevel",
- "printedName": "logLevel",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "LogLevel",
- "printedName": "ApptentiveKit.LogLevel",
- "usr": "s:13ApptentiveKit8LogLevelO"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit0A6LoggerV8logLevelAA03LogE0OvpZ",
- "mangledName": "$s13ApptentiveKit0A6LoggerV8logLevelAA03LogE0OvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "LogLevel",
- "printedName": "ApptentiveKit.LogLevel",
- "usr": "s:13ApptentiveKit8LogLevelO"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A6LoggerV8logLevelAA03LogE0OvgZ",
- "mangledName": "$s13ApptentiveKit0A6LoggerV8logLevelAA03LogE0OvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "LogLevel",
- "printedName": "ApptentiveKit.LogLevel",
- "usr": "s:13ApptentiveKit8LogLevelO"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A6LoggerV8logLevelAA03LogE0OvsZ",
- "mangledName": "$s13ApptentiveKit0A6LoggerV8logLevelAA03LogE0OvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A6LoggerV8logLevelAA03LogE0OvMZ",
- "mangledName": "$s13ApptentiveKit0A6LoggerV8logLevelAA03LogE0OvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- }
- ],
- "declKind": "Struct",
- "usr": "s:13ApptentiveKit0A6LoggerV",
- "mangledName": "$s13ApptentiveKit0A6LoggerV",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "LogLevel",
- "printedName": "LogLevel",
- "children": [
- {
- "kind": "Var",
- "name": "debug",
- "printedName": "debug",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.LogLevel.Type) -> ApptentiveKit.LogLevel",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "LogLevel",
- "printedName": "ApptentiveKit.LogLevel",
- "usr": "s:13ApptentiveKit8LogLevelO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.LogLevel.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "LogLevel",
- "printedName": "ApptentiveKit.LogLevel",
- "usr": "s:13ApptentiveKit8LogLevelO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:13ApptentiveKit8LogLevelO5debugyA2CmF",
- "mangledName": "$s13ApptentiveKit8LogLevelO5debugyA2CmF",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "Var",
- "name": "info",
- "printedName": "info",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.LogLevel.Type) -> ApptentiveKit.LogLevel",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "LogLevel",
- "printedName": "ApptentiveKit.LogLevel",
- "usr": "s:13ApptentiveKit8LogLevelO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.LogLevel.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "LogLevel",
- "printedName": "ApptentiveKit.LogLevel",
- "usr": "s:13ApptentiveKit8LogLevelO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:13ApptentiveKit8LogLevelO4infoyA2CmF",
- "mangledName": "$s13ApptentiveKit8LogLevelO4infoyA2CmF",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "Var",
- "name": "notice",
- "printedName": "notice",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.LogLevel.Type) -> ApptentiveKit.LogLevel",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "LogLevel",
- "printedName": "ApptentiveKit.LogLevel",
- "usr": "s:13ApptentiveKit8LogLevelO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.LogLevel.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "LogLevel",
- "printedName": "ApptentiveKit.LogLevel",
- "usr": "s:13ApptentiveKit8LogLevelO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:13ApptentiveKit8LogLevelO6noticeyA2CmF",
- "mangledName": "$s13ApptentiveKit8LogLevelO6noticeyA2CmF",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "Var",
- "name": "warning",
- "printedName": "warning",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.LogLevel.Type) -> ApptentiveKit.LogLevel",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "LogLevel",
- "printedName": "ApptentiveKit.LogLevel",
- "usr": "s:13ApptentiveKit8LogLevelO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.LogLevel.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "LogLevel",
- "printedName": "ApptentiveKit.LogLevel",
- "usr": "s:13ApptentiveKit8LogLevelO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:13ApptentiveKit8LogLevelO7warningyA2CmF",
- "mangledName": "$s13ApptentiveKit8LogLevelO7warningyA2CmF",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "Var",
- "name": "error",
- "printedName": "error",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.LogLevel.Type) -> ApptentiveKit.LogLevel",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "LogLevel",
- "printedName": "ApptentiveKit.LogLevel",
- "usr": "s:13ApptentiveKit8LogLevelO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.LogLevel.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "LogLevel",
- "printedName": "ApptentiveKit.LogLevel",
- "usr": "s:13ApptentiveKit8LogLevelO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:13ApptentiveKit8LogLevelO5erroryA2CmF",
- "mangledName": "$s13ApptentiveKit8LogLevelO5erroryA2CmF",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "Var",
- "name": "critical",
- "printedName": "critical",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.LogLevel.Type) -> ApptentiveKit.LogLevel",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "LogLevel",
- "printedName": "ApptentiveKit.LogLevel",
- "usr": "s:13ApptentiveKit8LogLevelO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.LogLevel.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "LogLevel",
- "printedName": "ApptentiveKit.LogLevel",
- "usr": "s:13ApptentiveKit8LogLevelO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:13ApptentiveKit8LogLevelO8criticalyA2CmF",
- "mangledName": "$s13ApptentiveKit8LogLevelO8criticalyA2CmF",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "Var",
- "name": "fault",
- "printedName": "fault",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.LogLevel.Type) -> ApptentiveKit.LogLevel",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "LogLevel",
- "printedName": "ApptentiveKit.LogLevel",
- "usr": "s:13ApptentiveKit8LogLevelO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.LogLevel.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "LogLevel",
- "printedName": "ApptentiveKit.LogLevel",
- "usr": "s:13ApptentiveKit8LogLevelO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:13ApptentiveKit8LogLevelO5faultyA2CmF",
- "mangledName": "$s13ApptentiveKit8LogLevelO5faultyA2CmF",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "Function",
- "name": "<",
- "printedName": "<(_:_:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- },
- {
- "kind": "TypeNominal",
- "name": "LogLevel",
- "printedName": "ApptentiveKit.LogLevel",
- "usr": "s:13ApptentiveKit8LogLevelO"
- },
- {
- "kind": "TypeNominal",
- "name": "LogLevel",
- "printedName": "ApptentiveKit.LogLevel",
- "usr": "s:13ApptentiveKit8LogLevelO"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit8LogLevelO1loiySbAC_ACtFZ",
- "mangledName": "$s13ApptentiveKit8LogLevelO1loiySbAC_ACtFZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(rawValue:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "ApptentiveKit.LogLevel?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "LogLevel",
- "printedName": "ApptentiveKit.LogLevel",
- "usr": "s:13ApptentiveKit8LogLevelO"
- }
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ],
- "declKind": "Constructor",
- "usr": "s:13ApptentiveKit8LogLevelO8rawValueACSgSi_tcfc",
- "mangledName": "$s13ApptentiveKit8LogLevelO8rawValueACSgSi_tcfc",
- "moduleName": "ApptentiveKit",
- "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:13ApptentiveKit8LogLevelO8rawValueSivp",
- "mangledName": "$s13ApptentiveKit8LogLevelO8rawValueSivp",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit8LogLevelO8rawValueSivg",
- "mangledName": "$s13ApptentiveKit8LogLevelO8rawValueSivg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "get"
- }
- ]
- }
- ],
- "declKind": "Enum",
- "usr": "s:13ApptentiveKit8LogLevelO",
- "mangledName": "$s13ApptentiveKit8LogLevelO",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "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": "Comparable",
- "printedName": "Comparable",
- "usr": "s:SL",
- "mangledName": "$sSL"
- }
- ]
- },
- {
- "kind": "Import",
- "name": "UIKit",
- "printedName": "UIKit",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "Apptentive",
- "printedName": "Apptentive",
- "children": [
- {
- "kind": "Var",
- "name": "shared",
- "printedName": "shared",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Apptentive",
- "printedName": "ApptentiveKit.Apptentive",
- "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive"
- }
- ],
- "declKind": "Var",
- "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(cpy)shared",
- "mangledName": "$s13ApptentiveKit0A0C6sharedACvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Apptentive",
- "printedName": "ApptentiveKit.Apptentive",
- "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(cm)shared",
- "mangledName": "$s13ApptentiveKit0A0C6sharedACvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final",
- "ObjC"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "interactionPresenter",
- "printedName": "interactionPresenter",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "InteractionPresenter",
- "printedName": "ApptentiveKit.InteractionPresenter",
- "usr": "s:13ApptentiveKit20InteractionPresenterC"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit0A0C20interactionPresenterAA011InteractionD0Cvp",
- "mangledName": "$s13ApptentiveKit0A0C20interactionPresenterAA011InteractionD0Cvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "InteractionPresenter",
- "printedName": "ApptentiveKit.InteractionPresenter",
- "usr": "s:13ApptentiveKit20InteractionPresenterC"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A0C20interactionPresenterAA011InteractionD0Cvg",
- "mangledName": "$s13ApptentiveKit0A0C20interactionPresenterAA011InteractionD0Cvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "InteractionPresenter",
- "printedName": "ApptentiveKit.InteractionPresenter",
- "usr": "s:13ApptentiveKit20InteractionPresenterC"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A0C20interactionPresenterAA011InteractionD0Cvs",
- "mangledName": "$s13ApptentiveKit0A0C20interactionPresenterAA011InteractionD0Cvs",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A0C20interactionPresenterAA011InteractionD0CvM",
- "mangledName": "$s13ApptentiveKit0A0C20interactionPresenterAA011InteractionD0CvM",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "theme",
- "printedName": "theme",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UITheme",
- "printedName": "ApptentiveKit.Apptentive.UITheme",
- "usr": "s:13ApptentiveKit0A0C7UIThemeO"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit0A0C5themeAC7UIThemeOvp",
- "mangledName": "$s13ApptentiveKit0A0C5themeAC7UIThemeOvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UITheme",
- "printedName": "ApptentiveKit.Apptentive.UITheme",
- "usr": "s:13ApptentiveKit0A0C7UIThemeO"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A0C5themeAC7UIThemeOvg",
- "mangledName": "$s13ApptentiveKit0A0C5themeAC7UIThemeOvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UITheme",
- "printedName": "ApptentiveKit.Apptentive.UITheme",
- "usr": "s:13ApptentiveKit0A0C7UIThemeO"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A0C5themeAC7UIThemeOvs",
- "mangledName": "$s13ApptentiveKit0A0C5themeAC7UIThemeOvs",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A0C5themeAC7UIThemeOvM",
- "mangledName": "$s13ApptentiveKit0A0C5themeAC7UIThemeOvM",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "personName",
- "printedName": "personName",
- "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@ApptentiveKit@objc(cs)Apptentive(py)personName",
- "mangledName": "$s13ApptentiveKit0A0C10personNameSSSgvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(im)personName",
- "mangledName": "$s13ApptentiveKit0A0C10personNameSSSgvg",
- "moduleName": "ApptentiveKit",
- "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@ApptentiveKit@objc(cs)Apptentive(im)setPersonName:",
- "mangledName": "$s13ApptentiveKit0A0C10personNameSSSgvs",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "ObjC"
- ],
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A0C10personNameSSSgvM",
- "mangledName": "$s13ApptentiveKit0A0C10personNameSSSgvM",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "personEmailAddress",
- "printedName": "personEmailAddress",
- "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@ApptentiveKit@objc(cs)Apptentive(py)personEmailAddress",
- "mangledName": "$s13ApptentiveKit0A0C18personEmailAddressSSSgvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(im)personEmailAddress",
- "mangledName": "$s13ApptentiveKit0A0C18personEmailAddressSSSgvg",
- "moduleName": "ApptentiveKit",
- "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@ApptentiveKit@objc(cs)Apptentive(im)setPersonEmailAddress:",
- "mangledName": "$s13ApptentiveKit0A0C18personEmailAddressSSSgvs",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "ObjC"
- ],
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A0C18personEmailAddressSSSgvM",
- "mangledName": "$s13ApptentiveKit0A0C18personEmailAddressSSSgvM",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "mParticleID",
- "printedName": "mParticleID",
- "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@ApptentiveKit@objc(cs)Apptentive(py)mParticleID",
- "mangledName": "$s13ApptentiveKit0A0C11mParticleIDSSSgvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(im)mParticleID",
- "mangledName": "$s13ApptentiveKit0A0C11mParticleIDSSSgvg",
- "moduleName": "ApptentiveKit",
- "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@ApptentiveKit@objc(cs)Apptentive(im)setMParticleID:",
- "mangledName": "$s13ApptentiveKit0A0C11mParticleIDSSSgvs",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "ObjC"
- ],
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A0C11mParticleIDSSSgvM",
- "mangledName": "$s13ApptentiveKit0A0C11mParticleIDSSSgvM",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "personCustomData",
- "printedName": "personCustomData",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "CustomData",
- "printedName": "ApptentiveKit.CustomData",
- "usr": "s:13ApptentiveKit10CustomDataV"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit0A0C16personCustomDataAA0dE0Vvp",
- "mangledName": "$s13ApptentiveKit0A0C16personCustomDataAA0dE0Vvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "CustomData",
- "printedName": "ApptentiveKit.CustomData",
- "usr": "s:13ApptentiveKit10CustomDataV"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A0C16personCustomDataAA0dE0Vvg",
- "mangledName": "$s13ApptentiveKit0A0C16personCustomDataAA0dE0Vvg",
- "moduleName": "ApptentiveKit",
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "CustomData",
- "printedName": "ApptentiveKit.CustomData",
- "usr": "s:13ApptentiveKit10CustomDataV"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A0C16personCustomDataAA0dE0Vvs",
- "mangledName": "$s13ApptentiveKit0A0C16personCustomDataAA0dE0Vvs",
- "moduleName": "ApptentiveKit",
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A0C16personCustomDataAA0dE0VvM",
- "mangledName": "$s13ApptentiveKit0A0C16personCustomDataAA0dE0VvM",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "deviceCustomData",
- "printedName": "deviceCustomData",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "CustomData",
- "printedName": "ApptentiveKit.CustomData",
- "usr": "s:13ApptentiveKit10CustomDataV"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit0A0C16deviceCustomDataAA0dE0Vvp",
- "mangledName": "$s13ApptentiveKit0A0C16deviceCustomDataAA0dE0Vvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "CustomData",
- "printedName": "ApptentiveKit.CustomData",
- "usr": "s:13ApptentiveKit10CustomDataV"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A0C16deviceCustomDataAA0dE0Vvg",
- "mangledName": "$s13ApptentiveKit0A0C16deviceCustomDataAA0dE0Vvg",
- "moduleName": "ApptentiveKit",
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "CustomData",
- "printedName": "ApptentiveKit.CustomData",
- "usr": "s:13ApptentiveKit10CustomDataV"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A0C16deviceCustomDataAA0dE0Vvs",
- "mangledName": "$s13ApptentiveKit0A0C16deviceCustomDataAA0dE0Vvs",
- "moduleName": "ApptentiveKit",
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A0C16deviceCustomDataAA0dE0VvM",
- "mangledName": "$s13ApptentiveKit0A0C16deviceCustomDataAA0dE0VvM",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "unreadMessageCount",
- "printedName": "unreadMessageCount",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ],
- "declKind": "Var",
- "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(py)unreadMessageCount",
- "mangledName": "$s13ApptentiveKit0A0C18unreadMessageCountSivp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl",
- "Dynamic",
- "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@ApptentiveKit@objc(cs)Apptentive(im)unreadMessageCount",
- "mangledName": "$s13ApptentiveKit0A0C18unreadMessageCountSivg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Dynamic",
- "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@ApptentiveKit@objc(cs)Apptentive(im)setUnreadMessageCount:",
- "mangledName": "$s13ApptentiveKit0A0C18unreadMessageCountSivs",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Dynamic",
- "ObjC"
- ],
- "accessorKind": "set"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "distributionName",
- "printedName": "distributionName",
- "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@ApptentiveKit@objc(cs)Apptentive(py)distributionName",
- "mangledName": "$s13ApptentiveKit0A0C16distributionNameSSSgvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(im)distributionName",
- "mangledName": "$s13ApptentiveKit0A0C16distributionNameSSSgvg",
- "moduleName": "ApptentiveKit",
- "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@ApptentiveKit@objc(cs)Apptentive(im)setDistributionName:",
- "mangledName": "$s13ApptentiveKit0A0C16distributionNameSSSgvs",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "ObjC"
- ],
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A0C16distributionNameSSSgvM",
- "mangledName": "$s13ApptentiveKit0A0C16distributionNameSSSgvM",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "distributionVersion",
- "printedName": "distributionVersion",
- "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@ApptentiveKit@objc(cs)Apptentive(py)distributionVersion",
- "mangledName": "$s13ApptentiveKit0A0C19distributionVersionSSSgvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(im)distributionVersion",
- "mangledName": "$s13ApptentiveKit0A0C19distributionVersionSSSgvg",
- "moduleName": "ApptentiveKit",
- "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@ApptentiveKit@objc(cs)Apptentive(im)setDistributionVersion:",
- "mangledName": "$s13ApptentiveKit0A0C19distributionVersionSSSgvs",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "ObjC"
- ],
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A0C19distributionVersionSSSgvM",
- "mangledName": "$s13ApptentiveKit0A0C19distributionVersionSSSgvM",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "UITheme",
- "printedName": "UITheme",
- "children": [
- {
- "kind": "Var",
- "name": "apptentive",
- "printedName": "apptentive",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.Apptentive.UITheme.Type) -> ApptentiveKit.Apptentive.UITheme",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UITheme",
- "printedName": "ApptentiveKit.Apptentive.UITheme",
- "usr": "s:13ApptentiveKit0A0C7UIThemeO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.Apptentive.UITheme.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UITheme",
- "printedName": "ApptentiveKit.Apptentive.UITheme",
- "usr": "s:13ApptentiveKit0A0C7UIThemeO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:13ApptentiveKit0A0C7UIThemeO10apptentiveyA2EmF",
- "mangledName": "$s13ApptentiveKit0A0C7UIThemeO10apptentiveyA2EmF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "none",
- "printedName": "none",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.Apptentive.UITheme.Type) -> ApptentiveKit.Apptentive.UITheme",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UITheme",
- "printedName": "ApptentiveKit.Apptentive.UITheme",
- "usr": "s:13ApptentiveKit0A0C7UIThemeO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.Apptentive.UITheme.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UITheme",
- "printedName": "ApptentiveKit.Apptentive.UITheme",
- "usr": "s:13ApptentiveKit0A0C7UIThemeO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:13ApptentiveKit0A0C7UIThemeO4noneyA2EmF",
- "mangledName": "$s13ApptentiveKit0A0C7UIThemeO4noneyA2EmF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Function",
- "name": "==",
- "printedName": "==(_:_:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- },
- {
- "kind": "TypeNominal",
- "name": "UITheme",
- "printedName": "ApptentiveKit.Apptentive.UITheme",
- "usr": "s:13ApptentiveKit0A0C7UIThemeO"
- },
- {
- "kind": "TypeNominal",
- "name": "UITheme",
- "printedName": "ApptentiveKit.Apptentive.UITheme",
- "usr": "s:13ApptentiveKit0A0C7UIThemeO"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit0A0C7UIThemeO2eeoiySbAE_AEtFZ",
- "mangledName": "$s13ApptentiveKit0A0C7UIThemeO2eeoiySbAE_AEtFZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Var",
- "name": "hashValue",
- "printedName": "hashValue",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit0A0C7UIThemeO9hashValueSivp",
- "mangledName": "$s13ApptentiveKit0A0C7UIThemeO9hashValueSivp",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A0C7UIThemeO9hashValueSivg",
- "mangledName": "$s13ApptentiveKit0A0C7UIThemeO9hashValueSivg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Function",
- "name": "hash",
- "printedName": "hash(into:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Hasher",
- "printedName": "Swift.Hasher",
- "paramValueOwnership": "InOut",
- "usr": "s:s6HasherV"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit0A0C7UIThemeO4hash4intoys6HasherVz_tF",
- "mangledName": "$s13ApptentiveKit0A0C7UIThemeO4hash4intoys6HasherVz_tF",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "funcSelfKind": "NonMutating"
- }
- ],
- "declKind": "Enum",
- "usr": "s:13ApptentiveKit0A0C7UIThemeO",
- "mangledName": "$s13ApptentiveKit0A0C7UIThemeO",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "conformances": [
- {
- "kind": "Conformance",
- "name": "Equatable",
- "printedName": "Equatable",
- "usr": "s:SQ",
- "mangledName": "$sSQ"
- },
- {
- "kind": "Conformance",
- "name": "Hashable",
- "printedName": "Hashable",
- "usr": "s:SH",
- "mangledName": "$sSH"
- }
- ]
- },
- {
- "kind": "Function",
- "name": "register",
- "printedName": "register(with:completion:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "AppCredentials",
- "printedName": "ApptentiveKit.Apptentive.AppCredentials",
- "usr": "s:13ApptentiveKit0A0C14AppCredentialsV"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "((Swift.Result<(), Swift.Error>) -> ())?",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(Swift.Result<(), Swift.Error>) -> ()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Result",
- "printedName": "Swift.Result<(), Swift.Error>",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Error",
- "printedName": "Swift.Error",
- "usr": "s:s5ErrorP"
- }
- ],
- "usr": "s:s6ResultO"
- }
- ]
- }
- ],
- "hasDefaultArg": true,
- "usr": "s:Sq"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit0A0C8register4with10completionyAC14AppCredentialsV_ys6ResultOyyts5Error_pGcSgtF",
- "mangledName": "$s13ApptentiveKit0A0C8register4with10completionyAC14AppCredentialsV_ys6ResultOyyts5Error_pGcSgtF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "TypeDecl",
- "name": "AppCredentials",
- "printedName": "AppCredentials",
- "children": [
- {
- "kind": "Var",
- "name": "key",
- "printedName": "key",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit0A0C14AppCredentialsV3keySSvp",
- "mangledName": "$s13ApptentiveKit0A0C14AppCredentialsV3keySSvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A0C14AppCredentialsV3keySSvg",
- "mangledName": "$s13ApptentiveKit0A0C14AppCredentialsV3keySSvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "signature",
- "printedName": "signature",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit0A0C14AppCredentialsV9signatureSSvp",
- "mangledName": "$s13ApptentiveKit0A0C14AppCredentialsV9signatureSSvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A0C14AppCredentialsV9signatureSSvg",
- "mangledName": "$s13ApptentiveKit0A0C14AppCredentialsV9signatureSSvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(key:signature:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "AppCredentials",
- "printedName": "ApptentiveKit.Apptentive.AppCredentials",
- "usr": "s:13ApptentiveKit0A0C14AppCredentialsV"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Constructor",
- "usr": "s:13ApptentiveKit0A0C14AppCredentialsV3key9signatureAESS_SStcfc",
- "mangledName": "$s13ApptentiveKit0A0C14AppCredentialsV3key9signatureAESS_SStcfc",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "init_kind": "Designated"
- },
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(from:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "AppCredentials",
- "printedName": "ApptentiveKit.Apptentive.AppCredentials",
- "usr": "s:13ApptentiveKit0A0C14AppCredentialsV"
- },
- {
- "kind": "TypeNominal",
- "name": "Decoder",
- "printedName": "Swift.Decoder",
- "usr": "s:s7DecoderP"
- }
- ],
- "declKind": "Constructor",
- "usr": "s:13ApptentiveKit0A0C14AppCredentialsV4fromAEs7Decoder_p_tKcfc",
- "mangledName": "$s13ApptentiveKit0A0C14AppCredentialsV4fromAEs7Decoder_p_tKcfc",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "throwing": true,
- "init_kind": "Designated"
- },
- {
- "kind": "Function",
- "name": "encode",
- "printedName": "encode(to:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Encoder",
- "printedName": "Swift.Encoder",
- "usr": "s:s7EncoderP"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit0A0C14AppCredentialsV6encode2toys7Encoder_p_tKF",
- "mangledName": "$s13ApptentiveKit0A0C14AppCredentialsV6encode2toys7Encoder_p_tKF",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "throwing": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "==",
- "printedName": "==(_:_:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- },
- {
- "kind": "TypeNominal",
- "name": "AppCredentials",
- "printedName": "ApptentiveKit.Apptentive.AppCredentials",
- "usr": "s:13ApptentiveKit0A0C14AppCredentialsV"
- },
- {
- "kind": "TypeNominal",
- "name": "AppCredentials",
- "printedName": "ApptentiveKit.Apptentive.AppCredentials",
- "usr": "s:13ApptentiveKit0A0C14AppCredentialsV"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit0A0C14AppCredentialsV2eeoiySbAE_AEtFZ",
- "mangledName": "$s13ApptentiveKit0A0C14AppCredentialsV2eeoiySbAE_AEtFZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "funcSelfKind": "NonMutating"
- }
- ],
- "declKind": "Struct",
- "usr": "s:13ApptentiveKit0A0C14AppCredentialsV",
- "mangledName": "$s13ApptentiveKit0A0C14AppCredentialsV",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "conformances": [
- {
- "kind": "Conformance",
- "name": "Decodable",
- "printedName": "Decodable",
- "usr": "s:Se",
- "mangledName": "$sSe"
- },
- {
- "kind": "Conformance",
- "name": "Encodable",
- "printedName": "Encodable",
- "usr": "s:SE",
- "mangledName": "$sSE"
- },
- {
- "kind": "Conformance",
- "name": "Equatable",
- "printedName": "Equatable",
- "usr": "s:SQ",
- "mangledName": "$sSQ"
- }
- ]
- },
- {
- "kind": "Function",
- "name": "engage",
- "printedName": "engage(event:from:completion:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Event",
- "printedName": "ApptentiveKit.Event",
- "usr": "s:13ApptentiveKit5EventV"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "UIKit.UIViewController?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIViewController",
- "printedName": "UIKit.UIViewController",
- "usr": "c:objc(cs)UIViewController"
- }
- ],
- "hasDefaultArg": true,
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "((Swift.Result) -> ())?",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(Swift.Result) -> ()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Result",
- "printedName": "Swift.Result",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- },
- {
- "kind": "TypeNominal",
- "name": "Error",
- "printedName": "Swift.Error",
- "usr": "s:s5ErrorP"
- }
- ],
- "usr": "s:s6ResultO"
- }
- ]
- }
- ],
- "hasDefaultArg": true,
- "usr": "s:Sq"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit0A0C6engage5event4from10completionyAA5EventV_So16UIViewControllerCSgys6ResultOySbs5Error_pGcSgtF",
- "mangledName": "$s13ApptentiveKit0A0C6engage5event4from10completionyAA5EventV_So16UIViewControllerCSgys6ResultOySbs5Error_pGcSgtF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "dismissAllInteractions",
- "printedName": "dismissAllInteractions(animated:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit0A0C22dismissAllInteractions8animatedySb_tF",
- "mangledName": "$s13ApptentiveKit0A0C22dismissAllInteractions8animatedySb_tF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "presentMessageCenter",
- "printedName": "presentMessageCenter(from:completion:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "UIKit.UIViewController?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIViewController",
- "printedName": "UIKit.UIViewController",
- "usr": "c:objc(cs)UIViewController"
- }
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "((Swift.Result) -> ())?",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(Swift.Result) -> ()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Result",
- "printedName": "Swift.Result",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- },
- {
- "kind": "TypeNominal",
- "name": "Error",
- "printedName": "Swift.Error",
- "usr": "s:s5ErrorP"
- }
- ],
- "usr": "s:s6ResultO"
- }
- ]
- }
- ],
- "hasDefaultArg": true,
- "usr": "s:Sq"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit0A0C20presentMessageCenter4from10completionySo16UIViewControllerCSg_ys6ResultOySbs5Error_pGcSgtF",
- "mangledName": "$s13ApptentiveKit0A0C20presentMessageCenter4from10completionySo16UIViewControllerCSg_ys6ResultOySbs5Error_pGcSgtF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "presentMessageCenter",
- "printedName": "presentMessageCenter(from:with:completion:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "UIKit.UIViewController?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIViewController",
- "printedName": "UIKit.UIViewController",
- "usr": "c:objc(cs)UIViewController"
- }
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "ApptentiveKit.CustomData?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "CustomData",
- "printedName": "ApptentiveKit.CustomData",
- "usr": "s:13ApptentiveKit10CustomDataV"
- }
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "((Swift.Result) -> ())?",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(Swift.Result) -> ()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Result",
- "printedName": "Swift.Result",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- },
- {
- "kind": "TypeNominal",
- "name": "Error",
- "printedName": "Swift.Error",
- "usr": "s:s5ErrorP"
- }
- ],
- "usr": "s:s6ResultO"
- }
- ]
- }
- ],
- "hasDefaultArg": true,
- "usr": "s:Sq"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit0A0C20presentMessageCenter4from4with10completionySo16UIViewControllerCSg_AA10CustomDataVSgys6ResultOySbs5Error_pGcSgtF",
- "mangledName": "$s13ApptentiveKit0A0C20presentMessageCenter4from4with10completionySo16UIViewControllerCSg_AA10CustomDataVSgys6ResultOySbs5Error_pGcSgtF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "sendAttachment",
- "printedName": "sendAttachment(_:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Func",
- "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(im)sendAttachmentText:",
- "mangledName": "$s13ApptentiveKit0A0C14sendAttachmentyySSF",
- "moduleName": "ApptentiveKit",
- "objc_name": "sendAttachmentText:",
- "declAttributes": [
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "sendAttachment",
- "printedName": "sendAttachment(_:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIImage",
- "printedName": "UIKit.UIImage",
- "usr": "c:objc(cs)UIImage"
- }
- ],
- "declKind": "Func",
- "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(im)sendAttachmentImage:",
- "mangledName": "$s13ApptentiveKit0A0C14sendAttachmentyySo7UIImageCF",
- "moduleName": "ApptentiveKit",
- "objc_name": "sendAttachmentImage:",
- "declAttributes": [
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "sendAttachment",
- "printedName": "sendAttachment(_:mediaType:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Data",
- "printedName": "Foundation.Data",
- "usr": "s:10Foundation4DataV"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Func",
- "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(im)sendAttachmentFile:withMimeType:",
- "mangledName": "$s13ApptentiveKit0A0C14sendAttachment_9mediaTypey10Foundation4DataV_SStF",
- "moduleName": "ApptentiveKit",
- "objc_name": "sendAttachmentFile:withMimeType:",
- "declAttributes": [
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "canShowInteraction",
- "printedName": "canShowInteraction(event:completion:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Event",
- "printedName": "ApptentiveKit.Event",
- "usr": "s:13ApptentiveKit5EventV"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "((Swift.Result) -> ())?",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(Swift.Result) -> ()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Result",
- "printedName": "Swift.Result",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- },
- {
- "kind": "TypeNominal",
- "name": "Error",
- "printedName": "Swift.Error",
- "usr": "s:s5ErrorP"
- }
- ],
- "usr": "s:s6ResultO"
- }
- ]
- }
- ],
- "hasDefaultArg": true,
- "usr": "s:Sq"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit0A0C18canShowInteraction5event10completionyAA5EventV_ys6ResultOySbs5Error_pGcSgtF",
- "mangledName": "$s13ApptentiveKit0A0C18canShowInteraction5event10completionyAA5EventV_ys6ResultOySbs5Error_pGcSgtF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(apiBaseURL:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Apptentive",
- "printedName": "ApptentiveKit.Apptentive",
- "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive"
- },
- {
- "kind": "TypeNominal",
- "name": "URL",
- "printedName": "Foundation.URL",
- "usr": "s:10Foundation3URLV"
- }
- ],
- "declKind": "Constructor",
- "usr": "s:13ApptentiveKit0A0C10apiBaseURLAC10Foundation0E0V_tcfc",
- "mangledName": "$s13ApptentiveKit0A0C10apiBaseURLAC10Foundation0E0V_tcfc",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Convenience",
- "AccessControl",
- "RawDocComment"
- ],
- "init_kind": "Convenience"
- },
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Apptentive",
- "printedName": "ApptentiveKit.Apptentive",
- "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive"
- }
- ],
- "declKind": "Constructor",
- "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive(im)init",
- "mangledName": "$s13ApptentiveKit0A0CACycfc",
- "moduleName": "ApptentiveKit",
- "overriding": true,
- "implicit": true,
- "objc_name": "init",
- "declAttributes": [
- "Dynamic",
- "ObjC",
- "Override"
- ],
- "init_kind": "Designated"
- },
- {
- "kind": "Function",
- "name": "setRemoteNotificationDeviceToken",
- "printedName": "setRemoteNotificationDeviceToken(_:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Data",
- "printedName": "Foundation.Data",
- "usr": "s:10Foundation4DataV"
- }
- ],
- "declKind": "Func",
- "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)setRemoteNotificationDeviceToken:",
- "mangledName": "$s13ApptentiveKit0A0C32setRemoteNotificationDeviceTokenyy10Foundation4DataVF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Dynamic",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "setRemoteNotifcationDeviceToken",
- "printedName": "setRemoteNotifcationDeviceToken(_:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Data",
- "printedName": "Foundation.Data",
- "usr": "s:10Foundation4DataV"
- }
- ],
- "declKind": "Func",
- "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)setRemoteNotifcationDeviceToken:",
- "mangledName": "$s13ApptentiveKit0A0C31setRemoteNotifcationDeviceTokenyy10Foundation4DataVF",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "declAttributes": [
- "Dynamic",
- "AccessControl",
- "ObjC",
- "Available",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "didReceiveRemoteNotification",
- "printedName": "didReceiveRemoteNotification(_:fetchCompletionHandler:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- },
- {
- "kind": "TypeNominal",
- "name": "Dictionary",
- "printedName": "[Swift.AnyHashable : Any]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "AnyHashable",
- "printedName": "Swift.AnyHashable",
- "usr": "s:s11AnyHashableV"
- },
- {
- "kind": "TypeNominal",
- "name": "ProtocolComposition",
- "printedName": "Any"
- }
- ],
- "usr": "s:SD"
- },
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(UIKit.UIBackgroundFetchResult) -> ()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIBackgroundFetchResult",
- "printedName": "UIKit.UIBackgroundFetchResult",
- "usr": "c:@E@UIBackgroundFetchResult"
- }
- ]
- }
- ],
- "declKind": "Func",
- "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)didReceiveRemoteNotification:fetchCompletionHandler:",
- "mangledName": "$s13ApptentiveKit0A0C28didReceiveRemoteNotification_22fetchCompletionHandlerSbSDys11AnyHashableVypG_ySo23UIBackgroundFetchResultVctF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Dynamic",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "didReceveUserNotificationResponse",
- "printedName": "didReceveUserNotificationResponse(_:withCompletionHandler:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- },
- {
- "kind": "TypeNominal",
- "name": "UNNotificationResponse",
- "printedName": "UserNotifications.UNNotificationResponse",
- "usr": "c:objc(cs)UNNotificationResponse"
- },
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "() -> ()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ]
- }
- ],
- "declKind": "Func",
- "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)didReceveUserNotificationResponse:withCompletionHandler:",
- "mangledName": "$s13ApptentiveKit0A0C33didReceveUserNotificationResponse_21withCompletionHandlerSbSo014UNNotificationG0C_yyctF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Dynamic",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "willPresent",
- "printedName": "willPresent(_:withCompletionHandler:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- },
- {
- "kind": "TypeNominal",
- "name": "UNNotification",
- "printedName": "UserNotifications.UNNotification",
- "usr": "c:objc(cs)UNNotification"
- },
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(UserNotifications.UNNotificationPresentationOptions) -> ()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UNNotificationPresentationOptions",
- "printedName": "UserNotifications.UNNotificationPresentationOptions",
- "usr": "c:@E@UNNotificationPresentationOptions"
- }
- ]
- }
- ],
- "declKind": "Func",
- "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)willPresent:withCompletionHandler:",
- "mangledName": "$s13ApptentiveKit0A0C11willPresent_21withCompletionHandlerSbSo14UNNotificationC_ySo0H19PresentationOptionsVctF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Dynamic",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "userNotificationCenter",
- "printedName": "userNotificationCenter(_:willPresent:withCompletionHandler:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UNUserNotificationCenter",
- "printedName": "UserNotifications.UNUserNotificationCenter",
- "usr": "c:objc(cs)UNUserNotificationCenter"
- },
- {
- "kind": "TypeNominal",
- "name": "UNNotification",
- "printedName": "UserNotifications.UNNotification",
- "usr": "c:objc(cs)UNNotification"
- },
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(UserNotifications.UNNotificationPresentationOptions) -> ()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UNNotificationPresentationOptions",
- "printedName": "UserNotifications.UNNotificationPresentationOptions",
- "usr": "c:@E@UNNotificationPresentationOptions"
- }
- ]
- }
- ],
- "declKind": "Func",
- "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)userNotificationCenter:willPresentNotification:withCompletionHandler:",
- "mangledName": "$s13ApptentiveKit0A0C22userNotificationCenter_11willPresent21withCompletionHandlerySo06UNUserdE0C_So14UNNotificationCySo0L19PresentationOptionsVctF",
- "moduleName": "ApptentiveKit",
- "objc_name": "userNotificationCenter:willPresentNotification:withCompletionHandler:",
- "declAttributes": [
- "Dynamic",
- "ObjC",
- "AccessControl",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "userNotificationCenter",
- "printedName": "userNotificationCenter(_:didReceive:withCompletionHandler:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UNUserNotificationCenter",
- "printedName": "UserNotifications.UNUserNotificationCenter",
- "usr": "c:objc(cs)UNUserNotificationCenter"
- },
- {
- "kind": "TypeNominal",
- "name": "UNNotificationResponse",
- "printedName": "UserNotifications.UNNotificationResponse",
- "usr": "c:objc(cs)UNNotificationResponse"
- },
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "() -> ()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ]
- }
- ],
- "declKind": "Func",
- "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:",
- "mangledName": "$s13ApptentiveKit0A0C22userNotificationCenter_10didReceive21withCompletionHandlerySo06UNUserdE0C_So22UNNotificationResponseCyyctF",
- "moduleName": "ApptentiveKit",
- "objc_name": "userNotificationCenter:didReceiveNotificationResponse:withCompletionHandler:",
- "declAttributes": [
- "Dynamic",
- "ObjC",
- "AccessControl",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Var",
- "name": "engagementManifestURL",
- "printedName": "engagementManifestURL",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Foundation.URL?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "URL",
- "printedName": "Foundation.URL",
- "usr": "s:10Foundation3URLV"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit0A0C21engagementManifestURL10Foundation0E0VSgvp",
- "mangledName": "$s13ApptentiveKit0A0C21engagementManifestURL10Foundation0E0VSgvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Foundation.URL?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "URL",
- "printedName": "Foundation.URL",
- "usr": "s:10Foundation3URLV"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A0C21engagementManifestURL10Foundation0E0VSgvg",
- "mangledName": "$s13ApptentiveKit0A0C21engagementManifestURL10Foundation0E0VSgvg",
- "moduleName": "ApptentiveKit",
- "isFromExtension": true,
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Function",
- "name": "loadEngagementManifest",
- "printedName": "loadEngagementManifest(at:completion:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Foundation.URL?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "URL",
- "printedName": "Foundation.URL",
- "usr": "s:10Foundation3URLV"
- }
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(Swift.Result<(), Swift.Error>) -> ()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Result",
- "printedName": "Swift.Result<(), Swift.Error>",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Error",
- "printedName": "Swift.Error",
- "usr": "s:s5ErrorP"
- }
- ],
- "usr": "s:s6ResultO"
- }
- ]
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit0A0C22loadEngagementManifest2at10completiony10Foundation3URLVSg_ys6ResultOyyts5Error_pGctF",
- "mangledName": "$s13ApptentiveKit0A0C22loadEngagementManifest2at10completiony10Foundation3URLVSg_ys6ResultOyyts5Error_pGctF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "getInteractionList",
- "printedName": "getInteractionList(_:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "([ApptentiveKit.Apptentive.InteractionListItem]) -> ()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Array",
- "printedName": "[ApptentiveKit.Apptentive.InteractionListItem]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "InteractionListItem",
- "printedName": "ApptentiveKit.Apptentive.InteractionListItem",
- "usr": "s:13ApptentiveKit0A0C19InteractionListItemV"
- }
- ],
- "usr": "s:Sa"
- }
- ]
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit0A0C18getInteractionListyyySayAC0dE4ItemVGcF",
- "mangledName": "$s13ApptentiveKit0A0C18getInteractionListyyySayAC0dE4ItemVGcF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "presentInteraction",
- "printedName": "presentInteraction(with:completion:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- },
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(Swift.Result<(), Swift.Error>) -> ()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Result",
- "printedName": "Swift.Result<(), Swift.Error>",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Error",
- "printedName": "Swift.Error",
- "usr": "s:s5ErrorP"
- }
- ],
- "usr": "s:s6ResultO"
- }
- ]
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit0A0C18presentInteraction4with10completionySS_ys6ResultOyyts5Error_pGctF",
- "mangledName": "$s13ApptentiveKit0A0C18presentInteraction4with10completionySS_ys6ResultOyyts5Error_pGctF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "presentInteraction",
- "printedName": "presentInteraction(at:completion:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "URL",
- "printedName": "Foundation.URL",
- "usr": "s:10Foundation3URLV"
- },
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(Swift.Result<(), Swift.Error>) -> ()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Result",
- "printedName": "Swift.Result<(), Swift.Error>",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Error",
- "printedName": "Swift.Error",
- "usr": "s:s5ErrorP"
- }
- ],
- "usr": "s:s6ResultO"
- }
- ]
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit0A0C18presentInteraction2at10completiony10Foundation3URLV_ys6ResultOyyts5Error_pGctF",
- "mangledName": "$s13ApptentiveKit0A0C18presentInteraction2at10completiony10Foundation3URLV_ys6ResultOyyts5Error_pGctF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "TypeDecl",
- "name": "InteractionListItem",
- "printedName": "InteractionListItem",
- "children": [
- {
- "kind": "Var",
- "name": "id",
- "printedName": "id",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit0A0C19InteractionListItemV2idSSvp",
- "mangledName": "$s13ApptentiveKit0A0C19InteractionListItemV2idSSvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A0C19InteractionListItemV2idSSvg",
- "mangledName": "$s13ApptentiveKit0A0C19InteractionListItemV2idSSvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "displayName",
- "printedName": "displayName",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit0A0C19InteractionListItemV11displayNameSSvp",
- "mangledName": "$s13ApptentiveKit0A0C19InteractionListItemV11displayNameSSvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A0C19InteractionListItemV11displayNameSSvg",
- "mangledName": "$s13ApptentiveKit0A0C19InteractionListItemV11displayNameSSvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "typeName",
- "printedName": "typeName",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit0A0C19InteractionListItemV8typeNameSSvp",
- "mangledName": "$s13ApptentiveKit0A0C19InteractionListItemV8typeNameSSvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A0C19InteractionListItemV8typeNameSSvg",
- "mangledName": "$s13ApptentiveKit0A0C19InteractionListItemV8typeNameSSvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "get"
- }
- ]
- }
- ],
- "declKind": "Struct",
- "usr": "s:13ApptentiveKit0A0C19InteractionListItemV",
- "mangledName": "$s13ApptentiveKit0A0C19InteractionListItemV",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "isFromExtension": true
- },
- {
- "kind": "Function",
- "name": "getEventList",
- "printedName": "getEventList(_:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "([Swift.String]) -> ()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Array",
- "printedName": "[Swift.String]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sa"
- }
- ]
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit0A0C12getEventListyyySaySSGcF",
- "mangledName": "$s13ApptentiveKit0A0C12getEventListyyySaySSGcF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "register",
- "printedName": "register(with:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "ApptentiveConfiguration",
- "printedName": "ApptentiveKit.ApptentiveConfiguration",
- "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveConfiguration"
- }
- ],
- "declKind": "Func",
- "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(cm)registerWithConfiguration:",
- "mangledName": "$s13ApptentiveKit0A0C8register4withyAA0A13ConfigurationC_tFZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "deprecated": true,
- "objc_name": "registerWithConfiguration:",
- "declAttributes": [
- "Dynamic",
- "AccessControl",
- "ObjC",
- "Available"
- ],
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "register",
- "printedName": "register(with:completion:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "ApptentiveConfiguration",
- "printedName": "ApptentiveKit.ApptentiveConfiguration",
- "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveConfiguration"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "((Swift.Bool) -> ())?",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(Swift.Bool) -> ()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ]
- }
- ],
- "hasDefaultArg": true,
- "usr": "s:Sq"
- }
- ],
- "declKind": "Func",
- "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)registerWithConfiguration:completion:",
- "mangledName": "$s13ApptentiveKit0A0C8register4with10completionyAA0A13ConfigurationC_ySbcSgtF",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "objc_name": "registerWithConfiguration:completion:",
- "declAttributes": [
- "Dynamic",
- "AccessControl",
- "ObjC",
- "Available"
- ],
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "sharedConnection",
- "printedName": "sharedConnection()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Apptentive",
- "printedName": "ApptentiveKit.Apptentive",
- "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive"
- }
- ],
- "declKind": "Func",
- "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(cm)sharedConnection",
- "mangledName": "$s13ApptentiveKit0A0C16sharedConnectionACyFZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "deprecated": true,
- "declAttributes": [
- "Dynamic",
- "AccessControl",
- "ObjC",
- "Available"
- ],
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Var",
- "name": "appID",
- "printedName": "appID",
- "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@ApptentiveKit@objc(cs)Apptentive(py)appID",
- "mangledName": "$s13ApptentiveKit0A0C5appIDSSSgvp",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "declAttributes": [
- "Dynamic",
- "AccessControl",
- "ObjC",
- "Available"
- ],
- "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@ApptentiveKit@objc(cs)Apptentive(im)appID",
- "mangledName": "$s13ApptentiveKit0A0C5appIDSSSgvg",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Dynamic",
- "ObjC"
- ],
- "isFromExtension": true,
- "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:@CM@ApptentiveKit@objc(cs)Apptentive(im)setAppID:",
- "mangledName": "$s13ApptentiveKit0A0C5appIDSSSgvs",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Dynamic",
- "ObjC"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "showInfoButton",
- "printedName": "showInfoButton",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(py)showInfoButton",
- "mangledName": "$s13ApptentiveKit0A0C14showInfoButtonSbvp",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "declAttributes": [
- "Dynamic",
- "AccessControl",
- "ObjC",
- "Available"
- ],
- "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@ApptentiveKit@objc(cs)Apptentive(im)showInfoButton",
- "mangledName": "$s13ApptentiveKit0A0C14showInfoButtonSbvg",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Dynamic",
- "ObjC"
- ],
- "isFromExtension": true,
- "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:@CM@ApptentiveKit@objc(cs)Apptentive(im)setShowInfoButton:",
- "mangledName": "$s13ApptentiveKit0A0C14showInfoButtonSbvs",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Dynamic",
- "ObjC"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "surveyTermsAndConditions",
- "printedName": "surveyTermsAndConditions",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "ApptentiveKit.TermsAndConditions?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "TermsAndConditions",
- "printedName": "ApptentiveKit.TermsAndConditions",
- "usr": "c:@M@ApptentiveKit@objc(cs)TermsAndConditions"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(py)surveyTermsAndConditions",
- "mangledName": "$s13ApptentiveKit0A0C24surveyTermsAndConditionsAA0deF0CSgvp",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "declAttributes": [
- "Dynamic",
- "AccessControl",
- "ObjC",
- "Available"
- ],
- "isFromExtension": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "ApptentiveKit.TermsAndConditions?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "TermsAndConditions",
- "printedName": "ApptentiveKit.TermsAndConditions",
- "usr": "c:@M@ApptentiveKit@objc(cs)TermsAndConditions"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)surveyTermsAndConditions",
- "mangledName": "$s13ApptentiveKit0A0C24surveyTermsAndConditionsAA0deF0CSgvg",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Dynamic",
- "ObjC"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "ApptentiveKit.TermsAndConditions?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "TermsAndConditions",
- "printedName": "ApptentiveKit.TermsAndConditions",
- "usr": "c:@M@ApptentiveKit@objc(cs)TermsAndConditions"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)setSurveyTermsAndConditions:",
- "mangledName": "$s13ApptentiveKit0A0C24surveyTermsAndConditionsAA0deF0CSgvs",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Dynamic",
- "ObjC"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveKey",
- "printedName": "apptentiveKey",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(py)apptentiveKey",
- "mangledName": "$s13ApptentiveKit0A0C13apptentiveKeySSvp",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "declAttributes": [
- "Dynamic",
- "AccessControl",
- "ObjC",
- "Available"
- ],
- "isFromExtension": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)apptentiveKey",
- "mangledName": "$s13ApptentiveKit0A0C13apptentiveKeySSvg",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Dynamic",
- "ObjC"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveSignature",
- "printedName": "apptentiveSignature",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(py)apptentiveSignature",
- "mangledName": "$s13ApptentiveKit0A0C19apptentiveSignatureSSvp",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "declAttributes": [
- "Dynamic",
- "AccessControl",
- "ObjC",
- "Available"
- ],
- "isFromExtension": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)apptentiveSignature",
- "mangledName": "$s13ApptentiveKit0A0C19apptentiveSignatureSSvg",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Dynamic",
- "ObjC"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Function",
- "name": "engage",
- "printedName": "engage(_:fromViewController:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "UIKit.UIViewController?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIViewController",
- "printedName": "UIKit.UIViewController",
- "usr": "c:objc(cs)UIViewController"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Func",
- "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)engage:fromViewController:",
- "mangledName": "$s13ApptentiveKit0A0C6engage_18fromViewControllerySS_So06UIViewF0CSgtF",
- "moduleName": "ApptentiveKit",
- "objc_name": "engage:fromViewController:",
- "declAttributes": [
- "Dynamic",
- "AccessControl",
- "ObjC"
- ],
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "engage",
- "printedName": "engage(_:fromViewController:completion:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "UIKit.UIViewController?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIViewController",
- "printedName": "UIKit.UIViewController",
- "usr": "c:objc(cs)UIViewController"
- }
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "((Swift.Bool) -> ())?",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(Swift.Bool) -> ()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ]
- }
- ],
- "hasDefaultArg": true,
- "usr": "s:Sq"
- }
- ],
- "declKind": "Func",
- "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)engage:fromViewController:completion:",
- "mangledName": "$s13ApptentiveKit0A0C6engage_18fromViewController10completionySS_So06UIViewF0CSgySbcSgtF",
- "moduleName": "ApptentiveKit",
- "objc_name": "engage:fromViewController:completion:",
- "declAttributes": [
- "Dynamic",
- "AccessControl",
- "ObjC"
- ],
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "engage",
- "printedName": "engage(event:withCustomData:from:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "[Swift.AnyHashable : Any]?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Dictionary",
- "printedName": "[Swift.AnyHashable : Any]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "AnyHashable",
- "printedName": "Swift.AnyHashable",
- "usr": "s:s11AnyHashableV"
- },
- {
- "kind": "TypeNominal",
- "name": "ProtocolComposition",
- "printedName": "Any"
- }
- ],
- "usr": "s:SD"
- }
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "UIKit.UIViewController?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIViewController",
- "printedName": "UIKit.UIViewController",
- "usr": "c:objc(cs)UIViewController"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Func",
- "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)engage:withCustomData:fromViewController:",
- "mangledName": "$s13ApptentiveKit0A0C6engage5event14withCustomData4fromySS_SDys11AnyHashableVypGSgSo16UIViewControllerCSgtF",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "objc_name": "engage:withCustomData:fromViewController:",
- "declAttributes": [
- "Dynamic",
- "AccessControl",
- "ObjC",
- "Available"
- ],
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "engage",
- "printedName": "engage(event:withCustomData:from:completion:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "[Swift.AnyHashable : Any]?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Dictionary",
- "printedName": "[Swift.AnyHashable : Any]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "AnyHashable",
- "printedName": "Swift.AnyHashable",
- "usr": "s:s11AnyHashableV"
- },
- {
- "kind": "TypeNominal",
- "name": "ProtocolComposition",
- "printedName": "Any"
- }
- ],
- "usr": "s:SD"
- }
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "UIKit.UIViewController?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIViewController",
- "printedName": "UIKit.UIViewController",
- "usr": "c:objc(cs)UIViewController"
- }
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "((Swift.Bool) -> ())?",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(Swift.Bool) -> ()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ]
- }
- ],
- "hasDefaultArg": true,
- "usr": "s:Sq"
- }
- ],
- "declKind": "Func",
- "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)engage:withCustomData:fromViewController:completion:",
- "mangledName": "$s13ApptentiveKit0A0C6engage5event14withCustomData4from10completionySS_SDys11AnyHashableVypGSgSo16UIViewControllerCSgySbcSgtF",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "objc_name": "engage:withCustomData:fromViewController:completion:",
- "declAttributes": [
- "Dynamic",
- "AccessControl",
- "ObjC",
- "Available"
- ],
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "engage",
- "printedName": "engage(event:withCustomData:withExtendedData:from:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "[Swift.AnyHashable : Any]?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Dictionary",
- "printedName": "[Swift.AnyHashable : Any]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "AnyHashable",
- "printedName": "Swift.AnyHashable",
- "usr": "s:s11AnyHashableV"
- },
- {
- "kind": "TypeNominal",
- "name": "ProtocolComposition",
- "printedName": "Any"
- }
- ],
- "usr": "s:SD"
- }
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "[[Swift.AnyHashable : Any]]?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Array",
- "printedName": "[[Swift.AnyHashable : Any]]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Dictionary",
- "printedName": "[Swift.AnyHashable : Any]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "AnyHashable",
- "printedName": "Swift.AnyHashable",
- "usr": "s:s11AnyHashableV"
- },
- {
- "kind": "TypeNominal",
- "name": "ProtocolComposition",
- "printedName": "Any"
- }
- ],
- "usr": "s:SD"
- }
- ],
- "usr": "s:Sa"
- }
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "UIKit.UIViewController?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIViewController",
- "printedName": "UIKit.UIViewController",
- "usr": "c:objc(cs)UIViewController"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Func",
- "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)engage:withCustomData:withExtendedData:fromViewController:",
- "mangledName": "$s13ApptentiveKit0A0C6engage5event14withCustomData0e8ExtendedG04fromySS_SDys11AnyHashableVypGSgSayAKGSgSo16UIViewControllerCSgtF",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "objc_name": "engage:withCustomData:withExtendedData:fromViewController:",
- "declAttributes": [
- "Dynamic",
- "AccessControl",
- "ObjC",
- "Available"
- ],
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "engage",
- "printedName": "engage(event:withCustomData:withExtendedData:from:completion:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "[Swift.AnyHashable : Any]?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Dictionary",
- "printedName": "[Swift.AnyHashable : Any]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "AnyHashable",
- "printedName": "Swift.AnyHashable",
- "usr": "s:s11AnyHashableV"
- },
- {
- "kind": "TypeNominal",
- "name": "ProtocolComposition",
- "printedName": "Any"
- }
- ],
- "usr": "s:SD"
- }
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "[[Swift.AnyHashable : Any]]?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Array",
- "printedName": "[[Swift.AnyHashable : Any]]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Dictionary",
- "printedName": "[Swift.AnyHashable : Any]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "AnyHashable",
- "printedName": "Swift.AnyHashable",
- "usr": "s:s11AnyHashableV"
- },
- {
- "kind": "TypeNominal",
- "name": "ProtocolComposition",
- "printedName": "Any"
- }
- ],
- "usr": "s:SD"
- }
- ],
- "usr": "s:Sa"
- }
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "UIKit.UIViewController?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIViewController",
- "printedName": "UIKit.UIViewController",
- "usr": "c:objc(cs)UIViewController"
- }
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "((Swift.Bool) -> ())?",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(Swift.Bool) -> ()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ]
- }
- ],
- "hasDefaultArg": true,
- "usr": "s:Sq"
- }
- ],
- "declKind": "Func",
- "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)engage:withCustomData:withExtendedData:fromViewController:completion:",
- "mangledName": "$s13ApptentiveKit0A0C6engage5event14withCustomData0e8ExtendedG04from10completionySS_SDys11AnyHashableVypGSgSayALGSgSo16UIViewControllerCSgySbcSgtF",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "objc_name": "engage:withCustomData:withExtendedData:fromViewController:completion:",
- "declAttributes": [
- "Dynamic",
- "AccessControl",
- "ObjC",
- "Available"
- ],
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "queryCanShowInteraction",
- "printedName": "queryCanShowInteraction(forEvent:completion:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- },
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(Swift.Bool) -> ()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ]
- }
- ],
- "declKind": "Func",
- "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)queryCanShowInteractionForEvent:completion:",
- "mangledName": "$s13ApptentiveKit0A0C23queryCanShowInteraction8forEvent10completionySS_ySbctF",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "objc_name": "queryCanShowInteractionForEvent:completion:",
- "declAttributes": [
- "Dynamic",
- "AccessControl",
- "ObjC",
- "Available"
- ],
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "extendedData",
- "printedName": "extendedData(date:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Dictionary",
- "printedName": "[Swift.AnyHashable : Any]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "AnyHashable",
- "printedName": "Swift.AnyHashable",
- "usr": "s:s11AnyHashableV"
- },
- {
- "kind": "TypeNominal",
- "name": "ProtocolComposition",
- "printedName": "Any"
- }
- ],
- "usr": "s:SD"
- },
- {
- "kind": "TypeNominal",
- "name": "Date",
- "printedName": "Foundation.Date",
- "usr": "s:10Foundation4DateV"
- }
- ],
- "declKind": "Func",
- "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(cm)extendedDataDate:",
- "mangledName": "$s13ApptentiveKit0A0C12extendedData4dateSDys11AnyHashableVypG10Foundation4DateV_tFZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "deprecated": true,
- "objc_name": "extendedDataDate:",
- "declAttributes": [
- "Dynamic",
- "AccessControl",
- "ObjC",
- "Available"
- ],
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "extendedData",
- "printedName": "extendedData(latitude:longitude:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Dictionary",
- "printedName": "[Swift.AnyHashable : Any]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "AnyHashable",
- "printedName": "Swift.AnyHashable",
- "usr": "s:s11AnyHashableV"
- },
- {
- "kind": "TypeNominal",
- "name": "ProtocolComposition",
- "printedName": "Any"
- }
- ],
- "usr": "s:SD"
- },
- {
- "kind": "TypeNominal",
- "name": "Double",
- "printedName": "Swift.Double",
- "usr": "s:Sd"
- },
- {
- "kind": "TypeNominal",
- "name": "Double",
- "printedName": "Swift.Double",
- "usr": "s:Sd"
- }
- ],
- "declKind": "Func",
- "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(cm)extendedDataLocationForLatitude:longitude:",
- "mangledName": "$s13ApptentiveKit0A0C12extendedData8latitude9longitudeSDys11AnyHashableVypGSd_SdtFZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "deprecated": true,
- "objc_name": "extendedDataLocationForLatitude:longitude:",
- "declAttributes": [
- "Dynamic",
- "AccessControl",
- "ObjC",
- "Available"
- ],
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "extendedData",
- "printedName": "extendedData(transactionID:affiliation:revenue:shipping:tax:currency:commerceItems:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Dictionary",
- "printedName": "[Swift.AnyHashable : Any]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "AnyHashable",
- "printedName": "Swift.AnyHashable",
- "usr": "s:s11AnyHashableV"
- },
- {
- "kind": "TypeNominal",
- "name": "ProtocolComposition",
- "printedName": "Any"
- }
- ],
- "usr": "s:SD"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Foundation.NSNumber?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "NSNumber",
- "printedName": "Foundation.NSNumber",
- "usr": "c:objc(cs)NSNumber"
- }
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Foundation.NSNumber?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "NSNumber",
- "printedName": "Foundation.NSNumber",
- "usr": "c:objc(cs)NSNumber"
- }
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Foundation.NSNumber?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "NSNumber",
- "printedName": "Foundation.NSNumber",
- "usr": "c:objc(cs)NSNumber"
- }
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "[[Swift.AnyHashable : Any]]?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Array",
- "printedName": "[[Swift.AnyHashable : Any]]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Dictionary",
- "printedName": "[Swift.AnyHashable : Any]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "AnyHashable",
- "printedName": "Swift.AnyHashable",
- "usr": "s:s11AnyHashableV"
- },
- {
- "kind": "TypeNominal",
- "name": "ProtocolComposition",
- "printedName": "Any"
- }
- ],
- "usr": "s:SD"
- }
- ],
- "usr": "s:Sa"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Func",
- "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(cm)extendedDataCommerceWithTransactionID:affiliation:revenue:shipping:tax:currency:commerceItems:",
- "mangledName": "$s13ApptentiveKit0A0C12extendedData13transactionID11affiliation7revenue8shipping3tax8currency13commerceItemsSDys11AnyHashableVypGSSSg_AOSo8NSNumberCSgA2rOSayANGSgtFZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "deprecated": true,
- "objc_name": "extendedDataCommerceWithTransactionID:affiliation:revenue:shipping:tax:currency:commerceItems:",
- "declAttributes": [
- "Dynamic",
- "AccessControl",
- "ObjC",
- "Available"
- ],
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "extendedData",
- "printedName": "extendedData(itemID:name:category:price:quantity:currency:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Dictionary",
- "printedName": "[Swift.AnyHashable : Any]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "AnyHashable",
- "printedName": "Swift.AnyHashable",
- "usr": "s:s11AnyHashableV"
- },
- {
- "kind": "TypeNominal",
- "name": "ProtocolComposition",
- "printedName": "Any"
- }
- ],
- "usr": "s:SD"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Foundation.NSNumber?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "NSNumber",
- "printedName": "Foundation.NSNumber",
- "usr": "c:objc(cs)NSNumber"
- }
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Foundation.NSNumber?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "NSNumber",
- "printedName": "Foundation.NSNumber",
- "usr": "c:objc(cs)NSNumber"
- }
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Func",
- "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(cm)extendedDataCommerceItemWithItemID:name:category:price:quantity:currency:",
- "mangledName": "$s13ApptentiveKit0A0C12extendedData6itemID4name8category5price8quantity8currencySDys11AnyHashableVypGSSSg_A2NSo8NSNumberCSgAqNtFZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "deprecated": true,
- "objc_name": "extendedDataCommerceItemWithItemID:name:category:price:quantity:currency:",
- "declAttributes": [
- "Dynamic",
- "AccessControl",
- "ObjC",
- "Available"
- ],
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "queryCanShowMessageCenter",
- "printedName": "queryCanShowMessageCenter(completion:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(Swift.Bool) -> ()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ]
- }
- ],
- "declKind": "Func",
- "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)queryCanShowMessageCenterWithCompletion:",
- "mangledName": "$s13ApptentiveKit0A0C25queryCanShowMessageCenter10completionyySbc_tF",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "objc_name": "queryCanShowMessageCenterWithCompletion:",
- "declAttributes": [
- "Dynamic",
- "AccessControl",
- "ObjC",
- "Available"
- ],
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "presentMessageCenterCompat",
- "printedName": "presentMessageCenterCompat(from:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "UIKit.UIViewController?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIViewController",
- "printedName": "UIKit.UIViewController",
- "usr": "c:objc(cs)UIViewController"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Func",
- "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)presentMessageCenterFromViewController:",
- "mangledName": "$s13ApptentiveKit0A0C26presentMessageCenterCompat4fromySo16UIViewControllerCSg_tF",
- "moduleName": "ApptentiveKit",
- "objc_name": "presentMessageCenterFromViewController:",
- "declAttributes": [
- "Dynamic",
- "AccessControl",
- "ObjC"
- ],
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "presentMessageCenterCompat",
- "printedName": "presentMessageCenterCompat(from:completion:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "UIKit.UIViewController?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIViewController",
- "printedName": "UIKit.UIViewController",
- "usr": "c:objc(cs)UIViewController"
- }
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "((Swift.Bool) -> ())?",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(Swift.Bool) -> ()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ]
- }
- ],
- "hasDefaultArg": true,
- "usr": "s:Sq"
- }
- ],
- "declKind": "Func",
- "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)presentMessageCenterFromViewController:completion:",
- "mangledName": "$s13ApptentiveKit0A0C26presentMessageCenterCompat4from10completionySo16UIViewControllerCSg_ySbcSgtF",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "objc_name": "presentMessageCenterFromViewController:completion:",
- "declAttributes": [
- "Dynamic",
- "AccessControl",
- "ObjC",
- "Available"
- ],
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "presentMessageCenterCompat",
- "printedName": "presentMessageCenterCompat(from:withCustomData:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "UIKit.UIViewController?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIViewController",
- "printedName": "UIKit.UIViewController",
- "usr": "c:objc(cs)UIViewController"
- }
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "[Swift.AnyHashable : Any]?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Dictionary",
- "printedName": "[Swift.AnyHashable : Any]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "AnyHashable",
- "printedName": "Swift.AnyHashable",
- "usr": "s:s11AnyHashableV"
- },
- {
- "kind": "TypeNominal",
- "name": "ProtocolComposition",
- "printedName": "Any"
- }
- ],
- "usr": "s:SD"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Func",
- "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)presentMessageCenterFromViewController:withCustomData:",
- "mangledName": "$s13ApptentiveKit0A0C26presentMessageCenterCompat4from14withCustomDataySo16UIViewControllerCSg_SDys11AnyHashableVypGSgtF",
- "moduleName": "ApptentiveKit",
- "objc_name": "presentMessageCenterFromViewController:withCustomData:",
- "declAttributes": [
- "Dynamic",
- "AccessControl",
- "ObjC"
- ],
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "presentMessageCenterCompat",
- "printedName": "presentMessageCenterCompat(from:withCustomData:completion:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "UIKit.UIViewController?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIViewController",
- "printedName": "UIKit.UIViewController",
- "usr": "c:objc(cs)UIViewController"
- }
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "[Swift.AnyHashable : Any]?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Dictionary",
- "printedName": "[Swift.AnyHashable : Any]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "AnyHashable",
- "printedName": "Swift.AnyHashable",
- "usr": "s:s11AnyHashableV"
- },
- {
- "kind": "TypeNominal",
- "name": "ProtocolComposition",
- "printedName": "Any"
- }
- ],
- "usr": "s:SD"
- }
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "((Swift.Bool) -> ())?",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(Swift.Bool) -> ()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ]
- }
- ],
- "hasDefaultArg": true,
- "usr": "s:Sq"
- }
- ],
- "declKind": "Func",
- "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)presentMessageCenterFromViewController:withCustomData:completion:",
- "mangledName": "$s13ApptentiveKit0A0C26presentMessageCenterCompat4from14withCustomData10completionySo16UIViewControllerCSg_SDys11AnyHashableVypGSgySbcSgtF",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "objc_name": "presentMessageCenterFromViewController:withCustomData:completion:",
- "declAttributes": [
- "Dynamic",
- "AccessControl",
- "ObjC",
- "Available"
- ],
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "dismissMessageCenter",
- "printedName": "dismissMessageCenter(animated:completion:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "(() -> ())?",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "() -> ()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ]
- }
- ],
- "hasDefaultArg": true,
- "usr": "s:Sq"
- }
- ],
- "declKind": "Func",
- "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)dismissMessageCenterWithAnimated:completion:",
- "mangledName": "$s13ApptentiveKit0A0C20dismissMessageCenter8animated10completionySb_yycSgtF",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "objc_name": "dismissMessageCenterWithAnimated:completion:",
- "declAttributes": [
- "Dynamic",
- "AccessControl",
- "ObjC",
- "Available"
- ],
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "unreadMessageCountAccessoryView",
- "printedName": "unreadMessageCountAccessoryView(apptentiveHeart:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIView",
- "printedName": "UIKit.UIView",
- "usr": "c:objc(cs)UIView"
- },
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ],
- "declKind": "Func",
- "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)unreadMessageCountAccessoryViewWithApptentiveHeart:",
- "mangledName": "$s13ApptentiveKit0A0C31unreadMessageCountAccessoryView15apptentiveHeartSo6UIViewCSb_tF",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "objc_name": "unreadMessageCountAccessoryViewWithApptentiveHeart:",
- "declAttributes": [
- "Dynamic",
- "AccessControl",
- "ObjC",
- "Available"
- ],
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "openAppStore",
- "printedName": "openAppStore()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Func",
- "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)openAppStore",
- "mangledName": "$s13ApptentiveKit0A0C12openAppStoreyyF",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "declAttributes": [
- "Dynamic",
- "AccessControl",
- "ObjC",
- "Available"
- ],
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "setPushProvider",
- "printedName": "setPushProvider(_:deviceToken:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "ApptentivePushProvider",
- "printedName": "ApptentiveKit.ApptentivePushProvider",
- "usr": "c:@M@ApptentiveKit@E@ApptentivePushProvider"
- },
- {
- "kind": "TypeNominal",
- "name": "Data",
- "printedName": "Foundation.Data",
- "usr": "s:10Foundation4DataV"
- }
- ],
- "declKind": "Func",
- "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)setPushProvider:deviceToken:",
- "mangledName": "$s13ApptentiveKit0A0C15setPushProvider_11deviceTokenyAA0adE0O_10Foundation4DataVtF",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "declAttributes": [
- "Dynamic",
- "AccessControl",
- "ObjC",
- "Available"
- ],
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "didReceveUserNotificationResponse",
- "printedName": "didReceveUserNotificationResponse(_:from:withCompletionHandler:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- },
- {
- "kind": "TypeNominal",
- "name": "UNNotificationResponse",
- "printedName": "UserNotifications.UNNotificationResponse",
- "usr": "c:objc(cs)UNNotificationResponse"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "UIKit.UIViewController?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIViewController",
- "printedName": "UIKit.UIViewController",
- "usr": "c:objc(cs)UIViewController"
- }
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "() -> ()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ]
- }
- ],
- "declKind": "Func",
- "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)didReceveUserNotificationResponse:from:withCompletionHandler:",
- "mangledName": "$s13ApptentiveKit0A0C33didReceveUserNotificationResponse_4from21withCompletionHandlerSbSo014UNNotificationG0C_So16UIViewControllerCSgyyctF",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "declAttributes": [
- "Dynamic",
- "AccessControl",
- "ObjC",
- "Available"
- ],
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Var",
- "name": "advertisingIdentifier",
- "printedName": "advertisingIdentifier",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Foundation.UUID?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UUID",
- "printedName": "Foundation.UUID",
- "usr": "s:10Foundation4UUIDV"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(py)advertisingIdentifier",
- "mangledName": "$s13ApptentiveKit0A0C21advertisingIdentifier10Foundation4UUIDVSgvp",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "declAttributes": [
- "Dynamic",
- "AccessControl",
- "ObjC",
- "Available"
- ],
- "isFromExtension": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Foundation.UUID?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UUID",
- "printedName": "Foundation.UUID",
- "usr": "s:10Foundation4UUIDV"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)advertisingIdentifier",
- "mangledName": "$s13ApptentiveKit0A0C21advertisingIdentifier10Foundation4UUIDVSgvg",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Dynamic",
- "ObjC"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Foundation.UUID?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UUID",
- "printedName": "Foundation.UUID",
- "usr": "s:10Foundation4UUIDV"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)setAdvertisingIdentifier:",
- "mangledName": "$s13ApptentiveKit0A0C21advertisingIdentifier10Foundation4UUIDVSgvs",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Dynamic",
- "ObjC"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "mParticleId",
- "printedName": "mParticleId",
- "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@ApptentiveKit@objc(cs)Apptentive(py)mParticleId",
- "mangledName": "$s13ApptentiveKit0A0C11mParticleIdSSSgvp",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "declAttributes": [
- "Dynamic",
- "AccessControl",
- "ObjC",
- "Available"
- ],
- "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@ApptentiveKit@objc(cs)Apptentive(im)mParticleId",
- "mangledName": "$s13ApptentiveKit0A0C11mParticleIdSSSgvg",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Dynamic",
- "ObjC"
- ],
- "isFromExtension": true,
- "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:@CM@ApptentiveKit@objc(cs)Apptentive(im)setMParticleId:",
- "mangledName": "$s13ApptentiveKit0A0C11mParticleIdSSSgvs",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Dynamic",
- "ObjC"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- }
- ]
- },
- {
- "kind": "Function",
- "name": "removeCustomPersonData",
- "printedName": "removeCustomPersonData(withKey:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Func",
- "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)removeCustomPersonDataWithKey:",
- "mangledName": "$s13ApptentiveKit0A0C22removeCustomPersonData7withKeyySS_tF",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "objc_name": "removeCustomPersonDataWithKey:",
- "declAttributes": [
- "Dynamic",
- "AccessControl",
- "ObjC",
- "Available"
- ],
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "removeCustomDeviceData",
- "printedName": "removeCustomDeviceData(withKey:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Func",
- "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)removeCustomDeviceDataWithKey:",
- "mangledName": "$s13ApptentiveKit0A0C22removeCustomDeviceData7withKeyySS_tF",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "objc_name": "removeCustomDeviceDataWithKey:",
- "declAttributes": [
- "Dynamic",
- "AccessControl",
- "ObjC",
- "Available"
- ],
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "addCustomDeviceData",
- "printedName": "addCustomDeviceData(_:withKey:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Func",
- "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)addCustomDeviceDataString:withKey:",
- "mangledName": "$s13ApptentiveKit0A0C19addCustomDeviceData_7withKeyySS_SStF",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "objc_name": "addCustomDeviceDataString:withKey:",
- "declAttributes": [
- "Dynamic",
- "AccessControl",
- "ObjC",
- "Available"
- ],
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "addCustomDeviceData",
- "printedName": "addCustomDeviceData(_:withKey:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "NSNumber",
- "printedName": "Foundation.NSNumber",
- "usr": "c:objc(cs)NSNumber"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Func",
- "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)addCustomDeviceDataNumber:withKey:",
- "mangledName": "$s13ApptentiveKit0A0C19addCustomDeviceData_7withKeyySo8NSNumberC_SStF",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "objc_name": "addCustomDeviceDataNumber:withKey:",
- "declAttributes": [
- "Dynamic",
- "AccessControl",
- "ObjC",
- "Available"
- ],
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "addCustomDeviceData",
- "printedName": "addCustomDeviceData(_:withKey:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Func",
- "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)addCustomDeviceDataBool:withKey:",
- "mangledName": "$s13ApptentiveKit0A0C19addCustomDeviceData_7withKeyySb_SStF",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "objc_name": "addCustomDeviceDataBool:withKey:",
- "declAttributes": [
- "Dynamic",
- "AccessControl",
- "ObjC",
- "Available"
- ],
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "addCustomPersonData",
- "printedName": "addCustomPersonData(_:withKey:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Func",
- "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)addCustomPersonDataString:withKey:",
- "mangledName": "$s13ApptentiveKit0A0C19addCustomPersonData_7withKeyySS_SStF",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "objc_name": "addCustomPersonDataString:withKey:",
- "declAttributes": [
- "Dynamic",
- "AccessControl",
- "ObjC",
- "Available"
- ],
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "addCustomPersonData",
- "printedName": "addCustomPersonData(_:withKey:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "NSNumber",
- "printedName": "Foundation.NSNumber",
- "usr": "c:objc(cs)NSNumber"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Func",
- "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)addCustomPersonDataNumber:withKey:",
- "mangledName": "$s13ApptentiveKit0A0C19addCustomPersonData_7withKeyySo8NSNumberC_SStF",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "objc_name": "addCustomPersonDataNumber:withKey:",
- "declAttributes": [
- "Dynamic",
- "AccessControl",
- "ObjC",
- "Available"
- ],
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "addCustomPersonData",
- "printedName": "addCustomPersonData(_:withKey:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Func",
- "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)addCustomPersonDataBool:withKey:",
- "mangledName": "$s13ApptentiveKit0A0C19addCustomPersonData_7withKeyySb_SStF",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "objc_name": "addCustomPersonDataBool:withKey:",
- "declAttributes": [
- "Dynamic",
- "AccessControl",
- "ObjC",
- "Available"
- ],
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Var",
- "name": "styleSheet",
- "printedName": "styleSheet",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Any?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ProtocolComposition",
- "printedName": "Any"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(py)styleSheet",
- "mangledName": "$s13ApptentiveKit0A0C10styleSheetypSgvp",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "declAttributes": [
- "Dynamic",
- "AccessControl",
- "ObjC",
- "Available"
- ],
- "isFromExtension": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Any?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ProtocolComposition",
- "printedName": "Any"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)styleSheet",
- "mangledName": "$s13ApptentiveKit0A0C10styleSheetypSgvg",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Dynamic",
- "ObjC"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Any?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ProtocolComposition",
- "printedName": "Any"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)setStyleSheet:",
- "mangledName": "$s13ApptentiveKit0A0C10styleSheetypSgvs",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Dynamic",
- "ObjC"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- }
- ]
- },
- {
- "kind": "Function",
- "name": "checkSDKConfiguration",
- "printedName": "checkSDKConfiguration()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Func",
- "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)checkSDKConfiguration",
- "mangledName": "$s13ApptentiveKit0A0C21checkSDKConfigurationyyF",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "declAttributes": [
- "Dynamic",
- "AccessControl",
- "ObjC",
- "Available"
- ],
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "logIn",
- "printedName": "logIn(withToken:completion:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- },
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(Swift.Bool, Swift.Error) -> ()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Tuple",
- "printedName": "(Swift.Bool, Swift.Error)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- },
- {
- "kind": "TypeNominal",
- "name": "Error",
- "printedName": "Swift.Error",
- "usr": "s:s5ErrorP"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "Func",
- "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)logInWithToken:completion:",
- "mangledName": "$s13ApptentiveKit0A0C5logIn9withToken10completionySS_ySb_s5Error_ptctF",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "objc_name": "logInWithToken:completion:",
- "declAttributes": [
- "Dynamic",
- "AccessControl",
- "ObjC",
- "Available"
- ],
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "logOut",
- "printedName": "logOut()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Func",
- "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)logOut",
- "mangledName": "$s13ApptentiveKit0A0C6logOutyyF",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "declAttributes": [
- "Dynamic",
- "AccessControl",
- "ObjC",
- "Available"
- ],
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Var",
- "name": "authenticationFailureCallback",
- "printedName": "authenticationFailureCallback",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "((ApptentiveKit.ApptentiveAuthenticationFailureReason, Swift.String) -> ())?",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.ApptentiveAuthenticationFailureReason, Swift.String) -> ()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Tuple",
- "printedName": "(ApptentiveKit.ApptentiveAuthenticationFailureReason, Swift.String)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveAuthenticationFailureReason",
- "printedName": "ApptentiveKit.ApptentiveAuthenticationFailureReason",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveAuthenticationFailureReason"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ]
- }
- ]
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(py)authenticationFailureCallback",
- "mangledName": "$s13ApptentiveKit0A0C29authenticationFailureCallbackyAA0a14AuthenticationD6ReasonO_SStcSgvp",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "declAttributes": [
- "Dynamic",
- "AccessControl",
- "ObjC",
- "Available"
- ],
- "isFromExtension": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "((ApptentiveKit.ApptentiveAuthenticationFailureReason, Swift.String) -> ())?",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.ApptentiveAuthenticationFailureReason, Swift.String) -> ()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Tuple",
- "printedName": "(ApptentiveKit.ApptentiveAuthenticationFailureReason, Swift.String)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveAuthenticationFailureReason",
- "printedName": "ApptentiveKit.ApptentiveAuthenticationFailureReason",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveAuthenticationFailureReason"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ]
- }
- ]
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)authenticationFailureCallback",
- "mangledName": "$s13ApptentiveKit0A0C29authenticationFailureCallbackyAA0a14AuthenticationD6ReasonO_SStcSgvg",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Dynamic",
- "ObjC"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "((ApptentiveKit.ApptentiveAuthenticationFailureReason, Swift.String) -> ())?",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.ApptentiveAuthenticationFailureReason, Swift.String) -> ()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Tuple",
- "printedName": "(ApptentiveKit.ApptentiveAuthenticationFailureReason, Swift.String)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveAuthenticationFailureReason",
- "printedName": "ApptentiveKit.ApptentiveAuthenticationFailureReason",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveAuthenticationFailureReason"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ]
- }
- ]
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)setAuthenticationFailureCallback:",
- "mangledName": "$s13ApptentiveKit0A0C29authenticationFailureCallbackyAA0a14AuthenticationD6ReasonO_SStcSgvs",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Dynamic",
- "ObjC"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "preInteractionCallback",
- "printedName": "preInteractionCallback",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "((Swift.String, [Swift.AnyHashable : Any]?) -> Swift.Bool)?",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(Swift.String, [Swift.AnyHashable : Any]?) -> Swift.Bool",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- },
- {
- "kind": "TypeNominal",
- "name": "Tuple",
- "printedName": "(Swift.String, [Swift.AnyHashable : Any]?)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "[Swift.AnyHashable : Any]?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Dictionary",
- "printedName": "[Swift.AnyHashable : Any]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "AnyHashable",
- "printedName": "Swift.AnyHashable",
- "usr": "s:s11AnyHashableV"
- },
- {
- "kind": "TypeNominal",
- "name": "ProtocolComposition",
- "printedName": "Any"
- }
- ],
- "usr": "s:SD"
- }
- ],
- "usr": "s:Sq"
- }
- ]
- }
- ]
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(py)preInteractionCallback",
- "mangledName": "$s13ApptentiveKit0A0C22preInteractionCallbackSbSS_SDys11AnyHashableVypGSgtcSgvp",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "declAttributes": [
- "Dynamic",
- "AccessControl",
- "ObjC",
- "Available"
- ],
- "isFromExtension": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "((Swift.String, [Swift.AnyHashable : Any]?) -> Swift.Bool)?",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(Swift.String, [Swift.AnyHashable : Any]?) -> Swift.Bool",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- },
- {
- "kind": "TypeNominal",
- "name": "Tuple",
- "printedName": "(Swift.String, [Swift.AnyHashable : Any]?)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "[Swift.AnyHashable : Any]?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Dictionary",
- "printedName": "[Swift.AnyHashable : Any]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "AnyHashable",
- "printedName": "Swift.AnyHashable",
- "usr": "s:s11AnyHashableV"
- },
- {
- "kind": "TypeNominal",
- "name": "ProtocolComposition",
- "printedName": "Any"
- }
- ],
- "usr": "s:SD"
- }
- ],
- "usr": "s:Sq"
- }
- ]
- }
- ]
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)preInteractionCallback",
- "mangledName": "$s13ApptentiveKit0A0C22preInteractionCallbackSbSS_SDys11AnyHashableVypGSgtcSgvg",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Dynamic",
- "ObjC"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "((Swift.String, [Swift.AnyHashable : Any]?) -> Swift.Bool)?",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(Swift.String, [Swift.AnyHashable : Any]?) -> Swift.Bool",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- },
- {
- "kind": "TypeNominal",
- "name": "Tuple",
- "printedName": "(Swift.String, [Swift.AnyHashable : Any]?)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "[Swift.AnyHashable : Any]?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Dictionary",
- "printedName": "[Swift.AnyHashable : Any]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "AnyHashable",
- "printedName": "Swift.AnyHashable",
- "usr": "s:s11AnyHashableV"
- },
- {
- "kind": "TypeNominal",
- "name": "ProtocolComposition",
- "printedName": "Any"
- }
- ],
- "usr": "s:SD"
- }
- ],
- "usr": "s:Sq"
- }
- ]
- }
- ]
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)setPreInteractionCallback:",
- "mangledName": "$s13ApptentiveKit0A0C22preInteractionCallbackSbSS_SDys11AnyHashableVypGSgtcSgvs",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Dynamic",
- "ObjC"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- }
- ]
- },
- {
- "kind": "Function",
- "name": "updateToken",
- "printedName": "updateToken(_:completion:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "((Swift.Bool) -> ())?",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(Swift.Bool) -> ()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ]
- }
- ],
- "hasDefaultArg": true,
- "usr": "s:Sq"
- }
- ],
- "declKind": "Func",
- "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)updateToken:completion:",
- "mangledName": "$s13ApptentiveKit0A0C11updateToken_10completionySS_ySbcSgtF",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "declAttributes": [
- "Dynamic",
- "AccessControl",
- "ObjC",
- "Available"
- ],
- "isFromExtension": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Var",
- "name": "logLevel",
- "printedName": "logLevel",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveLogLevel",
- "printedName": "ApptentiveKit.ApptentiveLogLevel",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveLogLevel"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(py)logLevel",
- "mangledName": "$s13ApptentiveKit0A0C8logLevelAA0a3LogD0Ovp",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "declAttributes": [
- "Dynamic",
- "AccessControl",
- "ObjC",
- "Available"
- ],
- "isFromExtension": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveLogLevel",
- "printedName": "ApptentiveKit.ApptentiveLogLevel",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveLogLevel"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)logLevel",
- "mangledName": "$s13ApptentiveKit0A0C8logLevelAA0a3LogD0Ovg",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Dynamic",
- "ObjC"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "ApptentiveLogLevel",
- "printedName": "ApptentiveKit.ApptentiveLogLevel",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveLogLevel"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@objc(cs)Apptentive(im)setLogLevel:",
- "mangledName": "$s13ApptentiveKit0A0C8logLevelAA0a3LogD0Ovs",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Dynamic",
- "ObjC"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- }
- ]
- }
- ],
- "declKind": "Class",
- "usr": "c:@M@ApptentiveKit@objc(cs)Apptentive",
- "mangledName": "$s13ApptentiveKit0A0C",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment",
- "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": "TypeDecl",
- "name": "ApptentiveError",
- "printedName": "ApptentiveError",
- "children": [
- {
- "kind": "Var",
- "name": "internalInconsistency",
- "printedName": "internalInconsistency",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.ApptentiveError.Type) -> ApptentiveKit.ApptentiveError",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveError",
- "printedName": "ApptentiveKit.ApptentiveError",
- "usr": "s:13ApptentiveKit0A5ErrorO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.ApptentiveError.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveError",
- "printedName": "ApptentiveKit.ApptentiveError",
- "usr": "s:13ApptentiveKit0A5ErrorO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:13ApptentiveKit0A5ErrorO21internalInconsistencyyA2CmF",
- "mangledName": "$s13ApptentiveKit0A5ErrorO21internalInconsistencyyA2CmF",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "Var",
- "name": "invalidCustomDataType",
- "printedName": "invalidCustomDataType",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.ApptentiveError.Type) -> (Any?) -> ApptentiveKit.ApptentiveError",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(Any?) -> ApptentiveKit.ApptentiveError",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveError",
- "printedName": "ApptentiveKit.ApptentiveError",
- "usr": "s:13ApptentiveKit0A5ErrorO"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Any?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ProtocolComposition",
- "printedName": "Any"
- }
- ],
- "usr": "s:Sq"
- }
- ]
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.ApptentiveError.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveError",
- "printedName": "ApptentiveKit.ApptentiveError",
- "usr": "s:13ApptentiveKit0A5ErrorO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:13ApptentiveKit0A5ErrorO21invalidCustomDataTypeyACypSgcACmF",
- "mangledName": "$s13ApptentiveKit0A5ErrorO21invalidCustomDataTypeyACypSgcACmF",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "Var",
- "name": "fileExistsAtContainerDirectoryPath",
- "printedName": "fileExistsAtContainerDirectoryPath",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.ApptentiveError.Type) -> ApptentiveKit.ApptentiveError",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveError",
- "printedName": "ApptentiveKit.ApptentiveError",
- "usr": "s:13ApptentiveKit0A5ErrorO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.ApptentiveError.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveError",
- "printedName": "ApptentiveKit.ApptentiveError",
- "usr": "s:13ApptentiveKit0A5ErrorO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:13ApptentiveKit0A5ErrorO34fileExistsAtContainerDirectoryPathyA2CmF",
- "mangledName": "$s13ApptentiveKit0A5ErrorO34fileExistsAtContainerDirectoryPathyA2CmF",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "Var",
- "name": "mismatchedCredentials",
- "printedName": "mismatchedCredentials",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.ApptentiveError.Type) -> ApptentiveKit.ApptentiveError",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveError",
- "printedName": "ApptentiveKit.ApptentiveError",
- "usr": "s:13ApptentiveKit0A5ErrorO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.ApptentiveError.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveError",
- "printedName": "ApptentiveKit.ApptentiveError",
- "usr": "s:13ApptentiveKit0A5ErrorO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:13ApptentiveKit0A5ErrorO21mismatchedCredentialsyA2CmF",
- "mangledName": "$s13ApptentiveKit0A5ErrorO21mismatchedCredentialsyA2CmF",
- "moduleName": "ApptentiveKit"
- }
- ],
- "declKind": "Enum",
- "usr": "s:13ApptentiveKit0A5ErrorO",
- "mangledName": "$s13ApptentiveKit0A5ErrorO",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl"
- ],
- "conformances": [
- {
- "kind": "Conformance",
- "name": "Error",
- "printedName": "Error",
- "usr": "s:s5ErrorP",
- "mangledName": "$ss5ErrorP"
- },
- {
- "kind": "Conformance",
- "name": "Sendable",
- "printedName": "Sendable",
- "usr": "s:s8SendableP",
- "mangledName": "$ss8SendableP"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveAssertionHandler",
- "printedName": "apptentiveAssertionHandler",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(@autoclosure () -> Swift.String, Swift.StaticString, Swift.UInt) -> ()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Tuple",
- "printedName": "(@autoclosure () -> Swift.String, Swift.StaticString, Swift.UInt)",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "() -> Swift.String",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- },
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "typeAttributes": [
- "noescape"
- ]
- },
- {
- "kind": "TypeNominal",
- "name": "StaticString",
- "printedName": "Swift.StaticString",
- "usr": "s:s12StaticStringV"
- },
- {
- "kind": "TypeNominal",
- "name": "UInt",
- "printedName": "Swift.UInt",
- "usr": "s:Su"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit26apptentiveAssertionHandleryySSyXK_s12StaticStringVSutcvp",
- "mangledName": "$s13ApptentiveKit26apptentiveAssertionHandleryySSyXK_s12StaticStringVSutcvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(@autoclosure () -> Swift.String, Swift.StaticString, Swift.UInt) -> ()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Tuple",
- "printedName": "(@autoclosure () -> Swift.String, Swift.StaticString, Swift.UInt)",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "() -> Swift.String",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- },
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "typeAttributes": [
- "noescape"
- ]
- },
- {
- "kind": "TypeNominal",
- "name": "StaticString",
- "printedName": "Swift.StaticString",
- "usr": "s:s12StaticStringV"
- },
- {
- "kind": "TypeNominal",
- "name": "UInt",
- "printedName": "Swift.UInt",
- "usr": "s:Su"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit26apptentiveAssertionHandleryySSyXK_s12StaticStringVSutcvg",
- "mangledName": "$s13ApptentiveKit26apptentiveAssertionHandleryySSyXK_s12StaticStringVSutcvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(@autoclosure () -> Swift.String, Swift.StaticString, Swift.UInt) -> ()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Tuple",
- "printedName": "(@autoclosure () -> Swift.String, Swift.StaticString, Swift.UInt)",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "() -> Swift.String",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- },
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "typeAttributes": [
- "noescape"
- ]
- },
- {
- "kind": "TypeNominal",
- "name": "StaticString",
- "printedName": "Swift.StaticString",
- "usr": "s:s12StaticStringV"
- },
- {
- "kind": "TypeNominal",
- "name": "UInt",
- "printedName": "Swift.UInt",
- "usr": "s:Su"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit26apptentiveAssertionHandleryySSyXK_s12StaticStringVSutcvs",
- "mangledName": "$s13ApptentiveKit26apptentiveAssertionHandleryySSyXK_s12StaticStringVSutcvs",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit26apptentiveAssertionHandleryySSyXK_s12StaticStringVSutcvM",
- "mangledName": "$s13ApptentiveKit26apptentiveAssertionHandleryySSyXK_s12StaticStringVSutcvM",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "UIKit",
- "printedName": "UIKit",
- "declKind": "Import",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "UIKit",
- "printedName": "UIKit",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "UIKit",
- "printedName": "UIKit",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "UIKit",
- "printedName": "UIKit",
- "declKind": "Import",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "Import",
- "name": "UIKit",
- "printedName": "UIKit",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "UIKit",
- "printedName": "UIKit",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "MobileCoreServices",
- "printedName": "MobileCoreServices",
- "declKind": "Import",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "Import",
- "name": "PhotosUI",
- "printedName": "PhotosUI",
- "declKind": "Import",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "Import",
- "name": "UIKit",
- "printedName": "UIKit",
- "declKind": "Import",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "UIKit",
- "printedName": "UIKit",
- "declKind": "Import",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "TypeDecl",
- "name": "CustomDataCompatible",
- "printedName": "CustomDataCompatible",
- "declKind": "Protocol",
- "usr": "s:13ApptentiveKit20CustomDataCompatibleP",
- "mangledName": "$s13ApptentiveKit20CustomDataCompatibleP",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "CustomData",
- "printedName": "CustomData",
- "children": [
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "CustomData",
- "printedName": "ApptentiveKit.CustomData",
- "usr": "s:13ApptentiveKit10CustomDataV"
- }
- ],
- "declKind": "Constructor",
- "usr": "s:13ApptentiveKit10CustomDataVACycfc",
- "mangledName": "$s13ApptentiveKit10CustomDataVACycfc",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "init_kind": "Designated"
- },
- {
- "kind": "Subscript",
- "name": "subscript",
- "printedName": "subscript(_:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "ApptentiveKit.CustomDataCompatible?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "CustomDataCompatible",
- "printedName": "ApptentiveKit.CustomDataCompatible",
- "usr": "s:13ApptentiveKit20CustomDataCompatibleP"
- }
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Subscript",
- "usr": "s:13ApptentiveKit10CustomDataVyAA0cD10Compatible_pSgSScip",
- "mangledName": "$s13ApptentiveKit10CustomDataVyAA0cD10Compatible_pSgSScip",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "ApptentiveKit.CustomDataCompatible?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "CustomDataCompatible",
- "printedName": "ApptentiveKit.CustomDataCompatible",
- "usr": "s:13ApptentiveKit20CustomDataCompatibleP"
- }
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit10CustomDataVyAA0cD10Compatible_pSgSScig",
- "mangledName": "$s13ApptentiveKit10CustomDataVyAA0cD10Compatible_pSgSScig",
- "moduleName": "ApptentiveKit",
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "ApptentiveKit.CustomDataCompatible?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "CustomDataCompatible",
- "printedName": "ApptentiveKit.CustomDataCompatible",
- "usr": "s:13ApptentiveKit20CustomDataCompatibleP"
- }
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit10CustomDataVyAA0cD10Compatible_pSgSScis",
- "mangledName": "$s13ApptentiveKit10CustomDataVyAA0cD10Compatible_pSgSScis",
- "moduleName": "ApptentiveKit",
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit10CustomDataVyAA0cD10Compatible_pSgSSciM",
- "mangledName": "$s13ApptentiveKit10CustomDataVyAA0cD10Compatible_pSgSSciM",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "keys",
- "printedName": "keys",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Keys",
- "printedName": "Swift.Dictionary.Keys",
- "usr": "s:SD4KeysV"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit10CustomDataV4keysSD4KeysVySSAA0cD10Compatible_p_Gvp",
- "mangledName": "$s13ApptentiveKit10CustomDataV4keysSD4KeysVySSAA0cD10Compatible_p_Gvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Keys",
- "printedName": "Swift.Dictionary.Keys",
- "usr": "s:SD4KeysV"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit10CustomDataV4keysSD4KeysVySSAA0cD10Compatible_p_Gvg",
- "mangledName": "$s13ApptentiveKit10CustomDataV4keysSD4KeysVySSAA0cD10Compatible_p_Gvg",
- "moduleName": "ApptentiveKit",
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Function",
- "name": "encode",
- "printedName": "encode(to:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Encoder",
- "printedName": "Swift.Encoder",
- "usr": "s:s7EncoderP"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit10CustomDataV6encode2toys7Encoder_p_tKF",
- "mangledName": "$s13ApptentiveKit10CustomDataV6encode2toys7Encoder_p_tKF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "throwing": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(from:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "CustomData",
- "printedName": "ApptentiveKit.CustomData",
- "usr": "s:13ApptentiveKit10CustomDataV"
- },
- {
- "kind": "TypeNominal",
- "name": "Decoder",
- "printedName": "Swift.Decoder",
- "usr": "s:s7DecoderP"
- }
- ],
- "declKind": "Constructor",
- "usr": "s:13ApptentiveKit10CustomDataV4fromACs7Decoder_p_tKcfc",
- "mangledName": "$s13ApptentiveKit10CustomDataV4fromACs7Decoder_p_tKcfc",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "throwing": true,
- "init_kind": "Designated"
- },
- {
- "kind": "Function",
- "name": "==",
- "printedName": "==(_:_:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- },
- {
- "kind": "TypeNominal",
- "name": "CustomData",
- "printedName": "ApptentiveKit.CustomData",
- "usr": "s:13ApptentiveKit10CustomDataV"
- },
- {
- "kind": "TypeNominal",
- "name": "CustomData",
- "printedName": "ApptentiveKit.CustomData",
- "usr": "s:13ApptentiveKit10CustomDataV"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit10CustomDataV2eeoiySbAC_ACtFZ",
- "mangledName": "$s13ApptentiveKit10CustomDataV2eeoiySbAC_ACtFZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "funcSelfKind": "NonMutating"
- }
- ],
- "declKind": "Struct",
- "usr": "s:13ApptentiveKit10CustomDataV",
- "mangledName": "$s13ApptentiveKit10CustomDataV",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "conformances": [
- {
- "kind": "Conformance",
- "name": "Equatable",
- "printedName": "Equatable",
- "usr": "s:SQ",
- "mangledName": "$sSQ"
- },
- {
- "kind": "Conformance",
- "name": "Decodable",
- "printedName": "Decodable",
- "usr": "s:Se",
- "mangledName": "$sSe"
- },
- {
- "kind": "Conformance",
- "name": "Encodable",
- "printedName": "Encodable",
- "usr": "s:SE",
- "mangledName": "$sSE"
- }
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "SurveyViewModelDelegate",
- "printedName": "SurveyViewModelDelegate",
- "children": [
- {
- "kind": "Function",
- "name": "surveyViewModelDidFinish",
- "printedName": "surveyViewModelDidFinish(_:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "SurveyViewModel",
- "printedName": "ApptentiveKit.SurveyViewModel",
- "usr": "s:13ApptentiveKit15SurveyViewModelC"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit23SurveyViewModelDelegateP06surveydE9DidFinishyyAA0cdE0CF",
- "mangledName": "$s13ApptentiveKit23SurveyViewModelDelegateP06surveydE9DidFinishyyAA0cdE0CF",
- "moduleName": "ApptentiveKit",
- "genericSig": "<τ_0_0 where τ_0_0 : ApptentiveKit.SurveyViewModelDelegate>",
- "sugared_genericSig": "",
- "protocolReq": true,
- "declAttributes": [
- "RawDocComment"
- ],
- "reqNewWitnessTableEntry": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "surveyViewModelValidationDidChange",
- "printedName": "surveyViewModelValidationDidChange(_:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "SurveyViewModel",
- "printedName": "ApptentiveKit.SurveyViewModel",
- "usr": "s:13ApptentiveKit15SurveyViewModelC"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit23SurveyViewModelDelegateP06surveydE19ValidationDidChangeyyAA0cdE0CF",
- "mangledName": "$s13ApptentiveKit23SurveyViewModelDelegateP06surveydE19ValidationDidChangeyyAA0cdE0CF",
- "moduleName": "ApptentiveKit",
- "genericSig": "<τ_0_0 where τ_0_0 : ApptentiveKit.SurveyViewModelDelegate>",
- "sugared_genericSig": "",
- "protocolReq": true,
- "declAttributes": [
- "RawDocComment"
- ],
- "reqNewWitnessTableEntry": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "surveyViewModelSelectionDidChange",
- "printedName": "surveyViewModelSelectionDidChange(_:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "SurveyViewModel",
- "printedName": "ApptentiveKit.SurveyViewModel",
- "usr": "s:13ApptentiveKit15SurveyViewModelC"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit23SurveyViewModelDelegateP06surveydE18SelectionDidChangeyyAA0cdE0CF",
- "mangledName": "$s13ApptentiveKit23SurveyViewModelDelegateP06surveydE18SelectionDidChangeyyAA0cdE0CF",
- "moduleName": "ApptentiveKit",
- "genericSig": "<τ_0_0 where τ_0_0 : ApptentiveKit.SurveyViewModelDelegate>",
- "sugared_genericSig": "",
- "protocolReq": true,
- "declAttributes": [
- "RawDocComment"
- ],
- "reqNewWitnessTableEntry": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "surveyViewModelPageWillChange",
- "printedName": "surveyViewModelPageWillChange(_:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "SurveyViewModel",
- "printedName": "ApptentiveKit.SurveyViewModel",
- "usr": "s:13ApptentiveKit15SurveyViewModelC"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit23SurveyViewModelDelegateP06surveydE14PageWillChangeyyAA0cdE0CF",
- "mangledName": "$s13ApptentiveKit23SurveyViewModelDelegateP06surveydE14PageWillChangeyyAA0cdE0CF",
- "moduleName": "ApptentiveKit",
- "genericSig": "<τ_0_0 where τ_0_0 : ApptentiveKit.SurveyViewModelDelegate>",
- "sugared_genericSig": "",
- "protocolReq": true,
- "declAttributes": [
- "RawDocComment"
- ],
- "reqNewWitnessTableEntry": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "surveyViewModelPageDidChange",
- "printedName": "surveyViewModelPageDidChange(_:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "SurveyViewModel",
- "printedName": "ApptentiveKit.SurveyViewModel",
- "usr": "s:13ApptentiveKit15SurveyViewModelC"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit23SurveyViewModelDelegateP06surveydE13PageDidChangeyyAA0cdE0CF",
- "mangledName": "$s13ApptentiveKit23SurveyViewModelDelegateP06surveydE13PageDidChangeyyAA0cdE0CF",
- "moduleName": "ApptentiveKit",
- "genericSig": "<τ_0_0 where τ_0_0 : ApptentiveKit.SurveyViewModelDelegate>",
- "sugared_genericSig": "",
- "protocolReq": true,
- "declAttributes": [
- "RawDocComment"
- ],
- "reqNewWitnessTableEntry": true,
- "funcSelfKind": "NonMutating"
- }
- ],
- "declKind": "Protocol",
- "usr": "s:13ApptentiveKit23SurveyViewModelDelegateP",
- "mangledName": "$s13ApptentiveKit23SurveyViewModelDelegateP",
- "moduleName": "ApptentiveKit",
- "genericSig": "<τ_0_0 : AnyObject>",
- "sugared_genericSig": "",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "SurveyViewModel",
- "printedName": "SurveyViewModel",
- "children": [
- {
- "kind": "Var",
- "name": "name",
- "printedName": "name",
- "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": "s:13ApptentiveKit15SurveyViewModelC4nameSSSgvp",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC4nameSSSgvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "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": "s:13ApptentiveKit15SurveyViewModelC4nameSSSgvg",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC4nameSSSgvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "isRequired",
- "printedName": "isRequired",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit15SurveyViewModelC10isRequiredSbvp",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC10isRequiredSbvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit15SurveyViewModelC10isRequiredSbvg",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC10isRequiredSbvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "pageIndicatorSegmentCount",
- "printedName": "pageIndicatorSegmentCount",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit15SurveyViewModelC25pageIndicatorSegmentCountSivp",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC25pageIndicatorSegmentCountSivp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit15SurveyViewModelC25pageIndicatorSegmentCountSivg",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC25pageIndicatorSegmentCountSivg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "validationErrorMessage",
- "printedName": "validationErrorMessage",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit15SurveyViewModelC22validationErrorMessageSSvp",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC22validationErrorMessageSSvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit15SurveyViewModelC22validationErrorMessageSSvg",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC22validationErrorMessageSSvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "disclaimerText",
- "printedName": "disclaimerText",
- "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": "s:13ApptentiveKit15SurveyViewModelC14disclaimerTextSSSgvp",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC14disclaimerTextSSSgvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "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": "s:13ApptentiveKit15SurveyViewModelC14disclaimerTextSSSgvg",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC14disclaimerTextSSSgvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "TermsAndConditions",
- "printedName": "TermsAndConditions",
- "declKind": "Struct",
- "usr": "s:13ApptentiveKit15SurveyViewModelC18TermsAndConditionsV",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC18TermsAndConditionsV",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "termsAndConditions",
- "printedName": "termsAndConditions",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "ApptentiveKit.SurveyViewModel.TermsAndConditions?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "TermsAndConditions",
- "printedName": "ApptentiveKit.SurveyViewModel.TermsAndConditions",
- "usr": "s:13ApptentiveKit15SurveyViewModelC18TermsAndConditionsV"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit15SurveyViewModelC18termsAndConditionsAC05TermsgH0VSgvp",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC18termsAndConditionsAC05TermsgH0VSgvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "ApptentiveKit.SurveyViewModel.TermsAndConditions?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "TermsAndConditions",
- "printedName": "ApptentiveKit.SurveyViewModel.TermsAndConditions",
- "usr": "s:13ApptentiveKit15SurveyViewModelC18TermsAndConditionsV"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit15SurveyViewModelC18termsAndConditionsAC05TermsgH0VSgvg",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC18termsAndConditionsAC05TermsgH0VSgvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "CloseConfirmation",
- "printedName": "CloseConfirmation",
- "declKind": "Struct",
- "usr": "s:13ApptentiveKit15SurveyViewModelC17CloseConfirmationV",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC17CloseConfirmationV",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "closeConfirmation",
- "printedName": "closeConfirmation",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "CloseConfirmation",
- "printedName": "ApptentiveKit.SurveyViewModel.CloseConfirmation",
- "usr": "s:13ApptentiveKit15SurveyViewModelC17CloseConfirmationV"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit15SurveyViewModelC17closeConfirmationAC05CloseG0Vvp",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC17closeConfirmationAC05CloseG0Vvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "CloseConfirmation",
- "printedName": "ApptentiveKit.SurveyViewModel.CloseConfirmation",
- "usr": "s:13ApptentiveKit15SurveyViewModelC17CloseConfirmationV"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit15SurveyViewModelC17closeConfirmationAC05CloseG0Vvg",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC17closeConfirmationAC05CloseG0Vvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "delegate",
- "printedName": "delegate",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "WeakStorage",
- "printedName": "ApptentiveKit.SurveyViewModelDelegate?"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit15SurveyViewModelC8delegateAA0cdE8Delegate_pSgvp",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC8delegateAA0cdE8Delegate_pSgvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "ReferenceOwnership",
- "AccessControl",
- "RawDocComment"
- ],
- "ownership": 1,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "ApptentiveKit.SurveyViewModelDelegate?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "SurveyViewModelDelegate",
- "printedName": "ApptentiveKit.SurveyViewModelDelegate",
- "usr": "s:13ApptentiveKit23SurveyViewModelDelegateP"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit15SurveyViewModelC8delegateAA0cdE8Delegate_pSgvg",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC8delegateAA0cdE8Delegate_pSgvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "ApptentiveKit.SurveyViewModelDelegate?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "SurveyViewModelDelegate",
- "printedName": "ApptentiveKit.SurveyViewModelDelegate",
- "usr": "s:13ApptentiveKit23SurveyViewModelDelegateP"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit15SurveyViewModelC8delegateAA0cdE8Delegate_pSgvs",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC8delegateAA0cdE8Delegate_pSgvs",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit15SurveyViewModelC8delegateAA0cdE8Delegate_pSgvM",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC8delegateAA0cdE8Delegate_pSgvM",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "currentPage",
- "printedName": "currentPage",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Page",
- "printedName": "ApptentiveKit.SurveyViewModel.Page",
- "usr": "s:13ApptentiveKit15SurveyViewModelC4PageC"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit15SurveyViewModelC11currentPageAC0G0Cvp",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC11currentPageAC0G0Cvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Page",
- "printedName": "ApptentiveKit.SurveyViewModel.Page",
- "usr": "s:13ApptentiveKit15SurveyViewModelC4PageC"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit15SurveyViewModelC11currentPageAC0G0Cvg",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC11currentPageAC0G0Cvg",
- "moduleName": "ApptentiveKit",
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "questions",
- "printedName": "questions",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Array",
- "printedName": "[ApptentiveKit.SurveyViewModel.Question]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Question",
- "printedName": "ApptentiveKit.SurveyViewModel.Question",
- "usr": "s:13ApptentiveKit15SurveyViewModelC8QuestionC"
- }
- ],
- "usr": "s:Sa"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit15SurveyViewModelC9questionsSayAC8QuestionCGvp",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC9questionsSayAC8QuestionCGvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Array",
- "printedName": "[ApptentiveKit.SurveyViewModel.Question]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Question",
- "printedName": "ApptentiveKit.SurveyViewModel.Question",
- "usr": "s:13ApptentiveKit15SurveyViewModelC8QuestionC"
- }
- ],
- "usr": "s:Sa"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit15SurveyViewModelC9questionsSayAC8QuestionCGvg",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC9questionsSayAC8QuestionCGvg",
- "moduleName": "ApptentiveKit",
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "isMarkedAsInvalid",
- "printedName": "isMarkedAsInvalid",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit15SurveyViewModelC17isMarkedAsInvalidSbvp",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC17isMarkedAsInvalidSbvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit15SurveyViewModelC17isMarkedAsInvalidSbvg",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC17isMarkedAsInvalidSbvg",
- "moduleName": "ApptentiveKit",
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "thankYouMessage",
- "printedName": "thankYouMessage",
- "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": "s:13ApptentiveKit15SurveyViewModelC15thankYouMessageSSSgvp",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC15thankYouMessageSSSgvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit15SurveyViewModelC15thankYouMessageSSSgvg",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC15thankYouMessageSSSgvg",
- "moduleName": "ApptentiveKit",
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "introduction",
- "printedName": "introduction",
- "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": "s:13ApptentiveKit15SurveyViewModelC12introductionSSSgvp",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC12introductionSSSgvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit15SurveyViewModelC12introductionSSSgvg",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC12introductionSSSgvg",
- "moduleName": "ApptentiveKit",
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "advanceButtonText",
- "printedName": "advanceButtonText",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit15SurveyViewModelC17advanceButtonTextSSvp",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC17advanceButtonTextSSvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit15SurveyViewModelC17advanceButtonTextSSvg",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC17advanceButtonTextSSvg",
- "moduleName": "ApptentiveKit",
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "invalidQuestionIndexes",
- "printedName": "invalidQuestionIndexes",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "IndexSet",
- "printedName": "Foundation.IndexSet",
- "usr": "s:10Foundation8IndexSetV"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit15SurveyViewModelC22invalidQuestionIndexes10Foundation8IndexSetVvp",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC22invalidQuestionIndexes10Foundation8IndexSetVvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "IndexSet",
- "printedName": "Foundation.IndexSet",
- "usr": "s:10Foundation8IndexSetV"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit15SurveyViewModelC22invalidQuestionIndexes10Foundation8IndexSetVvg",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC22invalidQuestionIndexes10Foundation8IndexSetVvg",
- "moduleName": "ApptentiveKit",
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "surveyDidSendResponse",
- "printedName": "surveyDidSendResponse",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit15SurveyViewModelC21surveyDidSendResponseSbvp",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC21surveyDidSendResponseSbvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit15SurveyViewModelC21surveyDidSendResponseSbvg",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC21surveyDidSendResponseSbvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "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": "s:13ApptentiveKit15SurveyViewModelC21surveyDidSendResponseSbvs",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC21surveyDidSendResponseSbvs",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit15SurveyViewModelC21surveyDidSendResponseSbvM",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC21surveyDidSendResponseSbvM",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "highlightFirstQuestionSegment",
- "printedName": "highlightFirstQuestionSegment",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit15SurveyViewModelC29highlightFirstQuestionSegmentSbvp",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC29highlightFirstQuestionSegmentSbvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit15SurveyViewModelC29highlightFirstQuestionSegmentSbvg",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC29highlightFirstQuestionSegmentSbvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "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": "s:13ApptentiveKit15SurveyViewModelC29highlightFirstQuestionSegmentSbvs",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC29highlightFirstQuestionSegmentSbvs",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit15SurveyViewModelC29highlightFirstQuestionSegmentSbvM",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC29highlightFirstQuestionSegmentSbvM",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Function",
- "name": "setValue",
- "printedName": "setValue(_:for:)",
- "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": "TypeNominal",
- "name": "IndexPath",
- "printedName": "Foundation.IndexPath",
- "usr": "s:10Foundation9IndexPathV"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit15SurveyViewModelC8setValue_3forySSSg_10Foundation9IndexPathVtF",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC8setValue_3forySSSg_10Foundation9IndexPathVtF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "selectValueFromRange",
- "printedName": "selectValueFromRange(at:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "IndexPath",
- "printedName": "Foundation.IndexPath",
- "usr": "s:10Foundation9IndexPathV"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit15SurveyViewModelC20selectValueFromRange2aty10Foundation9IndexPathV_tF",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC20selectValueFromRange2aty10Foundation9IndexPathV_tF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "openTermsAndConditions",
- "printedName": "openTermsAndConditions()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit15SurveyViewModelC22openTermsAndConditionsyyF",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC22openTermsAndConditionsyyF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "advance",
- "printedName": "advance()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit15SurveyViewModelC7advanceyyF",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC7advanceyyF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Var",
- "name": "isValid",
- "printedName": "isValid",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit15SurveyViewModelC7isValidSbvp",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC7isValidSbvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit15SurveyViewModelC7isValidSbvg",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC7isValidSbvg",
- "moduleName": "ApptentiveKit",
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "DisplayMode",
- "printedName": "DisplayMode",
- "children": [
- {
- "kind": "Var",
- "name": "list",
- "printedName": "list",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.SurveyViewModel.DisplayMode.Type) -> ApptentiveKit.SurveyViewModel.DisplayMode",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "DisplayMode",
- "printedName": "ApptentiveKit.SurveyViewModel.DisplayMode",
- "usr": "s:13ApptentiveKit15SurveyViewModelC11DisplayModeO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.SurveyViewModel.DisplayMode.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "DisplayMode",
- "printedName": "ApptentiveKit.SurveyViewModel.DisplayMode",
- "usr": "s:13ApptentiveKit15SurveyViewModelC11DisplayModeO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:13ApptentiveKit15SurveyViewModelC11DisplayModeO4listyA2EmF",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC11DisplayModeO4listyA2EmF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "paged",
- "printedName": "paged",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.SurveyViewModel.DisplayMode.Type) -> ApptentiveKit.SurveyViewModel.DisplayMode",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "DisplayMode",
- "printedName": "ApptentiveKit.SurveyViewModel.DisplayMode",
- "usr": "s:13ApptentiveKit15SurveyViewModelC11DisplayModeO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.SurveyViewModel.DisplayMode.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "DisplayMode",
- "printedName": "ApptentiveKit.SurveyViewModel.DisplayMode",
- "usr": "s:13ApptentiveKit15SurveyViewModelC11DisplayModeO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:13ApptentiveKit15SurveyViewModelC11DisplayModeO5pagedyA2EmF",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC11DisplayModeO5pagedyA2EmF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Function",
- "name": "==",
- "printedName": "==(_:_:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- },
- {
- "kind": "TypeNominal",
- "name": "DisplayMode",
- "printedName": "ApptentiveKit.SurveyViewModel.DisplayMode",
- "usr": "s:13ApptentiveKit15SurveyViewModelC11DisplayModeO"
- },
- {
- "kind": "TypeNominal",
- "name": "DisplayMode",
- "printedName": "ApptentiveKit.SurveyViewModel.DisplayMode",
- "usr": "s:13ApptentiveKit15SurveyViewModelC11DisplayModeO"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit15SurveyViewModelC11DisplayModeO2eeoiySbAE_AEtFZ",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC11DisplayModeO2eeoiySbAE_AEtFZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Var",
- "name": "hashValue",
- "printedName": "hashValue",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit15SurveyViewModelC11DisplayModeO9hashValueSivp",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC11DisplayModeO9hashValueSivp",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit15SurveyViewModelC11DisplayModeO9hashValueSivg",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC11DisplayModeO9hashValueSivg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Function",
- "name": "hash",
- "printedName": "hash(into:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Hasher",
- "printedName": "Swift.Hasher",
- "paramValueOwnership": "InOut",
- "usr": "s:s6HasherV"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit15SurveyViewModelC11DisplayModeO4hash4intoys6HasherVz_tF",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC11DisplayModeO4hash4intoys6HasherVz_tF",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "funcSelfKind": "NonMutating"
- }
- ],
- "declKind": "Enum",
- "usr": "s:13ApptentiveKit15SurveyViewModelC11DisplayModeO",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC11DisplayModeO",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "conformances": [
- {
- "kind": "Conformance",
- "name": "Equatable",
- "printedName": "Equatable",
- "usr": "s:SQ",
- "mangledName": "$sSQ"
- },
- {
- "kind": "Conformance",
- "name": "Hashable",
- "printedName": "Hashable",
- "usr": "s:SH",
- "mangledName": "$sSH"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "displayMode",
- "printedName": "displayMode",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "DisplayMode",
- "printedName": "ApptentiveKit.SurveyViewModel.DisplayMode",
- "usr": "s:13ApptentiveKit15SurveyViewModelC11DisplayModeO"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit15SurveyViewModelC11displayModeAC07DisplayG0Ovp",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC11displayModeAC07DisplayG0Ovp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "DisplayMode",
- "printedName": "ApptentiveKit.SurveyViewModel.DisplayMode",
- "usr": "s:13ApptentiveKit15SurveyViewModelC11DisplayModeO"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit15SurveyViewModelC11displayModeAC07DisplayG0Ovg",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC11displayModeAC07DisplayG0Ovg",
- "moduleName": "ApptentiveKit",
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "shouldConfirmCancel",
- "printedName": "shouldConfirmCancel",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit15SurveyViewModelC19shouldConfirmCancelSbvp",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC19shouldConfirmCancelSbvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit15SurveyViewModelC19shouldConfirmCancelSbvg",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC19shouldConfirmCancelSbvg",
- "moduleName": "ApptentiveKit",
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "currentSelectedSegmentIndex",
- "printedName": "currentSelectedSegmentIndex",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.Int?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit15SurveyViewModelC27currentSelectedSegmentIndexSiSgvp",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC27currentSelectedSegmentIndexSiSgvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.Int?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit15SurveyViewModelC27currentSelectedSegmentIndexSiSgvg",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC27currentSelectedSegmentIndexSiSgvg",
- "moduleName": "ApptentiveKit",
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Function",
- "name": "launch",
- "printedName": "launch()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit15SurveyViewModelC6launchyyF",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC6launchyyF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "continuePartial",
- "printedName": "continuePartial()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit15SurveyViewModelC15continuePartialyyF",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC15continuePartialyyF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "cancel",
- "printedName": "cancel(partial:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit15SurveyViewModelC6cancel7partialySb_tF",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC6cancel7partialySb_tF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "TypeDecl",
- "name": "RangeQuestion",
- "printedName": "RangeQuestion",
- "children": [
- {
- "kind": "Var",
- "name": "minValue",
- "printedName": "minValue",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit15SurveyViewModelC13RangeQuestionC8minValueSivp",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC13RangeQuestionC8minValueSivp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit15SurveyViewModelC13RangeQuestionC8minValueSivg",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC13RangeQuestionC8minValueSivg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "maxValue",
- "printedName": "maxValue",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit15SurveyViewModelC13RangeQuestionC8maxValueSivp",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC13RangeQuestionC8maxValueSivp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit15SurveyViewModelC13RangeQuestionC8maxValueSivg",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC13RangeQuestionC8maxValueSivg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "minText",
- "printedName": "minText",
- "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": "s:13ApptentiveKit15SurveyViewModelC13RangeQuestionC7minTextSSSgvp",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC13RangeQuestionC7minTextSSSgvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "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": "s:13ApptentiveKit15SurveyViewModelC13RangeQuestionC7minTextSSSgvg",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC13RangeQuestionC7minTextSSSgvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "maxText",
- "printedName": "maxText",
- "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": "s:13ApptentiveKit15SurveyViewModelC13RangeQuestionC7maxTextSSSgvp",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC13RangeQuestionC7maxTextSSSgvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "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": "s:13ApptentiveKit15SurveyViewModelC13RangeQuestionC7maxTextSSSgvg",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC13RangeQuestionC7maxTextSSSgvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "selectedValueIndex",
- "printedName": "selectedValueIndex",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.Int?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit15SurveyViewModelC13RangeQuestionC18selectedValueIndexSiSgvp",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC13RangeQuestionC18selectedValueIndexSiSgvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "SetterAccess",
- "AccessControl",
- "RawDocComment"
- ],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.Int?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit15SurveyViewModelC13RangeQuestionC18selectedValueIndexSiSgvg",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC13RangeQuestionC18selectedValueIndexSiSgvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "value",
- "printedName": "value",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.Int?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit15SurveyViewModelC13RangeQuestionC5valueSiSgvp",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC13RangeQuestionC5valueSiSgvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.Int?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit15SurveyViewModelC13RangeQuestionC5valueSiSgvg",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC13RangeQuestionC5valueSiSgvg",
- "moduleName": "ApptentiveKit",
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "choiceLabels",
- "printedName": "choiceLabels",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Array",
- "printedName": "[Swift.String]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sa"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit15SurveyViewModelC13RangeQuestionC12choiceLabelsSaySSGvp",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC13RangeQuestionC12choiceLabelsSaySSGvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Array",
- "printedName": "[Swift.String]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sa"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit15SurveyViewModelC13RangeQuestionC12choiceLabelsSaySSGvg",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC13RangeQuestionC12choiceLabelsSaySSGvg",
- "moduleName": "ApptentiveKit",
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Function",
- "name": "selectValue",
- "printedName": "selectValue(at:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit15SurveyViewModelC13RangeQuestionC11selectValue2atySi_tF",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC13RangeQuestionC11selectValue2atySi_tF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Var",
- "name": "accessibilityHintForSegment",
- "printedName": "accessibilityHintForSegment",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit15SurveyViewModelC13RangeQuestionC27accessibilityHintForSegmentSSvp",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC13RangeQuestionC27accessibilityHintForSegmentSSvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit15SurveyViewModelC13RangeQuestionC27accessibilityHintForSegmentSSvg",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC13RangeQuestionC27accessibilityHintForSegmentSSvg",
- "moduleName": "ApptentiveKit",
- "accessorKind": "get"
- }
- ]
- }
- ],
- "declKind": "Class",
- "usr": "s:13ApptentiveKit15SurveyViewModelC13RangeQuestionC",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC13RangeQuestionC",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "superclassUsr": "s:13ApptentiveKit15SurveyViewModelC8QuestionC",
- "hasMissingDesignatedInitializers": true,
- "inheritsConvenienceInitializers": true,
- "superclassNames": [
- "ApptentiveKit.SurveyViewModel.Question"
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "ChoiceQuestion",
- "printedName": "ChoiceQuestion",
- "children": [
- {
- "kind": "Var",
- "name": "choices",
- "printedName": "choices",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Array",
- "printedName": "[ApptentiveKit.SurveyViewModel.ChoiceQuestion.Choice]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Choice",
- "printedName": "ApptentiveKit.SurveyViewModel.ChoiceQuestion.Choice",
- "usr": "s:13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC0F0C"
- }
- ],
- "usr": "s:Sa"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC7choicesSayAE0F0CGvp",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC7choicesSayAE0F0CGvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Array",
- "printedName": "[ApptentiveKit.SurveyViewModel.ChoiceQuestion.Choice]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Choice",
- "printedName": "ApptentiveKit.SurveyViewModel.ChoiceQuestion.Choice",
- "usr": "s:13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC0F0C"
- }
- ],
- "usr": "s:Sa"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC7choicesSayAE0F0CGvg",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC7choicesSayAE0F0CGvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Function",
- "name": "toggleChoice",
- "printedName": "toggleChoice(at:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC06toggleF02atySi_tF",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC06toggleF02atySi_tF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Var",
- "name": "selectionStyle",
- "printedName": "selectionStyle",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "SelectionStyle",
- "printedName": "ApptentiveKit.SurveyViewModel.ChoiceQuestion.SelectionStyle",
- "usr": "s:13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC14SelectionStyleO"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC14selectionStyleAE09SelectionI0Ovp",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC14selectionStyleAE09SelectionI0Ovp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "SelectionStyle",
- "printedName": "ApptentiveKit.SurveyViewModel.ChoiceQuestion.SelectionStyle",
- "usr": "s:13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC14SelectionStyleO"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC14selectionStyleAE09SelectionI0Ovg",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC14selectionStyleAE09SelectionI0Ovg",
- "moduleName": "ApptentiveKit",
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "SelectionStyle",
- "printedName": "SelectionStyle",
- "children": [
- {
- "kind": "Var",
- "name": "checkbox",
- "printedName": "checkbox",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.SurveyViewModel.ChoiceQuestion.SelectionStyle.Type) -> ApptentiveKit.SurveyViewModel.ChoiceQuestion.SelectionStyle",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "SelectionStyle",
- "printedName": "ApptentiveKit.SurveyViewModel.ChoiceQuestion.SelectionStyle",
- "usr": "s:13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC14SelectionStyleO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.SurveyViewModel.ChoiceQuestion.SelectionStyle.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "SelectionStyle",
- "printedName": "ApptentiveKit.SurveyViewModel.ChoiceQuestion.SelectionStyle",
- "usr": "s:13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC14SelectionStyleO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC14SelectionStyleO8checkboxyA2GmF",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC14SelectionStyleO8checkboxyA2GmF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "radioButton",
- "printedName": "radioButton",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.SurveyViewModel.ChoiceQuestion.SelectionStyle.Type) -> ApptentiveKit.SurveyViewModel.ChoiceQuestion.SelectionStyle",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "SelectionStyle",
- "printedName": "ApptentiveKit.SurveyViewModel.ChoiceQuestion.SelectionStyle",
- "usr": "s:13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC14SelectionStyleO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.SurveyViewModel.ChoiceQuestion.SelectionStyle.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "SelectionStyle",
- "printedName": "ApptentiveKit.SurveyViewModel.ChoiceQuestion.SelectionStyle",
- "usr": "s:13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC14SelectionStyleO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC14SelectionStyleO11radioButtonyA2GmF",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC14SelectionStyleO11radioButtonyA2GmF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Function",
- "name": "==",
- "printedName": "==(_:_:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- },
- {
- "kind": "TypeNominal",
- "name": "SelectionStyle",
- "printedName": "ApptentiveKit.SurveyViewModel.ChoiceQuestion.SelectionStyle",
- "usr": "s:13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC14SelectionStyleO"
- },
- {
- "kind": "TypeNominal",
- "name": "SelectionStyle",
- "printedName": "ApptentiveKit.SurveyViewModel.ChoiceQuestion.SelectionStyle",
- "usr": "s:13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC14SelectionStyleO"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC14SelectionStyleO2eeoiySbAG_AGtFZ",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC14SelectionStyleO2eeoiySbAG_AGtFZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Var",
- "name": "hashValue",
- "printedName": "hashValue",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC14SelectionStyleO9hashValueSivp",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC14SelectionStyleO9hashValueSivp",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC14SelectionStyleO9hashValueSivg",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC14SelectionStyleO9hashValueSivg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Function",
- "name": "hash",
- "printedName": "hash(into:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Hasher",
- "printedName": "Swift.Hasher",
- "paramValueOwnership": "InOut",
- "usr": "s:s6HasherV"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC14SelectionStyleO4hash4intoys6HasherVz_tF",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC14SelectionStyleO4hash4intoys6HasherVz_tF",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "funcSelfKind": "NonMutating"
- }
- ],
- "declKind": "Enum",
- "usr": "s:13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC14SelectionStyleO",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC14SelectionStyleO",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "conformances": [
- {
- "kind": "Conformance",
- "name": "Equatable",
- "printedName": "Equatable",
- "usr": "s:SQ",
- "mangledName": "$sSQ"
- },
- {
- "kind": "Conformance",
- "name": "Hashable",
- "printedName": "Hashable",
- "usr": "s:SH",
- "mangledName": "$sSH"
- }
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "Choice",
- "printedName": "Choice",
- "children": [
- {
- "kind": "Var",
- "name": "label",
- "printedName": "label",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC0F0C5labelSSvp",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC0F0C5labelSSvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC0F0C5labelSSvg",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC0F0C5labelSSvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "placeholderText",
- "printedName": "placeholderText",
- "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": "s:13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC0F0C15placeholderTextSSSgvp",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC0F0C15placeholderTextSSSgvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "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": "s:13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC0F0C15placeholderTextSSSgvg",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC0F0C15placeholderTextSSSgvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "supportsOther",
- "printedName": "supportsOther",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC0F0C13supportsOtherSbvp",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC0F0C13supportsOtherSbvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC0F0C13supportsOtherSbvg",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC0F0C13supportsOtherSbvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "isSelected",
- "printedName": "isSelected",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC0F0C10isSelectedSbvp",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC0F0C10isSelectedSbvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "HasStorage",
- "SetterAccess",
- "AccessControl",
- "RawDocComment"
- ],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC0F0C10isSelectedSbvg",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC0F0C10isSelectedSbvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "isMarkedAsInvalid",
- "printedName": "isMarkedAsInvalid",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC0F0C17isMarkedAsInvalidSbvp",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC0F0C17isMarkedAsInvalidSbvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "HasStorage",
- "SetterAccess",
- "AccessControl",
- "RawDocComment"
- ],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC0F0C17isMarkedAsInvalidSbvg",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC0F0C17isMarkedAsInvalidSbvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "value",
- "printedName": "value",
- "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": "s:13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC0F0C5valueSSSgvp",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC0F0C5valueSSSgvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC0F0C5valueSSSgvg",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC0F0C5valueSSSgvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "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": "s:13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC0F0C5valueSSSgvs",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC0F0C5valueSSSgvs",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC0F0C5valueSSSgvM",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC0F0C5valueSSSgvM",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "_modify"
- }
- ]
- }
- ],
- "declKind": "Class",
- "usr": "s:13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC0F0C",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC0F0C",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "hasMissingDesignatedInitializers": true
- }
- ],
- "declKind": "Class",
- "usr": "s:13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC14ChoiceQuestionC",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "superclassUsr": "s:13ApptentiveKit15SurveyViewModelC8QuestionC",
- "hasMissingDesignatedInitializers": true,
- "inheritsConvenienceInitializers": true,
- "superclassNames": [
- "ApptentiveKit.SurveyViewModel.Question"
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "Page",
- "printedName": "Page",
- "children": [
- {
- "kind": "Var",
- "name": "id",
- "printedName": "id",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit15SurveyViewModelC4PageC2idSSvp",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC4PageC2idSSvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit15SurveyViewModelC4PageC2idSSvg",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC4PageC2idSSvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "description",
- "printedName": "description",
- "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": "s:13ApptentiveKit15SurveyViewModelC4PageC11descriptionSSSgvp",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC4PageC11descriptionSSSgvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "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": "s:13ApptentiveKit15SurveyViewModelC4PageC11descriptionSSSgvg",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC4PageC11descriptionSSSgvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "questions",
- "printedName": "questions",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Array",
- "printedName": "[ApptentiveKit.SurveyViewModel.Question]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Question",
- "printedName": "ApptentiveKit.SurveyViewModel.Question",
- "usr": "s:13ApptentiveKit15SurveyViewModelC8QuestionC"
- }
- ],
- "usr": "s:Sa"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit15SurveyViewModelC4PageC9questionsSayAC8QuestionCGvp",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC4PageC9questionsSayAC8QuestionCGvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Array",
- "printedName": "[ApptentiveKit.SurveyViewModel.Question]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Question",
- "printedName": "ApptentiveKit.SurveyViewModel.Question",
- "usr": "s:13ApptentiveKit15SurveyViewModelC8QuestionC"
- }
- ],
- "usr": "s:Sa"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit15SurveyViewModelC4PageC9questionsSayAC8QuestionCGvg",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC4PageC9questionsSayAC8QuestionCGvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "advanceButtonLabel",
- "printedName": "advanceButtonLabel",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit15SurveyViewModelC4PageC18advanceButtonLabelSSvp",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC4PageC18advanceButtonLabelSSvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit15SurveyViewModelC4PageC18advanceButtonLabelSSvg",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC4PageC18advanceButtonLabelSSvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "pageIndicatorValue",
- "printedName": "pageIndicatorValue",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.Int?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit15SurveyViewModelC4PageC18pageIndicatorValueSiSgvp",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC4PageC18pageIndicatorValueSiSgvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.Int?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit15SurveyViewModelC4PageC18pageIndicatorValueSiSgvg",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC4PageC18pageIndicatorValueSiSgvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- }
- ],
- "declKind": "Class",
- "usr": "s:13ApptentiveKit15SurveyViewModelC4PageC",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC4PageC",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasMissingDesignatedInitializers": true
- },
- {
- "kind": "TypeDecl",
- "name": "Question",
- "printedName": "Question",
- "children": [
- {
- "kind": "Var",
- "name": "text",
- "printedName": "text",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit15SurveyViewModelC8QuestionC4textSSvp",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC8QuestionC4textSSvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "HasStorage",
- "Final",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit15SurveyViewModelC8QuestionC4textSSvg",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC8QuestionC4textSSvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "isRequired",
- "printedName": "isRequired",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit15SurveyViewModelC8QuestionC10isRequiredSbvp",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC8QuestionC10isRequiredSbvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "HasStorage",
- "Final",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit15SurveyViewModelC8QuestionC10isRequiredSbvg",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC8QuestionC10isRequiredSbvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "requiredText",
- "printedName": "requiredText",
- "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": "s:13ApptentiveKit15SurveyViewModelC8QuestionC12requiredTextSSSgvp",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC8QuestionC12requiredTextSSSgvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "HasStorage",
- "Final",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "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": "s:13ApptentiveKit15SurveyViewModelC8QuestionC12requiredTextSSSgvg",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC8QuestionC12requiredTextSSSgvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "errorMessage",
- "printedName": "errorMessage",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit15SurveyViewModelC8QuestionC12errorMessageSSvp",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC8QuestionC12errorMessageSSvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "HasStorage",
- "Final",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit15SurveyViewModelC8QuestionC12errorMessageSSvg",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC8QuestionC12errorMessageSSvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "instructions",
- "printedName": "instructions",
- "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": "s:13ApptentiveKit15SurveyViewModelC8QuestionC12instructionsSSSgvp",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC8QuestionC12instructionsSSSgvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "HasStorage",
- "Final",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "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": "s:13ApptentiveKit15SurveyViewModelC8QuestionC12instructionsSSSgvg",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC8QuestionC12instructionsSSSgvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "isMarkedAsInvalid",
- "printedName": "isMarkedAsInvalid",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit15SurveyViewModelC8QuestionC17isMarkedAsInvalidSbvp",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC8QuestionC17isMarkedAsInvalidSbvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit15SurveyViewModelC8QuestionC17isMarkedAsInvalidSbvg",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC8QuestionC17isMarkedAsInvalidSbvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "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": "s:13ApptentiveKit15SurveyViewModelC8QuestionC17isMarkedAsInvalidSbvs",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC8QuestionC17isMarkedAsInvalidSbvs",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit15SurveyViewModelC8QuestionC17isMarkedAsInvalidSbvM",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC8QuestionC17isMarkedAsInvalidSbvM",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "accessibilityLabel",
- "printedName": "accessibilityLabel",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit15SurveyViewModelC8QuestionC18accessibilityLabelSSvp",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC8QuestionC18accessibilityLabelSSvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit15SurveyViewModelC8QuestionC18accessibilityLabelSSvg",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC8QuestionC18accessibilityLabelSSvg",
- "moduleName": "ApptentiveKit",
- "accessorKind": "get"
- }
- ]
- }
- ],
- "declKind": "Class",
- "usr": "s:13ApptentiveKit15SurveyViewModelC8QuestionC",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC8QuestionC",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasMissingDesignatedInitializers": true
- },
- {
- "kind": "TypeDecl",
- "name": "FreeformQuestion",
- "printedName": "FreeformQuestion",
- "children": [
- {
- "kind": "Var",
- "name": "placeholderText",
- "printedName": "placeholderText",
- "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": "s:13ApptentiveKit15SurveyViewModelC16FreeformQuestionC15placeholderTextSSSgvp",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC16FreeformQuestionC15placeholderTextSSSgvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "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": "s:13ApptentiveKit15SurveyViewModelC16FreeformQuestionC15placeholderTextSSSgvg",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC16FreeformQuestionC15placeholderTextSSSgvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "allowMultipleLines",
- "printedName": "allowMultipleLines",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit15SurveyViewModelC16FreeformQuestionC18allowMultipleLinesSbvp",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC16FreeformQuestionC18allowMultipleLinesSbvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit15SurveyViewModelC16FreeformQuestionC18allowMultipleLinesSbvg",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC16FreeformQuestionC18allowMultipleLinesSbvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "value",
- "printedName": "value",
- "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": "s:13ApptentiveKit15SurveyViewModelC16FreeformQuestionC5valueSSSgvp",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC16FreeformQuestionC5valueSSSgvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit15SurveyViewModelC16FreeformQuestionC5valueSSSgvg",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC16FreeformQuestionC5valueSSSgvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "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": "s:13ApptentiveKit15SurveyViewModelC16FreeformQuestionC5valueSSSgvs",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC16FreeformQuestionC5valueSSSgvs",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit15SurveyViewModelC16FreeformQuestionC5valueSSSgvM",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC16FreeformQuestionC5valueSSSgvM",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "_modify"
- }
- ]
- }
- ],
- "declKind": "Class",
- "usr": "s:13ApptentiveKit15SurveyViewModelC16FreeformQuestionC",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC16FreeformQuestionC",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "superclassUsr": "s:13ApptentiveKit15SurveyViewModelC8QuestionC",
- "hasMissingDesignatedInitializers": true,
- "inheritsConvenienceInitializers": true,
- "superclassNames": [
- "ApptentiveKit.SurveyViewModel.Question"
- ]
- }
- ],
- "declKind": "Class",
- "usr": "s:13ApptentiveKit15SurveyViewModelC",
- "mangledName": "$s13ApptentiveKit15SurveyViewModelC",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "hasMissingDesignatedInitializers": true
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "UIKit",
- "printedName": "UIKit",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "UIKit",
- "printedName": "UIKit",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "UIKit",
- "printedName": "UIKit",
- "declKind": "Import",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "TypeDecl",
- "name": "MessageCenterViewModelDelegate",
- "printedName": "MessageCenterViewModelDelegate",
- "children": [
- {
- "kind": "Function",
- "name": "messageCenterViewModelDidBeginUpdates",
- "printedName": "messageCenterViewModelDidBeginUpdates(_:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "MessageCenterViewModel",
- "printedName": "ApptentiveKit.MessageCenterViewModel",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit30MessageCenterViewModelDelegateP07messagedeF15DidBeginUpdatesyyAA0cdeF0CF",
- "mangledName": "$s13ApptentiveKit30MessageCenterViewModelDelegateP07messagedeF15DidBeginUpdatesyyAA0cdeF0CF",
- "moduleName": "ApptentiveKit",
- "genericSig": "<τ_0_0 where τ_0_0 : ApptentiveKit.MessageCenterViewModelDelegate>",
- "sugared_genericSig": "",
- "protocolReq": true,
- "reqNewWitnessTableEntry": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "messageCenterViewModel",
- "printedName": "messageCenterViewModel(_:didInsertSectionsWith:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "MessageCenterViewModel",
- "printedName": "ApptentiveKit.MessageCenterViewModel",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC"
- },
- {
- "kind": "TypeNominal",
- "name": "IndexSet",
- "printedName": "Foundation.IndexSet",
- "usr": "s:10Foundation8IndexSetV"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit30MessageCenterViewModelDelegateP07messagedeF0_21didInsertSectionsWithyAA0cdeF0C_10Foundation8IndexSetVtF",
- "mangledName": "$s13ApptentiveKit30MessageCenterViewModelDelegateP07messagedeF0_21didInsertSectionsWithyAA0cdeF0C_10Foundation8IndexSetVtF",
- "moduleName": "ApptentiveKit",
- "genericSig": "<τ_0_0 where τ_0_0 : ApptentiveKit.MessageCenterViewModelDelegate>",
- "sugared_genericSig": "",
- "protocolReq": true,
- "reqNewWitnessTableEntry": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "messageCenterViewModel",
- "printedName": "messageCenterViewModel(_:didDeleteSectionsWith:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "MessageCenterViewModel",
- "printedName": "ApptentiveKit.MessageCenterViewModel",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC"
- },
- {
- "kind": "TypeNominal",
- "name": "IndexSet",
- "printedName": "Foundation.IndexSet",
- "usr": "s:10Foundation8IndexSetV"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit30MessageCenterViewModelDelegateP07messagedeF0_21didDeleteSectionsWithyAA0cdeF0C_10Foundation8IndexSetVtF",
- "mangledName": "$s13ApptentiveKit30MessageCenterViewModelDelegateP07messagedeF0_21didDeleteSectionsWithyAA0cdeF0C_10Foundation8IndexSetVtF",
- "moduleName": "ApptentiveKit",
- "genericSig": "<τ_0_0 where τ_0_0 : ApptentiveKit.MessageCenterViewModelDelegate>",
- "sugared_genericSig": "",
- "protocolReq": true,
- "reqNewWitnessTableEntry": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "messageCenterViewModel",
- "printedName": "messageCenterViewModel(_:didDeleteRowsAt:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "MessageCenterViewModel",
- "printedName": "ApptentiveKit.MessageCenterViewModel",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC"
- },
- {
- "kind": "TypeNominal",
- "name": "Array",
- "printedName": "[Foundation.IndexPath]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "IndexPath",
- "printedName": "Foundation.IndexPath",
- "usr": "s:10Foundation9IndexPathV"
- }
- ],
- "usr": "s:Sa"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit30MessageCenterViewModelDelegateP07messagedeF0_15didDeleteRowsAtyAA0cdeF0C_Say10Foundation9IndexPathVGtF",
- "mangledName": "$s13ApptentiveKit30MessageCenterViewModelDelegateP07messagedeF0_15didDeleteRowsAtyAA0cdeF0C_Say10Foundation9IndexPathVGtF",
- "moduleName": "ApptentiveKit",
- "genericSig": "<τ_0_0 where τ_0_0 : ApptentiveKit.MessageCenterViewModelDelegate>",
- "sugared_genericSig": "",
- "protocolReq": true,
- "reqNewWitnessTableEntry": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "messageCenterViewModel",
- "printedName": "messageCenterViewModel(_:didUpdateRowsAt:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "MessageCenterViewModel",
- "printedName": "ApptentiveKit.MessageCenterViewModel",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC"
- },
- {
- "kind": "TypeNominal",
- "name": "Array",
- "printedName": "[Foundation.IndexPath]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "IndexPath",
- "printedName": "Foundation.IndexPath",
- "usr": "s:10Foundation9IndexPathV"
- }
- ],
- "usr": "s:Sa"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit30MessageCenterViewModelDelegateP07messagedeF0_15didUpdateRowsAtyAA0cdeF0C_Say10Foundation9IndexPathVGtF",
- "mangledName": "$s13ApptentiveKit30MessageCenterViewModelDelegateP07messagedeF0_15didUpdateRowsAtyAA0cdeF0C_Say10Foundation9IndexPathVGtF",
- "moduleName": "ApptentiveKit",
- "genericSig": "<τ_0_0 where τ_0_0 : ApptentiveKit.MessageCenterViewModelDelegate>",
- "sugared_genericSig": "",
- "protocolReq": true,
- "reqNewWitnessTableEntry": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "messageCenterViewModel",
- "printedName": "messageCenterViewModel(_:didInsertRowsAt:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "MessageCenterViewModel",
- "printedName": "ApptentiveKit.MessageCenterViewModel",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC"
- },
- {
- "kind": "TypeNominal",
- "name": "Array",
- "printedName": "[Foundation.IndexPath]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "IndexPath",
- "printedName": "Foundation.IndexPath",
- "usr": "s:10Foundation9IndexPathV"
- }
- ],
- "usr": "s:Sa"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit30MessageCenterViewModelDelegateP07messagedeF0_15didInsertRowsAtyAA0cdeF0C_Say10Foundation9IndexPathVGtF",
- "mangledName": "$s13ApptentiveKit30MessageCenterViewModelDelegateP07messagedeF0_15didInsertRowsAtyAA0cdeF0C_Say10Foundation9IndexPathVGtF",
- "moduleName": "ApptentiveKit",
- "genericSig": "<τ_0_0 where τ_0_0 : ApptentiveKit.MessageCenterViewModelDelegate>",
- "sugared_genericSig": "",
- "protocolReq": true,
- "reqNewWitnessTableEntry": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "messageCenterViewModel",
- "printedName": "messageCenterViewModel(_:didMoveRowsAt:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "MessageCenterViewModel",
- "printedName": "ApptentiveKit.MessageCenterViewModel",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC"
- },
- {
- "kind": "TypeNominal",
- "name": "Array",
- "printedName": "[(Foundation.IndexPath, Foundation.IndexPath)]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Tuple",
- "printedName": "(Foundation.IndexPath, Foundation.IndexPath)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "IndexPath",
- "printedName": "Foundation.IndexPath",
- "usr": "s:10Foundation9IndexPathV"
- },
- {
- "kind": "TypeNominal",
- "name": "IndexPath",
- "printedName": "Foundation.IndexPath",
- "usr": "s:10Foundation9IndexPathV"
- }
- ]
- }
- ],
- "usr": "s:Sa"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit30MessageCenterViewModelDelegateP07messagedeF0_13didMoveRowsAtyAA0cdeF0C_Say10Foundation9IndexPathV_AJtGtF",
- "mangledName": "$s13ApptentiveKit30MessageCenterViewModelDelegateP07messagedeF0_13didMoveRowsAtyAA0cdeF0C_Say10Foundation9IndexPathV_AJtGtF",
- "moduleName": "ApptentiveKit",
- "genericSig": "<τ_0_0 where τ_0_0 : ApptentiveKit.MessageCenterViewModelDelegate>",
- "sugared_genericSig": "",
- "protocolReq": true,
- "reqNewWitnessTableEntry": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "messageCenterViewModelDidEndUpdates",
- "printedName": "messageCenterViewModelDidEndUpdates(_:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "MessageCenterViewModel",
- "printedName": "ApptentiveKit.MessageCenterViewModel",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit30MessageCenterViewModelDelegateP07messagedeF13DidEndUpdatesyyAA0cdeF0CF",
- "mangledName": "$s13ApptentiveKit30MessageCenterViewModelDelegateP07messagedeF13DidEndUpdatesyyAA0cdeF0CF",
- "moduleName": "ApptentiveKit",
- "genericSig": "<τ_0_0 where τ_0_0 : ApptentiveKit.MessageCenterViewModelDelegate>",
- "sugared_genericSig": "",
- "protocolReq": true,
- "reqNewWitnessTableEntry": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "messageCenterViewModelMessageListDidLoad",
- "printedName": "messageCenterViewModelMessageListDidLoad(_:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "MessageCenterViewModel",
- "printedName": "ApptentiveKit.MessageCenterViewModel",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit30MessageCenterViewModelDelegateP07messagedefC11ListDidLoadyyAA0cdeF0CF",
- "mangledName": "$s13ApptentiveKit30MessageCenterViewModelDelegateP07messagedefC11ListDidLoadyyAA0cdeF0CF",
- "moduleName": "ApptentiveKit",
- "genericSig": "<τ_0_0 where τ_0_0 : ApptentiveKit.MessageCenterViewModelDelegate>",
- "sugared_genericSig": "",
- "protocolReq": true,
- "reqNewWitnessTableEntry": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "messageCenterViewModelDraftMessageDidUpdate",
- "printedName": "messageCenterViewModelDraftMessageDidUpdate(_:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "MessageCenterViewModel",
- "printedName": "ApptentiveKit.MessageCenterViewModel",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit30MessageCenterViewModelDelegateP07messagedef5DraftC9DidUpdateyyAA0cdeF0CF",
- "mangledName": "$s13ApptentiveKit30MessageCenterViewModelDelegateP07messagedef5DraftC9DidUpdateyyAA0cdeF0CF",
- "moduleName": "ApptentiveKit",
- "genericSig": "<τ_0_0 where τ_0_0 : ApptentiveKit.MessageCenterViewModelDelegate>",
- "sugared_genericSig": "",
- "protocolReq": true,
- "reqNewWitnessTableEntry": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "messageCenterViewModel",
- "printedName": "messageCenterViewModel(_:didFailToRemoveAttachmentAt:with:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "MessageCenterViewModel",
- "printedName": "ApptentiveKit.MessageCenterViewModel",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC"
- },
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- },
- {
- "kind": "TypeNominal",
- "name": "Error",
- "printedName": "Swift.Error",
- "usr": "s:s5ErrorP"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit30MessageCenterViewModelDelegateP07messagedeF0_27didFailToRemoveAttachmentAt4withyAA0cdeF0C_Sis5Error_ptF",
- "mangledName": "$s13ApptentiveKit30MessageCenterViewModelDelegateP07messagedeF0_27didFailToRemoveAttachmentAt4withyAA0cdeF0C_Sis5Error_ptF",
- "moduleName": "ApptentiveKit",
- "genericSig": "<τ_0_0 where τ_0_0 : ApptentiveKit.MessageCenterViewModelDelegate>",
- "sugared_genericSig": "",
- "protocolReq": true,
- "reqNewWitnessTableEntry": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "messageCenterViewModel",
- "printedName": "messageCenterViewModel(_:didFailToAddAttachmentWith:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "MessageCenterViewModel",
- "printedName": "ApptentiveKit.MessageCenterViewModel",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC"
- },
- {
- "kind": "TypeNominal",
- "name": "Error",
- "printedName": "Swift.Error",
- "usr": "s:s5ErrorP"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit30MessageCenterViewModelDelegateP07messagedeF0_26didFailToAddAttachmentWithyAA0cdeF0C_s5Error_ptF",
- "mangledName": "$s13ApptentiveKit30MessageCenterViewModelDelegateP07messagedeF0_26didFailToAddAttachmentWithyAA0cdeF0C_s5Error_ptF",
- "moduleName": "ApptentiveKit",
- "genericSig": "<τ_0_0 where τ_0_0 : ApptentiveKit.MessageCenterViewModelDelegate>",
- "sugared_genericSig": "",
- "protocolReq": true,
- "reqNewWitnessTableEntry": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "messageCenterViewModel",
- "printedName": "messageCenterViewModel(_:didFailToSendMessageWith:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "MessageCenterViewModel",
- "printedName": "ApptentiveKit.MessageCenterViewModel",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC"
- },
- {
- "kind": "TypeNominal",
- "name": "Error",
- "printedName": "Swift.Error",
- "usr": "s:s5ErrorP"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit30MessageCenterViewModelDelegateP07messagedeF0_013didFailToSendC4WithyAA0cdeF0C_s5Error_ptF",
- "mangledName": "$s13ApptentiveKit30MessageCenterViewModelDelegateP07messagedeF0_013didFailToSendC4WithyAA0cdeF0C_s5Error_ptF",
- "moduleName": "ApptentiveKit",
- "genericSig": "<τ_0_0 where τ_0_0 : ApptentiveKit.MessageCenterViewModelDelegate>",
- "sugared_genericSig": "",
- "protocolReq": true,
- "reqNewWitnessTableEntry": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "messageCenterViewModel",
- "printedName": "messageCenterViewModel(_:attachmentDownloadDidFinishAt:inMessageAt:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "MessageCenterViewModel",
- "printedName": "ApptentiveKit.MessageCenterViewModel",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC"
- },
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- },
- {
- "kind": "TypeNominal",
- "name": "IndexPath",
- "printedName": "Foundation.IndexPath",
- "usr": "s:10Foundation9IndexPathV"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit30MessageCenterViewModelDelegateP07messagedeF0_29attachmentDownloadDidFinishAt02incM0yAA0cdeF0C_Si10Foundation9IndexPathVtF",
- "mangledName": "$s13ApptentiveKit30MessageCenterViewModelDelegateP07messagedeF0_29attachmentDownloadDidFinishAt02incM0yAA0cdeF0C_Si10Foundation9IndexPathVtF",
- "moduleName": "ApptentiveKit",
- "genericSig": "<τ_0_0 where τ_0_0 : ApptentiveKit.MessageCenterViewModelDelegate>",
- "sugared_genericSig": "",
- "protocolReq": true,
- "reqNewWitnessTableEntry": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "messageCenterViewModel",
- "printedName": "messageCenterViewModel(_:attachmentDownloadDidFailAt:inMessageAt:with:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "MessageCenterViewModel",
- "printedName": "ApptentiveKit.MessageCenterViewModel",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC"
- },
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- },
- {
- "kind": "TypeNominal",
- "name": "IndexPath",
- "printedName": "Foundation.IndexPath",
- "usr": "s:10Foundation9IndexPathV"
- },
- {
- "kind": "TypeNominal",
- "name": "Error",
- "printedName": "Swift.Error",
- "usr": "s:s5ErrorP"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit30MessageCenterViewModelDelegateP07messagedeF0_27attachmentDownloadDidFailAt02incM04withyAA0cdeF0C_Si10Foundation9IndexPathVs5Error_ptF",
- "mangledName": "$s13ApptentiveKit30MessageCenterViewModelDelegateP07messagedeF0_27attachmentDownloadDidFailAt02incM04withyAA0cdeF0C_Si10Foundation9IndexPathVs5Error_ptF",
- "moduleName": "ApptentiveKit",
- "genericSig": "<τ_0_0 where τ_0_0 : ApptentiveKit.MessageCenterViewModelDelegate>",
- "sugared_genericSig": "",
- "protocolReq": true,
- "reqNewWitnessTableEntry": true,
- "funcSelfKind": "NonMutating"
- }
- ],
- "declKind": "Protocol",
- "usr": "s:13ApptentiveKit30MessageCenterViewModelDelegateP",
- "mangledName": "$s13ApptentiveKit30MessageCenterViewModelDelegateP",
- "moduleName": "ApptentiveKit",
- "genericSig": "<τ_0_0 : AnyObject>",
- "sugared_genericSig": "",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "MessageCenterViewModel",
- "printedName": "MessageCenterViewModel",
- "children": [
- {
- "kind": "Var",
- "name": "headingTitle",
- "printedName": "headingTitle",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC12headingTitleSSvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC12headingTitleSSvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC12headingTitleSSvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC12headingTitleSSvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "branding",
- "printedName": "branding",
- "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": "s:13ApptentiveKit22MessageCenterViewModelC8brandingSSSgvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC8brandingSSSgvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "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": "s:13ApptentiveKit22MessageCenterViewModelC8brandingSSSgvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC8brandingSSSgvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "composerTitle",
- "printedName": "composerTitle",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC13composerTitleSSvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC13composerTitleSSvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC13composerTitleSSvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC13composerTitleSSvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "composerSendButtonTitle",
- "printedName": "composerSendButtonTitle",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC23composerSendButtonTitleSSvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC23composerSendButtonTitleSSvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC23composerSendButtonTitleSSvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC23composerSendButtonTitleSSvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "composerAttachButtonTitle",
- "printedName": "composerAttachButtonTitle",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC25composerAttachButtonTitleSSvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC25composerAttachButtonTitleSSvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC25composerAttachButtonTitleSSvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC25composerAttachButtonTitleSSvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "composerPlaceholderText",
- "printedName": "composerPlaceholderText",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC23composerPlaceholderTextSSvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC23composerPlaceholderTextSSvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC23composerPlaceholderTextSSvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC23composerPlaceholderTextSSvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "composerCloseConfirmBody",
- "printedName": "composerCloseConfirmBody",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC24composerCloseConfirmBodySSvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC24composerCloseConfirmBodySSvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC24composerCloseConfirmBodySSvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC24composerCloseConfirmBodySSvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "composerCloseDiscardButtonTitle",
- "printedName": "composerCloseDiscardButtonTitle",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC31composerCloseDiscardButtonTitleSSvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC31composerCloseDiscardButtonTitleSSvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC31composerCloseDiscardButtonTitleSSvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC31composerCloseDiscardButtonTitleSSvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "composerCloseCancelButtonTitle",
- "printedName": "composerCloseCancelButtonTitle",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC30composerCloseCancelButtonTitleSSvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC30composerCloseCancelButtonTitleSSvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC30composerCloseCancelButtonTitleSSvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC30composerCloseCancelButtonTitleSSvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "greetingTitle",
- "printedName": "greetingTitle",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC13greetingTitleSSvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC13greetingTitleSSvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC13greetingTitleSSvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC13greetingTitleSSvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "greetingBody",
- "printedName": "greetingBody",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC12greetingBodySSvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC12greetingBodySSvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC12greetingBodySSvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC12greetingBodySSvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "greetingImageURL",
- "printedName": "greetingImageURL",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "URL",
- "printedName": "Foundation.URL",
- "usr": "s:10Foundation3URLV"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC16greetingImageURL10Foundation0I0Vvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC16greetingImageURL10Foundation0I0Vvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "URL",
- "printedName": "Foundation.URL",
- "usr": "s:10Foundation3URLV"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC16greetingImageURL10Foundation0I0Vvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC16greetingImageURL10Foundation0I0Vvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "statusBody",
- "printedName": "statusBody",
- "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": "s:13ApptentiveKit22MessageCenterViewModelC10statusBodySSSgvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC10statusBodySSSgvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "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": "s:13ApptentiveKit22MessageCenterViewModelC10statusBodySSSgvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC10statusBodySSSgvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "groupedMessages",
- "printedName": "groupedMessages",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Array",
- "printedName": "[[ApptentiveKit.MessageCenterViewModel.Message]]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Array",
- "printedName": "[ApptentiveKit.MessageCenterViewModel.Message]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Message",
- "printedName": "ApptentiveKit.MessageCenterViewModel.Message",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C"
- }
- ],
- "usr": "s:Sa"
- }
- ],
- "usr": "s:Sa"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC15groupedMessagesSaySayAC0C0CGGvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC15groupedMessagesSaySayAC0C0CGGvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Array",
- "printedName": "[[ApptentiveKit.MessageCenterViewModel.Message]]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Array",
- "printedName": "[ApptentiveKit.MessageCenterViewModel.Message]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Message",
- "printedName": "ApptentiveKit.MessageCenterViewModel.Message",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C"
- }
- ],
- "usr": "s:Sa"
- }
- ],
- "usr": "s:Sa"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC15groupedMessagesSaySayAC0C0CGGvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC15groupedMessagesSaySayAC0C0CGGvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Array",
- "printedName": "[[ApptentiveKit.MessageCenterViewModel.Message]]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Array",
- "printedName": "[ApptentiveKit.MessageCenterViewModel.Message]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Message",
- "printedName": "ApptentiveKit.MessageCenterViewModel.Message",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C"
- }
- ],
- "usr": "s:Sa"
- }
- ],
- "usr": "s:Sa"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC15groupedMessagesSaySayAC0C0CGGvs",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC15groupedMessagesSaySayAC0C0CGGvs",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC15groupedMessagesSaySayAC0C0CGGvM",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC15groupedMessagesSaySayAC0C0CGGvM",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "hasLoadedMessages",
- "printedName": "hasLoadedMessages",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC17hasLoadedMessagesSbvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC17hasLoadedMessagesSbvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC17hasLoadedMessagesSbvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC17hasLoadedMessagesSbvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "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": "s:13ApptentiveKit22MessageCenterViewModelC17hasLoadedMessagesSbvs",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC17hasLoadedMessagesSbvs",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC17hasLoadedMessagesSbvM",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC17hasLoadedMessagesSbvM",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "thumbnailSize",
- "printedName": "thumbnailSize",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "CGSize",
- "printedName": "CoreFoundation.CGSize",
- "usr": "c:@S@CGSize"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC13thumbnailSizeSo6CGSizeVvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC13thumbnailSizeSo6CGSizeVvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "CGSize",
- "printedName": "CoreFoundation.CGSize",
- "usr": "c:@S@CGSize"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC13thumbnailSizeSo6CGSizeVvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC13thumbnailSizeSo6CGSizeVvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "CGSize",
- "printedName": "CoreFoundation.CGSize",
- "usr": "c:@S@CGSize"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC13thumbnailSizeSo6CGSizeVvs",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC13thumbnailSizeSo6CGSizeVvs",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC13thumbnailSizeSo6CGSizeVvM",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC13thumbnailSizeSo6CGSizeVvM",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "profileNamePlaceholder",
- "printedName": "profileNamePlaceholder",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC22profileNamePlaceholderSSvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC22profileNamePlaceholderSSvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC22profileNamePlaceholderSSvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC22profileNamePlaceholderSSvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "profileEmailPlaceholder",
- "printedName": "profileEmailPlaceholder",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC23profileEmailPlaceholderSSvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC23profileEmailPlaceholderSSvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC23profileEmailPlaceholderSSvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC23profileEmailPlaceholderSSvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "profileCancelButtonText",
- "printedName": "profileCancelButtonText",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC23profileCancelButtonTextSSvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC23profileCancelButtonTextSSvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC23profileCancelButtonTextSSvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC23profileCancelButtonTextSSvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "profileSaveButtonText",
- "printedName": "profileSaveButtonText",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC21profileSaveButtonTextSSvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC21profileSaveButtonTextSSvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC21profileSaveButtonTextSSvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC21profileSaveButtonTextSSvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "editProfileViewTitle",
- "printedName": "editProfileViewTitle",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC011editProfileE5TitleSSvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC011editProfileE5TitleSSvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC011editProfileE5TitleSSvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC011editProfileE5TitleSSvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "editProfileNamePlaceholder",
- "printedName": "editProfileNamePlaceholder",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC26editProfileNamePlaceholderSSvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC26editProfileNamePlaceholderSSvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC26editProfileNamePlaceholderSSvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC26editProfileNamePlaceholderSSvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "editProfileEmailPlaceholder",
- "printedName": "editProfileEmailPlaceholder",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC27editProfileEmailPlaceholderSSvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC27editProfileEmailPlaceholderSSvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC27editProfileEmailPlaceholderSSvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC27editProfileEmailPlaceholderSSvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "editProfileCancelButtonText",
- "printedName": "editProfileCancelButtonText",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC27editProfileCancelButtonTextSSvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC27editProfileCancelButtonTextSSvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC27editProfileCancelButtonTextSSvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC27editProfileCancelButtonTextSSvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "editProfileSaveButtonText",
- "printedName": "editProfileSaveButtonText",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC25editProfileSaveButtonTextSSvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC25editProfileSaveButtonTextSSvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC25editProfileSaveButtonTextSSvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC25editProfileSaveButtonTextSSvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "profileMode",
- "printedName": "profileMode",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ProfileMode",
- "printedName": "ApptentiveKit.MessageCenterViewModel.ProfileMode",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC11ProfileModeO"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC11profileModeAC07ProfileH0Ovp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC11profileModeAC07ProfileH0Ovp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ProfileMode",
- "printedName": "ApptentiveKit.MessageCenterViewModel.ProfileMode",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC11ProfileModeO"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC11profileModeAC07ProfileH0Ovg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC11profileModeAC07ProfileH0Ovg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "closeButtonAccessibilityLabel",
- "printedName": "closeButtonAccessibilityLabel",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC29closeButtonAccessibilityLabelSSvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC29closeButtonAccessibilityLabelSSvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC29closeButtonAccessibilityLabelSSvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC29closeButtonAccessibilityLabelSSvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "closeButtonAccessibilityHint",
- "printedName": "closeButtonAccessibilityHint",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC28closeButtonAccessibilityHintSSvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC28closeButtonAccessibilityHintSSvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC28closeButtonAccessibilityHintSSvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC28closeButtonAccessibilityHintSSvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "profileButtonAccessibilityLabel",
- "printedName": "profileButtonAccessibilityLabel",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC31profileButtonAccessibilityLabelSSvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC31profileButtonAccessibilityLabelSSvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC31profileButtonAccessibilityLabelSSvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC31profileButtonAccessibilityLabelSSvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "profileButtonAccessibilityHint",
- "printedName": "profileButtonAccessibilityHint",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC30profileButtonAccessibilityHintSSvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC30profileButtonAccessibilityHintSSvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC30profileButtonAccessibilityHintSSvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC30profileButtonAccessibilityHintSSvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "sendButtonAccessibilityLabel",
- "printedName": "sendButtonAccessibilityLabel",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC28sendButtonAccessibilityLabelSSvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC28sendButtonAccessibilityLabelSSvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC28sendButtonAccessibilityLabelSSvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC28sendButtonAccessibilityLabelSSvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "sendButtonAccessibilityHint",
- "printedName": "sendButtonAccessibilityHint",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC27sendButtonAccessibilityHintSSvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC27sendButtonAccessibilityHintSSvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC27sendButtonAccessibilityHintSSvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC27sendButtonAccessibilityHintSSvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "attachButtonAccessibilityLabel",
- "printedName": "attachButtonAccessibilityLabel",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC30attachButtonAccessibilityLabelSSvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC30attachButtonAccessibilityLabelSSvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC30attachButtonAccessibilityLabelSSvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC30attachButtonAccessibilityLabelSSvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "attachButtonAccessibilityHint",
- "printedName": "attachButtonAccessibilityHint",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC29attachButtonAccessibilityHintSSvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC29attachButtonAccessibilityHintSSvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC29attachButtonAccessibilityHintSSvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC29attachButtonAccessibilityHintSSvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "attachmentOptionsTitle",
- "printedName": "attachmentOptionsTitle",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC22attachmentOptionsTitleSSvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC22attachmentOptionsTitleSSvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC22attachmentOptionsTitleSSvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC22attachmentOptionsTitleSSvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "attachmentOptionsImagesButton",
- "printedName": "attachmentOptionsImagesButton",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC29attachmentOptionsImagesButtonSSvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC29attachmentOptionsImagesButtonSSvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC29attachmentOptionsImagesButtonSSvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC29attachmentOptionsImagesButtonSSvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "attachmentOptionsFilesButton",
- "printedName": "attachmentOptionsFilesButton",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC28attachmentOptionsFilesButtonSSvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC28attachmentOptionsFilesButtonSSvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC28attachmentOptionsFilesButtonSSvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC28attachmentOptionsFilesButtonSSvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "attachmentOptionsCancelButton",
- "printedName": "attachmentOptionsCancelButton",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC29attachmentOptionsCancelButtonSSvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC29attachmentOptionsCancelButtonSSvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC29attachmentOptionsCancelButtonSSvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC29attachmentOptionsCancelButtonSSvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "showAttachmentButtonAccessibilityHint",
- "printedName": "showAttachmentButtonAccessibilityHint",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC37showAttachmentButtonAccessibilityHintSSvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC37showAttachmentButtonAccessibilityHintSSvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC37showAttachmentButtonAccessibilityHintSSvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC37showAttachmentButtonAccessibilityHintSSvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "downloadAttachmentButtonAccessibilityHint",
- "printedName": "downloadAttachmentButtonAccessibilityHint",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC41downloadAttachmentButtonAccessibilityHintSSvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC41downloadAttachmentButtonAccessibilityHintSSvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC41downloadAttachmentButtonAccessibilityHintSSvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC41downloadAttachmentButtonAccessibilityHintSSvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "emailAddress",
- "printedName": "emailAddress",
- "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": "s:13ApptentiveKit22MessageCenterViewModelC12emailAddressSSSgvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC12emailAddressSSSgvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC12emailAddressSSSgvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC12emailAddressSSSgvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "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": "s:13ApptentiveKit22MessageCenterViewModelC12emailAddressSSSgvs",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC12emailAddressSSSgvs",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC12emailAddressSSSgvM",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC12emailAddressSSSgvM",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "name",
- "printedName": "name",
- "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": "s:13ApptentiveKit22MessageCenterViewModelC4nameSSSgvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC4nameSSSgvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC4nameSSSgvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC4nameSSSgvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "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": "s:13ApptentiveKit22MessageCenterViewModelC4nameSSSgvs",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC4nameSSSgvs",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC4nameSSSgvM",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC4nameSSSgvM",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "profileIsValid",
- "printedName": "profileIsValid",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC14profileIsValidSbvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC14profileIsValidSbvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC14profileIsValidSbvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC14profileIsValidSbvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "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": "s:13ApptentiveKit22MessageCenterViewModelC14profileIsValidSbvs",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC14profileIsValidSbvs",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC14profileIsValidSbvM",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC14profileIsValidSbvM",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "shouldRequestProfile",
- "printedName": "shouldRequestProfile",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC20shouldRequestProfileSbvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC20shouldRequestProfileSbvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC20shouldRequestProfileSbvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC20shouldRequestProfileSbvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "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": "s:13ApptentiveKit22MessageCenterViewModelC20shouldRequestProfileSbvs",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC20shouldRequestProfileSbvs",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC20shouldRequestProfileSbvM",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC20shouldRequestProfileSbvM",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "ProfileMode",
- "printedName": "ProfileMode",
- "children": [
- {
- "kind": "Var",
- "name": "optionalEmail",
- "printedName": "optionalEmail",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.MessageCenterViewModel.ProfileMode.Type) -> ApptentiveKit.MessageCenterViewModel.ProfileMode",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ProfileMode",
- "printedName": "ApptentiveKit.MessageCenterViewModel.ProfileMode",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC11ProfileModeO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.MessageCenterViewModel.ProfileMode.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ProfileMode",
- "printedName": "ApptentiveKit.MessageCenterViewModel.ProfileMode",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC11ProfileModeO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC11ProfileModeO13optionalEmailyA2EmF",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC11ProfileModeO13optionalEmailyA2EmF",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "Var",
- "name": "requiredEmail",
- "printedName": "requiredEmail",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.MessageCenterViewModel.ProfileMode.Type) -> ApptentiveKit.MessageCenterViewModel.ProfileMode",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ProfileMode",
- "printedName": "ApptentiveKit.MessageCenterViewModel.ProfileMode",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC11ProfileModeO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.MessageCenterViewModel.ProfileMode.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ProfileMode",
- "printedName": "ApptentiveKit.MessageCenterViewModel.ProfileMode",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC11ProfileModeO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC11ProfileModeO13requiredEmailyA2EmF",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC11ProfileModeO13requiredEmailyA2EmF",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "Var",
- "name": "hidden",
- "printedName": "hidden",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.MessageCenterViewModel.ProfileMode.Type) -> ApptentiveKit.MessageCenterViewModel.ProfileMode",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ProfileMode",
- "printedName": "ApptentiveKit.MessageCenterViewModel.ProfileMode",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC11ProfileModeO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.MessageCenterViewModel.ProfileMode.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ProfileMode",
- "printedName": "ApptentiveKit.MessageCenterViewModel.ProfileMode",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC11ProfileModeO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC11ProfileModeO6hiddenyA2EmF",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC11ProfileModeO6hiddenyA2EmF",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "Function",
- "name": "==",
- "printedName": "==(_:_:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- },
- {
- "kind": "TypeNominal",
- "name": "ProfileMode",
- "printedName": "ApptentiveKit.MessageCenterViewModel.ProfileMode",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC11ProfileModeO"
- },
- {
- "kind": "TypeNominal",
- "name": "ProfileMode",
- "printedName": "ApptentiveKit.MessageCenterViewModel.ProfileMode",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC11ProfileModeO"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC11ProfileModeO2eeoiySbAE_AEtFZ",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC11ProfileModeO2eeoiySbAE_AEtFZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Var",
- "name": "hashValue",
- "printedName": "hashValue",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC11ProfileModeO9hashValueSivp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC11ProfileModeO9hashValueSivp",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC11ProfileModeO9hashValueSivg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC11ProfileModeO9hashValueSivg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Function",
- "name": "hash",
- "printedName": "hash(into:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Hasher",
- "printedName": "Swift.Hasher",
- "paramValueOwnership": "InOut",
- "usr": "s:s6HasherV"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC11ProfileModeO4hash4intoys6HasherVz_tF",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC11ProfileModeO4hash4intoys6HasherVz_tF",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "funcSelfKind": "NonMutating"
- }
- ],
- "declKind": "Enum",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC11ProfileModeO",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC11ProfileModeO",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "conformances": [
- {
- "kind": "Conformance",
- "name": "Equatable",
- "printedName": "Equatable",
- "usr": "s:SQ",
- "mangledName": "$sSQ"
- },
- {
- "kind": "Conformance",
- "name": "Hashable",
- "printedName": "Hashable",
- "usr": "s:SH",
- "mangledName": "$sSH"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "oldestUnreadMessageIndexPath",
- "printedName": "oldestUnreadMessageIndexPath",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Foundation.IndexPath?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "IndexPath",
- "printedName": "Foundation.IndexPath",
- "usr": "s:10Foundation9IndexPathV"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC012oldestUnreadC9IndexPath10Foundation0iJ0VSgvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC012oldestUnreadC9IndexPath10Foundation0iJ0VSgvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Foundation.IndexPath?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "IndexPath",
- "printedName": "Foundation.IndexPath",
- "usr": "s:10Foundation9IndexPathV"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC012oldestUnreadC9IndexPath10Foundation0iJ0VSgvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC012oldestUnreadC9IndexPath10Foundation0iJ0VSgvg",
- "moduleName": "ApptentiveKit",
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "newestMessageIndexPath",
- "printedName": "newestMessageIndexPath",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Foundation.IndexPath?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "IndexPath",
- "printedName": "Foundation.IndexPath",
- "usr": "s:10Foundation9IndexPathV"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC06newestC9IndexPath10Foundation0hI0VSgvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC06newestC9IndexPath10Foundation0hI0VSgvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Foundation.IndexPath?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "IndexPath",
- "printedName": "Foundation.IndexPath",
- "usr": "s:10Foundation9IndexPathV"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC06newestC9IndexPath10Foundation0hI0VSgvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC06newestC9IndexPath10Foundation0hI0VSgvg",
- "moduleName": "ApptentiveKit",
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Function",
- "name": "commitProfileEdits",
- "printedName": "commitProfileEdits()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC18commitProfileEditsyyF",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC18commitProfileEditsyyF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "cancelProfileEdits",
- "printedName": "cancelProfileEdits()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC18cancelProfileEditsyyF",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC18cancelProfileEditsyyF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "launch",
- "printedName": "launch()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC6launchyyF",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC6launchyyF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "cancel",
- "printedName": "cancel()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC6cancelyyF",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC6cancelyyF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Var",
- "name": "numberOfMessageGroups",
- "printedName": "numberOfMessageGroups",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC08numberOfC6GroupsSivp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC08numberOfC6GroupsSivp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC08numberOfC6GroupsSivg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC08numberOfC6GroupsSivg",
- "moduleName": "ApptentiveKit",
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Function",
- "name": "markMessageAsRead",
- "printedName": "markMessageAsRead(at:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "IndexPath",
- "printedName": "Foundation.IndexPath",
- "usr": "s:10Foundation9IndexPathV"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC04markC6AsRead2aty10Foundation9IndexPathV_tF",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC04markC6AsRead2aty10Foundation9IndexPathV_tF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "numberOfMessagesInGroup",
- "printedName": "numberOfMessagesInGroup(at:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- },
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC23numberOfMessagesInGroup2atS2i_tF",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC23numberOfMessagesInGroup2atS2i_tF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "dateStringForMessagesInGroup",
- "printedName": "dateStringForMessagesInGroup(at:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC28dateStringForMessagesInGroup2atSSSgSi_tF",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC28dateStringForMessagesInGroup2atSSSgSi_tF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "message",
- "printedName": "message(at:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Message",
- "printedName": "ApptentiveKit.MessageCenterViewModel.Message",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C"
- },
- {
- "kind": "TypeNominal",
- "name": "IndexPath",
- "printedName": "Foundation.IndexPath",
- "usr": "s:10Foundation9IndexPathV"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC7message2atAC0C0C10Foundation9IndexPathV_tF",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC7message2atAC0C0C10Foundation9IndexPathV_tF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "downloadAttachment",
- "printedName": "downloadAttachment(at:inMessageAt:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- },
- {
- "kind": "TypeNominal",
- "name": "IndexPath",
- "printedName": "Foundation.IndexPath",
- "usr": "s:10Foundation9IndexPathV"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC18downloadAttachment2at02inC2AtySi_10Foundation9IndexPathVtF",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC18downloadAttachment2at02inC2AtySi_10Foundation9IndexPathVtF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Var",
- "name": "draftMessage",
- "printedName": "draftMessage",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Message",
- "printedName": "ApptentiveKit.MessageCenterViewModel.Message",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC05draftC0AC0C0Cvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC05draftC0AC0C0Cvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "HasStorage",
- "SetterAccess",
- "AccessControl",
- "RawDocComment"
- ],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Message",
- "printedName": "ApptentiveKit.MessageCenterViewModel.Message",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC05draftC0AC0C0Cvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC05draftC0AC0C0Cvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "draftMessageBody",
- "printedName": "draftMessageBody",
- "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": "s:13ApptentiveKit22MessageCenterViewModelC05draftC4BodySSSgvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC05draftC4BodySSSgvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC05draftC4BodySSSgvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC05draftC4BodySSSgvg",
- "moduleName": "ApptentiveKit",
- "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": "s:13ApptentiveKit22MessageCenterViewModelC05draftC4BodySSSgvs",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC05draftC4BodySSSgvs",
- "moduleName": "ApptentiveKit",
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC05draftC4BodySSSgvM",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC05draftC4BodySSSgvM",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "draftAttachments",
- "printedName": "draftAttachments",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Array",
- "printedName": "[ApptentiveKit.MessageCenterViewModel.Message.Attachment]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Attachment",
- "printedName": "ApptentiveKit.MessageCenterViewModel.Message.Attachment",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10AttachmentC"
- }
- ],
- "usr": "s:Sa"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC16draftAttachmentsSayAC0C0C10AttachmentCGvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC16draftAttachmentsSayAC0C0C10AttachmentCGvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Array",
- "printedName": "[ApptentiveKit.MessageCenterViewModel.Message.Attachment]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Attachment",
- "printedName": "ApptentiveKit.MessageCenterViewModel.Message.Attachment",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10AttachmentC"
- }
- ],
- "usr": "s:Sa"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC16draftAttachmentsSayAC0C0C10AttachmentCGvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC16draftAttachmentsSayAC0C0C10AttachmentCGvg",
- "moduleName": "ApptentiveKit",
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Function",
- "name": "addImageAttachment",
- "printedName": "addImageAttachment(_:name:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIImage",
- "printedName": "UIKit.UIImage",
- "usr": "c:objc(cs)UIImage"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC18addImageAttachment_4nameySo7UIImageC_SSSgtF",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC18addImageAttachment_4nameySo7UIImageC_SSSgtF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "addFileAttachment",
- "printedName": "addFileAttachment(at:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "URL",
- "printedName": "Foundation.URL",
- "usr": "s:10Foundation3URLV"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC17addFileAttachment2aty10Foundation3URLV_tF",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC17addFileAttachment2aty10Foundation3URLV_tF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "removeAttachment",
- "printedName": "removeAttachment(at:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC16removeAttachment2atySi_tF",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC16removeAttachment2atySi_tF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Var",
- "name": "remainingAttachmentSlots",
- "printedName": "remainingAttachmentSlots",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC24remainingAttachmentSlotsSivp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC24remainingAttachmentSlotsSivp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC24remainingAttachmentSlotsSivg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC24remainingAttachmentSlotsSivg",
- "moduleName": "ApptentiveKit",
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "canAddAttachment",
- "printedName": "canAddAttachment",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC16canAddAttachmentSbvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC16canAddAttachmentSbvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC16canAddAttachmentSbvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC16canAddAttachmentSbvg",
- "moduleName": "ApptentiveKit",
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "canSendMessage",
- "printedName": "canSendMessage",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC07canSendC0Sbvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC07canSendC0Sbvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC07canSendC0Sbvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC07canSendC0Sbvg",
- "moduleName": "ApptentiveKit",
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Function",
- "name": "sendMessage",
- "printedName": "sendMessage()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC04sendC0yyF",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC04sendC0yyF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "TypeDecl",
- "name": "Message",
- "printedName": "Message",
- "children": [
- {
- "kind": "Var",
- "name": "nonce",
- "printedName": "nonce",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C5nonceSSvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C5nonceSSvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C5nonceSSvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C5nonceSSvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "direction",
- "printedName": "direction",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Direction",
- "printedName": "ApptentiveKit.MessageCenterViewModel.Message.Direction",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C9DirectionO"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C9directionAE9DirectionOvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C9directionAE9DirectionOvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Direction",
- "printedName": "ApptentiveKit.MessageCenterViewModel.Message.Direction",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C9DirectionO"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C9directionAE9DirectionOvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C9directionAE9DirectionOvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "isAutomated",
- "printedName": "isAutomated",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C11isAutomatedSbvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C11isAutomatedSbvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C11isAutomatedSbvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C11isAutomatedSbvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "attachments",
- "printedName": "attachments",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Array",
- "printedName": "[ApptentiveKit.MessageCenterViewModel.Message.Attachment]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Attachment",
- "printedName": "ApptentiveKit.MessageCenterViewModel.Message.Attachment",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10AttachmentC"
- }
- ],
- "usr": "s:Sa"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C11attachmentsSayAE10AttachmentCGvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C11attachmentsSayAE10AttachmentCGvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Array",
- "printedName": "[ApptentiveKit.MessageCenterViewModel.Message.Attachment]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Attachment",
- "printedName": "ApptentiveKit.MessageCenterViewModel.Message.Attachment",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10AttachmentC"
- }
- ],
- "usr": "s:Sa"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C11attachmentsSayAE10AttachmentCGvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C11attachmentsSayAE10AttachmentCGvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "sender",
- "printedName": "sender",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "ApptentiveKit.MessageCenterViewModel.Message.Sender?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Sender",
- "printedName": "ApptentiveKit.MessageCenterViewModel.Message.Sender",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C6SenderV"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C6senderAE6SenderVSgvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C6senderAE6SenderVSgvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "ApptentiveKit.MessageCenterViewModel.Message.Sender?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Sender",
- "printedName": "ApptentiveKit.MessageCenterViewModel.Message.Sender",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C6SenderV"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C6senderAE6SenderVSgvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C6senderAE6SenderVSgvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "body",
- "printedName": "body",
- "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": "s:13ApptentiveKit22MessageCenterViewModelC0C0C4bodySSSgvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C4bodySSSgvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "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": "s:13ApptentiveKit22MessageCenterViewModelC0C0C4bodySSSgvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C4bodySSSgvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "sentDate",
- "printedName": "sentDate",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Date",
- "printedName": "Foundation.Date",
- "usr": "s:10Foundation4DateV"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C8sentDate10Foundation0H0Vvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C8sentDate10Foundation0H0Vvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Date",
- "printedName": "Foundation.Date",
- "usr": "s:10Foundation4DateV"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C8sentDate10Foundation0H0Vvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C8sentDate10Foundation0H0Vvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "accessibilityLabel",
- "printedName": "accessibilityLabel",
- "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": "s:13ApptentiveKit22MessageCenterViewModelC0C0C18accessibilityLabelSSSgvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C18accessibilityLabelSSSgvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "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": "s:13ApptentiveKit22MessageCenterViewModelC0C0C18accessibilityLabelSSSgvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C18accessibilityLabelSSSgvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "accessibilityHint",
- "printedName": "accessibilityHint",
- "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": "s:13ApptentiveKit22MessageCenterViewModelC0C0C17accessibilityHintSSSgvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C17accessibilityHintSSSgvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "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": "s:13ApptentiveKit22MessageCenterViewModelC0C0C17accessibilityHintSSSgvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C17accessibilityHintSSSgvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "statusText",
- "printedName": "statusText",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10statusTextSSvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C10statusTextSSvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10statusTextSSvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C10statusTextSSvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Function",
- "name": "==",
- "printedName": "==(_:_:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- },
- {
- "kind": "TypeNominal",
- "name": "Message",
- "printedName": "ApptentiveKit.MessageCenterViewModel.Message",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C"
- },
- {
- "kind": "TypeNominal",
- "name": "Message",
- "printedName": "ApptentiveKit.MessageCenterViewModel.Message",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C2eeoiySbAE_AEtFZ",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C2eeoiySbAE_AEtFZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "Final",
- "AccessControl",
- "RawDocComment"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "TypeDecl",
- "name": "Direction",
- "printedName": "Direction",
- "children": [
- {
- "kind": "Var",
- "name": "sentFromDashboard",
- "printedName": "sentFromDashboard",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.MessageCenterViewModel.Message.Direction.Type) -> (ApptentiveKit.MessageCenterViewModel.Message.ReadStatus) -> ApptentiveKit.MessageCenterViewModel.Message.Direction",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.MessageCenterViewModel.Message.ReadStatus) -> ApptentiveKit.MessageCenterViewModel.Message.Direction",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Direction",
- "printedName": "ApptentiveKit.MessageCenterViewModel.Message.Direction",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C9DirectionO"
- },
- {
- "kind": "TypeNominal",
- "name": "ReadStatus",
- "printedName": "ApptentiveKit.MessageCenterViewModel.Message.ReadStatus",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10ReadStatusO"
- }
- ]
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.MessageCenterViewModel.Message.Direction.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Direction",
- "printedName": "ApptentiveKit.MessageCenterViewModel.Message.Direction",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C9DirectionO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C9DirectionO17sentFromDashboardyAgE10ReadStatusOcAGmF",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C9DirectionO17sentFromDashboardyAgE10ReadStatusOcAGmF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "sentFromDevice",
- "printedName": "sentFromDevice",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.MessageCenterViewModel.Message.Direction.Type) -> (ApptentiveKit.MessageCenterViewModel.Message.SentStatus) -> ApptentiveKit.MessageCenterViewModel.Message.Direction",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.MessageCenterViewModel.Message.SentStatus) -> ApptentiveKit.MessageCenterViewModel.Message.Direction",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Direction",
- "printedName": "ApptentiveKit.MessageCenterViewModel.Message.Direction",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C9DirectionO"
- },
- {
- "kind": "TypeNominal",
- "name": "SentStatus",
- "printedName": "ApptentiveKit.MessageCenterViewModel.Message.SentStatus",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10SentStatusO"
- }
- ]
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.MessageCenterViewModel.Message.Direction.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Direction",
- "printedName": "ApptentiveKit.MessageCenterViewModel.Message.Direction",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C9DirectionO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C9DirectionO14sentFromDeviceyAgE10SentStatusOcAGmF",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C9DirectionO14sentFromDeviceyAgE10SentStatusOcAGmF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "automated",
- "printedName": "automated",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.MessageCenterViewModel.Message.Direction.Type) -> ApptentiveKit.MessageCenterViewModel.Message.Direction",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Direction",
- "printedName": "ApptentiveKit.MessageCenterViewModel.Message.Direction",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C9DirectionO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.MessageCenterViewModel.Message.Direction.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Direction",
- "printedName": "ApptentiveKit.MessageCenterViewModel.Message.Direction",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C9DirectionO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C9DirectionO9automatedyA2GmF",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C9DirectionO9automatedyA2GmF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Function",
- "name": "==",
- "printedName": "==(_:_:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- },
- {
- "kind": "TypeNominal",
- "name": "Direction",
- "printedName": "ApptentiveKit.MessageCenterViewModel.Message.Direction",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C9DirectionO"
- },
- {
- "kind": "TypeNominal",
- "name": "Direction",
- "printedName": "ApptentiveKit.MessageCenterViewModel.Message.Direction",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C9DirectionO"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C9DirectionO2eeoiySbAG_AGtFZ",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C9DirectionO2eeoiySbAG_AGtFZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "funcSelfKind": "NonMutating"
- }
- ],
- "declKind": "Enum",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C9DirectionO",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C9DirectionO",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "conformances": [
- {
- "kind": "Conformance",
- "name": "Equatable",
- "printedName": "Equatable",
- "usr": "s:SQ",
- "mangledName": "$sSQ"
- }
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "SentStatus",
- "printedName": "SentStatus",
- "children": [
- {
- "kind": "Var",
- "name": "draft",
- "printedName": "draft",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.MessageCenterViewModel.Message.SentStatus.Type) -> ApptentiveKit.MessageCenterViewModel.Message.SentStatus",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "SentStatus",
- "printedName": "ApptentiveKit.MessageCenterViewModel.Message.SentStatus",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10SentStatusO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.MessageCenterViewModel.Message.SentStatus.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "SentStatus",
- "printedName": "ApptentiveKit.MessageCenterViewModel.Message.SentStatus",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10SentStatusO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10SentStatusO5draftyA2GmF",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C10SentStatusO5draftyA2GmF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "queued",
- "printedName": "queued",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.MessageCenterViewModel.Message.SentStatus.Type) -> ApptentiveKit.MessageCenterViewModel.Message.SentStatus",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "SentStatus",
- "printedName": "ApptentiveKit.MessageCenterViewModel.Message.SentStatus",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10SentStatusO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.MessageCenterViewModel.Message.SentStatus.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "SentStatus",
- "printedName": "ApptentiveKit.MessageCenterViewModel.Message.SentStatus",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10SentStatusO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10SentStatusO6queuedyA2GmF",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C10SentStatusO6queuedyA2GmF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "sending",
- "printedName": "sending",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.MessageCenterViewModel.Message.SentStatus.Type) -> ApptentiveKit.MessageCenterViewModel.Message.SentStatus",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "SentStatus",
- "printedName": "ApptentiveKit.MessageCenterViewModel.Message.SentStatus",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10SentStatusO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.MessageCenterViewModel.Message.SentStatus.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "SentStatus",
- "printedName": "ApptentiveKit.MessageCenterViewModel.Message.SentStatus",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10SentStatusO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10SentStatusO7sendingyA2GmF",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C10SentStatusO7sendingyA2GmF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "sent",
- "printedName": "sent",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.MessageCenterViewModel.Message.SentStatus.Type) -> ApptentiveKit.MessageCenterViewModel.Message.SentStatus",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "SentStatus",
- "printedName": "ApptentiveKit.MessageCenterViewModel.Message.SentStatus",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10SentStatusO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.MessageCenterViewModel.Message.SentStatus.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "SentStatus",
- "printedName": "ApptentiveKit.MessageCenterViewModel.Message.SentStatus",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10SentStatusO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10SentStatusO4sentyA2GmF",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C10SentStatusO4sentyA2GmF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "failed",
- "printedName": "failed",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.MessageCenterViewModel.Message.SentStatus.Type) -> ApptentiveKit.MessageCenterViewModel.Message.SentStatus",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "SentStatus",
- "printedName": "ApptentiveKit.MessageCenterViewModel.Message.SentStatus",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10SentStatusO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.MessageCenterViewModel.Message.SentStatus.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "SentStatus",
- "printedName": "ApptentiveKit.MessageCenterViewModel.Message.SentStatus",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10SentStatusO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10SentStatusO6failedyA2GmF",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C10SentStatusO6failedyA2GmF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "hashValue",
- "printedName": "hashValue",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10SentStatusO9hashValueSivp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C10SentStatusO9hashValueSivp",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10SentStatusO9hashValueSivg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C10SentStatusO9hashValueSivg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Function",
- "name": "hash",
- "printedName": "hash(into:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Hasher",
- "printedName": "Swift.Hasher",
- "paramValueOwnership": "InOut",
- "usr": "s:s6HasherV"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10SentStatusO4hash4intoys6HasherVz_tF",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C10SentStatusO4hash4intoys6HasherVz_tF",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(from:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "SentStatus",
- "printedName": "ApptentiveKit.MessageCenterViewModel.Message.SentStatus",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10SentStatusO"
- },
- {
- "kind": "TypeNominal",
- "name": "Decoder",
- "printedName": "Swift.Decoder",
- "usr": "s:s7DecoderP"
- }
- ],
- "declKind": "Constructor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10SentStatusO4fromAGs7Decoder_p_tKcfc",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C10SentStatusO4fromAGs7Decoder_p_tKcfc",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "throwing": true,
- "init_kind": "Designated"
- },
- {
- "kind": "Function",
- "name": "encode",
- "printedName": "encode(to:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Encoder",
- "printedName": "Swift.Encoder",
- "usr": "s:s7EncoderP"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10SentStatusO6encode2toys7Encoder_p_tKF",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C10SentStatusO6encode2toys7Encoder_p_tKF",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "throwing": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "==",
- "printedName": "==(_:_:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- },
- {
- "kind": "TypeNominal",
- "name": "SentStatus",
- "printedName": "ApptentiveKit.MessageCenterViewModel.Message.SentStatus",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10SentStatusO"
- },
- {
- "kind": "TypeNominal",
- "name": "SentStatus",
- "printedName": "ApptentiveKit.MessageCenterViewModel.Message.SentStatus",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10SentStatusO"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10SentStatusO2eeoiySbAG_AGtFZ",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C10SentStatusO2eeoiySbAG_AGtFZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "funcSelfKind": "NonMutating"
- }
- ],
- "declKind": "Enum",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10SentStatusO",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C10SentStatusO",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "conformances": [
- {
- "kind": "Conformance",
- "name": "Hashable",
- "printedName": "Hashable",
- "usr": "s:SH",
- "mangledName": "$sSH"
- },
- {
- "kind": "Conformance",
- "name": "Decodable",
- "printedName": "Decodable",
- "usr": "s:Se",
- "mangledName": "$sSe"
- },
- {
- "kind": "Conformance",
- "name": "Encodable",
- "printedName": "Encodable",
- "usr": "s:SE",
- "mangledName": "$sSE"
- },
- {
- "kind": "Conformance",
- "name": "Equatable",
- "printedName": "Equatable",
- "usr": "s:SQ",
- "mangledName": "$sSQ"
- }
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "ReadStatus",
- "printedName": "ReadStatus",
- "children": [
- {
- "kind": "Var",
- "name": "read",
- "printedName": "read",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.MessageCenterViewModel.Message.ReadStatus.Type) -> ApptentiveKit.MessageCenterViewModel.Message.ReadStatus",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ReadStatus",
- "printedName": "ApptentiveKit.MessageCenterViewModel.Message.ReadStatus",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10ReadStatusO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.MessageCenterViewModel.Message.ReadStatus.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ReadStatus",
- "printedName": "ApptentiveKit.MessageCenterViewModel.Message.ReadStatus",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10ReadStatusO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10ReadStatusO4readyA2GmF",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C10ReadStatusO4readyA2GmF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "unread",
- "printedName": "unread",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.MessageCenterViewModel.Message.ReadStatus.Type) -> (Swift.String?) -> ApptentiveKit.MessageCenterViewModel.Message.ReadStatus",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(Swift.String?) -> ApptentiveKit.MessageCenterViewModel.Message.ReadStatus",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ReadStatus",
- "printedName": "ApptentiveKit.MessageCenterViewModel.Message.ReadStatus",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10ReadStatusO"
- },
- {
- "kind": "TypeNominal",
- "name": "Tuple",
- "printedName": "(messageID: Swift.String?)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
- }
- ]
- }
- ]
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.MessageCenterViewModel.Message.ReadStatus.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ReadStatus",
- "printedName": "ApptentiveKit.MessageCenterViewModel.Message.ReadStatus",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10ReadStatusO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10ReadStatusO6unreadyAGSSSg_tcAGmF",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C10ReadStatusO6unreadyAGSSSg_tcAGmF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(from:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ReadStatus",
- "printedName": "ApptentiveKit.MessageCenterViewModel.Message.ReadStatus",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10ReadStatusO"
- },
- {
- "kind": "TypeNominal",
- "name": "Decoder",
- "printedName": "Swift.Decoder",
- "usr": "s:s7DecoderP"
- }
- ],
- "declKind": "Constructor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10ReadStatusO4fromAGs7Decoder_p_tKcfc",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C10ReadStatusO4fromAGs7Decoder_p_tKcfc",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "throwing": true,
- "init_kind": "Designated"
- },
- {
- "kind": "Function",
- "name": "encode",
- "printedName": "encode(to:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Encoder",
- "printedName": "Swift.Encoder",
- "usr": "s:s7EncoderP"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10ReadStatusO6encode2toys7Encoder_p_tKF",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C10ReadStatusO6encode2toys7Encoder_p_tKF",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "throwing": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "==",
- "printedName": "==(_:_:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- },
- {
- "kind": "TypeNominal",
- "name": "ReadStatus",
- "printedName": "ApptentiveKit.MessageCenterViewModel.Message.ReadStatus",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10ReadStatusO"
- },
- {
- "kind": "TypeNominal",
- "name": "ReadStatus",
- "printedName": "ApptentiveKit.MessageCenterViewModel.Message.ReadStatus",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10ReadStatusO"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10ReadStatusO2eeoiySbAG_AGtFZ",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C10ReadStatusO2eeoiySbAG_AGtFZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "funcSelfKind": "NonMutating"
- }
- ],
- "declKind": "Enum",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10ReadStatusO",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C10ReadStatusO",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "conformances": [
- {
- "kind": "Conformance",
- "name": "Decodable",
- "printedName": "Decodable",
- "usr": "s:Se",
- "mangledName": "$sSe"
- },
- {
- "kind": "Conformance",
- "name": "Encodable",
- "printedName": "Encodable",
- "usr": "s:SE",
- "mangledName": "$sSE"
- },
- {
- "kind": "Conformance",
- "name": "Equatable",
- "printedName": "Equatable",
- "usr": "s:SQ",
- "mangledName": "$sSQ"
- }
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "Sender",
- "printedName": "Sender",
- "children": [
- {
- "kind": "Function",
- "name": "==",
- "printedName": "==(_:_:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- },
- {
- "kind": "TypeNominal",
- "name": "Sender",
- "printedName": "ApptentiveKit.MessageCenterViewModel.Message.Sender",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C6SenderV"
- },
- {
- "kind": "TypeNominal",
- "name": "Sender",
- "printedName": "ApptentiveKit.MessageCenterViewModel.Message.Sender",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C6SenderV"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C6SenderV2eeoiySbAG_AGtFZ",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C6SenderV2eeoiySbAG_AGtFZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "funcSelfKind": "NonMutating"
- }
- ],
- "declKind": "Struct",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C6SenderV",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C6SenderV",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "conformances": [
- {
- "kind": "Conformance",
- "name": "Equatable",
- "printedName": "Equatable",
- "usr": "s:SQ",
- "mangledName": "$sSQ"
- }
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "Attachment",
- "printedName": "Attachment",
- "children": [
- {
- "kind": "Var",
- "name": "fileExtension",
- "printedName": "fileExtension",
- "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": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10AttachmentC13fileExtensionSSSgvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C10AttachmentC13fileExtensionSSSgvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "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": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10AttachmentC13fileExtensionSSSgvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C10AttachmentC13fileExtensionSSSgvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "thumbnail",
- "printedName": "thumbnail",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "UIKit.UIImage?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIImage",
- "printedName": "UIKit.UIImage",
- "usr": "c:objc(cs)UIImage"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10AttachmentC9thumbnailSo7UIImageCSgvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C10AttachmentC9thumbnailSo7UIImageCSgvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "UIKit.UIImage?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIImage",
- "printedName": "UIKit.UIImage",
- "usr": "c:objc(cs)UIImage"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10AttachmentC9thumbnailSo7UIImageCSgvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C10AttachmentC9thumbnailSo7UIImageCSgvg",
- "moduleName": "ApptentiveKit",
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "downloadProgress",
- "printedName": "downloadProgress",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Float",
- "printedName": "Swift.Float",
- "usr": "s:Sf"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10AttachmentC16downloadProgressSfvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C10AttachmentC16downloadProgressSfvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Float",
- "printedName": "Swift.Float",
- "usr": "s:Sf"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10AttachmentC16downloadProgressSfvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C10AttachmentC16downloadProgressSfvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Float",
- "printedName": "Swift.Float",
- "usr": "s:Sf"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10AttachmentC16downloadProgressSfvs",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C10AttachmentC16downloadProgressSfvs",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10AttachmentC16downloadProgressSfvM",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C10AttachmentC16downloadProgressSfvM",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "localURL",
- "printedName": "localURL",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Foundation.URL?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "URL",
- "printedName": "Foundation.URL",
- "usr": "s:10Foundation3URLV"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10AttachmentC8localURL10Foundation0I0VSgvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C10AttachmentC8localURL10Foundation0I0VSgvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Foundation.URL?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "URL",
- "printedName": "Foundation.URL",
- "usr": "s:10Foundation3URLV"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10AttachmentC8localURL10Foundation0I0VSgvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C10AttachmentC8localURL10Foundation0I0VSgvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Foundation.URL?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "URL",
- "printedName": "Foundation.URL",
- "usr": "s:10Foundation3URLV"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10AttachmentC8localURL10Foundation0I0VSgvs",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C10AttachmentC8localURL10Foundation0I0VSgvs",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10AttachmentC8localURL10Foundation0I0VSgvM",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C10AttachmentC8localURL10Foundation0I0VSgvM",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "displayName",
- "printedName": "displayName",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10AttachmentC11displayNameSSvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C10AttachmentC11displayNameSSvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10AttachmentC11displayNameSSvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C10AttachmentC11displayNameSSvg",
- "moduleName": "ApptentiveKit",
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "previewItemURL",
- "printedName": "previewItemURL",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Foundation.URL?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "URL",
- "printedName": "Foundation.URL",
- "usr": "s:10Foundation3URLV"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10AttachmentC14previewItemURL10Foundation0J0VSgvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C10AttachmentC14previewItemURL10Foundation0J0VSgvp",
- "moduleName": "ApptentiveKit",
- "objc_name": "previewItemURL",
- "declAttributes": [
- "ObjC",
- "AccessControl",
- "RawDocComment"
- ],
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Foundation.URL?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "URL",
- "printedName": "Foundation.URL",
- "usr": "s:10Foundation3URLV"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10AttachmentC14previewItemURL10Foundation0J0VSgvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C10AttachmentC14previewItemURL10Foundation0J0VSgvg",
- "moduleName": "ApptentiveKit",
- "objc_name": "previewItemURL",
- "declAttributes": [
- "ObjC"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "previewItemTitle",
- "printedName": "previewItemTitle",
- "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": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10AttachmentC16previewItemTitleSSSgvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C10AttachmentC16previewItemTitleSSSgvp",
- "moduleName": "ApptentiveKit",
- "objc_name": "previewItemTitle",
- "declAttributes": [
- "ObjC",
- "AccessControl",
- "RawDocComment"
- ],
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10AttachmentC16previewItemTitleSSSgvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C10AttachmentC16previewItemTitleSSSgvg",
- "moduleName": "ApptentiveKit",
- "objc_name": "previewItemTitle",
- "declAttributes": [
- "ObjC"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "accessibilityLabel",
- "printedName": "accessibilityLabel",
- "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": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10AttachmentC18accessibilityLabelSSSgvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C10AttachmentC18accessibilityLabelSSSgvp",
- "moduleName": "ApptentiveKit",
- "overriding": true,
- "objc_name": "accessibilityLabel",
- "declAttributes": [
- "Dynamic",
- "ObjC",
- "Override",
- "AccessControl"
- ],
- "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": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10AttachmentC18accessibilityLabelSSSgvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C10AttachmentC18accessibilityLabelSSSgvg",
- "moduleName": "ApptentiveKit",
- "overriding": true,
- "objc_name": "accessibilityLabel",
- "declAttributes": [
- "Dynamic",
- "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": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10AttachmentC18accessibilityLabelSSSgvs",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C10AttachmentC18accessibilityLabelSSSgvs",
- "moduleName": "ApptentiveKit",
- "overriding": true,
- "objc_name": "setAccessibilityLabel:",
- "declAttributes": [
- "Dynamic",
- "ObjC"
- ],
- "accessorKind": "set"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "removeButtonAccessibilityLabel",
- "printedName": "removeButtonAccessibilityLabel",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10AttachmentC30removeButtonAccessibilityLabelSSvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C10AttachmentC30removeButtonAccessibilityLabelSSvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10AttachmentC30removeButtonAccessibilityLabelSSvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C10AttachmentC30removeButtonAccessibilityLabelSSvg",
- "moduleName": "ApptentiveKit",
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "viewButtonAccessibilityLabel",
- "printedName": "viewButtonAccessibilityLabel",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10AttachmentC28viewButtonAccessibilityLabelSSvp",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C10AttachmentC28viewButtonAccessibilityLabelSSvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10AttachmentC28viewButtonAccessibilityLabelSSvg",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C10AttachmentC28viewButtonAccessibilityLabelSSvg",
- "moduleName": "ApptentiveKit",
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Attachment",
- "printedName": "ApptentiveKit.MessageCenterViewModel.Message.Attachment",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10AttachmentC"
- }
- ],
- "declKind": "Constructor",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10AttachmentCAGycfc",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C10AttachmentCAGycfc",
- "moduleName": "ApptentiveKit",
- "overriding": true,
- "implicit": true,
- "objc_name": "init",
- "declAttributes": [
- "Dynamic",
- "ObjC",
- "Override"
- ],
- "init_kind": "Designated"
- }
- ],
- "declKind": "Class",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C10AttachmentC",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C10AttachmentC",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment",
- "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"
- }
- ]
- }
- ],
- "declKind": "Class",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC0C0C",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC0C0C",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasMissingDesignatedInitializers": true,
- "conformances": [
- {
- "kind": "Conformance",
- "name": "Equatable",
- "printedName": "Equatable",
- "usr": "s:SQ",
- "mangledName": "$sSQ"
- }
- ]
- }
- ],
- "declKind": "Class",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC",
- "mangledName": "$s13ApptentiveKit22MessageCenterViewModelC",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "hasMissingDesignatedInitializers": true
- },
- {
- "kind": "TypeDecl",
- "name": "MessageCenterViewModelError",
- "printedName": "MessageCenterViewModelError",
- "children": [
- {
- "kind": "Var",
- "name": "attachmentCountGreaterThanMax",
- "printedName": "attachmentCountGreaterThanMax",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.MessageCenterViewModelError.Type) -> ApptentiveKit.MessageCenterViewModelError",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "MessageCenterViewModelError",
- "printedName": "ApptentiveKit.MessageCenterViewModelError",
- "usr": "s:13ApptentiveKit27MessageCenterViewModelErrorO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.MessageCenterViewModelError.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "MessageCenterViewModelError",
- "printedName": "ApptentiveKit.MessageCenterViewModelError",
- "usr": "s:13ApptentiveKit27MessageCenterViewModelErrorO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:13ApptentiveKit27MessageCenterViewModelErrorO29attachmentCountGreaterThanMaxyA2CmF",
- "mangledName": "$s13ApptentiveKit27MessageCenterViewModelErrorO29attachmentCountGreaterThanMaxyA2CmF",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "Var",
- "name": "unableToGetImageData",
- "printedName": "unableToGetImageData",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.MessageCenterViewModelError.Type) -> ApptentiveKit.MessageCenterViewModelError",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "MessageCenterViewModelError",
- "printedName": "ApptentiveKit.MessageCenterViewModelError",
- "usr": "s:13ApptentiveKit27MessageCenterViewModelErrorO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.MessageCenterViewModelError.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "MessageCenterViewModelError",
- "printedName": "ApptentiveKit.MessageCenterViewModelError",
- "usr": "s:13ApptentiveKit27MessageCenterViewModelErrorO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:13ApptentiveKit27MessageCenterViewModelErrorO20unableToGetImageDatayA2CmF",
- "mangledName": "$s13ApptentiveKit27MessageCenterViewModelErrorO20unableToGetImageDatayA2CmF",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "Function",
- "name": "==",
- "printedName": "==(_:_:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- },
- {
- "kind": "TypeNominal",
- "name": "MessageCenterViewModelError",
- "printedName": "ApptentiveKit.MessageCenterViewModelError",
- "usr": "s:13ApptentiveKit27MessageCenterViewModelErrorO"
- },
- {
- "kind": "TypeNominal",
- "name": "MessageCenterViewModelError",
- "printedName": "ApptentiveKit.MessageCenterViewModelError",
- "usr": "s:13ApptentiveKit27MessageCenterViewModelErrorO"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit27MessageCenterViewModelErrorO2eeoiySbAC_ACtFZ",
- "mangledName": "$s13ApptentiveKit27MessageCenterViewModelErrorO2eeoiySbAC_ACtFZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Var",
- "name": "hashValue",
- "printedName": "hashValue",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit27MessageCenterViewModelErrorO9hashValueSivp",
- "mangledName": "$s13ApptentiveKit27MessageCenterViewModelErrorO9hashValueSivp",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit27MessageCenterViewModelErrorO9hashValueSivg",
- "mangledName": "$s13ApptentiveKit27MessageCenterViewModelErrorO9hashValueSivg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Function",
- "name": "hash",
- "printedName": "hash(into:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Hasher",
- "printedName": "Swift.Hasher",
- "paramValueOwnership": "InOut",
- "usr": "s:s6HasherV"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit27MessageCenterViewModelErrorO4hash4intoys6HasherVz_tF",
- "mangledName": "$s13ApptentiveKit27MessageCenterViewModelErrorO4hash4intoys6HasherVz_tF",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "funcSelfKind": "NonMutating"
- }
- ],
- "declKind": "Enum",
- "usr": "s:13ApptentiveKit27MessageCenterViewModelErrorO",
- "mangledName": "$s13ApptentiveKit27MessageCenterViewModelErrorO",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl"
- ],
- "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": "Error",
- "printedName": "Error",
- "usr": "s:s5ErrorP",
- "mangledName": "$ss5ErrorP"
- },
- {
- "kind": "Conformance",
- "name": "Sendable",
- "printedName": "Sendable",
- "usr": "s:s8SendableP",
- "mangledName": "$ss8SendableP"
- }
- ]
- },
- {
- "kind": "Import",
- "name": "UIKit",
- "printedName": "UIKit",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "UIKit",
- "printedName": "UIKit",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "UIKit",
- "printedName": "UIKit",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "UIKit",
- "printedName": "UIKit",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "Event",
- "printedName": "Event",
- "children": [
- {
- "kind": "Var",
- "name": "customData",
- "printedName": "customData",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "CustomData",
- "printedName": "ApptentiveKit.CustomData",
- "usr": "s:13ApptentiveKit10CustomDataV"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit5EventV10customDataAA06CustomE0Vvp",
- "mangledName": "$s13ApptentiveKit5EventV10customDataAA06CustomE0Vvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "CustomData",
- "printedName": "ApptentiveKit.CustomData",
- "usr": "s:13ApptentiveKit10CustomDataV"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit5EventV10customDataAA06CustomE0Vvg",
- "mangledName": "$s13ApptentiveKit5EventV10customDataAA06CustomE0Vvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "CustomData",
- "printedName": "ApptentiveKit.CustomData",
- "usr": "s:13ApptentiveKit10CustomDataV"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit5EventV10customDataAA06CustomE0Vvs",
- "mangledName": "$s13ApptentiveKit5EventV10customDataAA06CustomE0Vvs",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit5EventV10customDataAA06CustomE0VvM",
- "mangledName": "$s13ApptentiveKit5EventV10customDataAA06CustomE0VvM",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(name:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Event",
- "printedName": "ApptentiveKit.Event",
- "usr": "s:13ApptentiveKit5EventV"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Constructor",
- "usr": "s:13ApptentiveKit5EventV4nameACSS_tcfc",
- "mangledName": "$s13ApptentiveKit5EventV4nameACSS_tcfc",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "init_kind": "Designated"
- },
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(stringLiteral:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Event",
- "printedName": "ApptentiveKit.Event",
- "usr": "s:13ApptentiveKit5EventV"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Constructor",
- "usr": "s:13ApptentiveKit5EventV13stringLiteralACSS_tcfc",
- "mangledName": "$s13ApptentiveKit5EventV13stringLiteralACSS_tcfc",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "init_kind": "Designated"
- },
- {
- "kind": "Var",
- "name": "debugDescription",
- "printedName": "debugDescription",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit5EventV16debugDescriptionSSvp",
- "mangledName": "$s13ApptentiveKit5EventV16debugDescriptionSSvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit5EventV16debugDescriptionSSvg",
- "mangledName": "$s13ApptentiveKit5EventV16debugDescriptionSSvg",
- "moduleName": "ApptentiveKit",
- "accessorKind": "get"
- }
- ]
- }
- ],
- "declKind": "Struct",
- "usr": "s:13ApptentiveKit5EventV",
- "mangledName": "$s13ApptentiveKit5EventV",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "conformances": [
- {
- "kind": "Conformance",
- "name": "ExpressibleByStringLiteral",
- "printedName": "ExpressibleByStringLiteral",
- "children": [
- {
- "kind": "TypeWitness",
- "name": "StringLiteralType",
- "printedName": "StringLiteralType",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ]
- }
- ],
- "usr": "s:s26ExpressibleByStringLiteralP",
- "mangledName": "$ss26ExpressibleByStringLiteralP"
- },
- {
- "kind": "Conformance",
- "name": "CustomDebugStringConvertible",
- "printedName": "CustomDebugStringConvertible",
- "usr": "s:s28CustomDebugStringConvertibleP",
- "mangledName": "$ss28CustomDebugStringConvertibleP"
- },
- {
- "kind": "Conformance",
- "name": "ExpressibleByExtendedGraphemeClusterLiteral",
- "printedName": "ExpressibleByExtendedGraphemeClusterLiteral",
- "children": [
- {
- "kind": "TypeWitness",
- "name": "ExtendedGraphemeClusterLiteralType",
- "printedName": "ExtendedGraphemeClusterLiteralType",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ]
- }
- ],
- "usr": "s:s43ExpressibleByExtendedGraphemeClusterLiteralP",
- "mangledName": "$ss43ExpressibleByExtendedGraphemeClusterLiteralP"
- },
- {
- "kind": "Conformance",
- "name": "ExpressibleByUnicodeScalarLiteral",
- "printedName": "ExpressibleByUnicodeScalarLiteral",
- "children": [
- {
- "kind": "TypeWitness",
- "name": "UnicodeScalarLiteralType",
- "printedName": "UnicodeScalarLiteralType",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ]
- }
- ],
- "usr": "s:s33ExpressibleByUnicodeScalarLiteralP",
- "mangledName": "$ss33ExpressibleByUnicodeScalarLiteralP"
- }
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "UIKit",
- "printedName": "UIKit",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "InteractionPresenter",
- "printedName": "InteractionPresenter",
- "children": [
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "InteractionPresenter",
- "printedName": "ApptentiveKit.InteractionPresenter",
- "usr": "s:13ApptentiveKit20InteractionPresenterC"
- }
- ],
- "declKind": "Constructor",
- "usr": "s:13ApptentiveKit20InteractionPresenterCACycfc",
- "mangledName": "$s13ApptentiveKit20InteractionPresenterCACycfc",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "init_kind": "Designated"
- },
- {
- "kind": "Function",
- "name": "presentMessageCenter",
- "printedName": "presentMessageCenter(with:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "MessageCenterViewModel",
- "printedName": "ApptentiveKit.MessageCenterViewModel",
- "usr": "s:13ApptentiveKit22MessageCenterViewModelC"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit20InteractionPresenterC20presentMessageCenter4withyAA0fG9ViewModelC_tKF",
- "mangledName": "$s13ApptentiveKit20InteractionPresenterC20presentMessageCenter4withyAA0fG9ViewModelC_tKF",
- "moduleName": "ApptentiveKit",
- "isOpen": true,
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "throwing": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "presentSurvey",
- "printedName": "presentSurvey(with:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "SurveyViewModel",
- "printedName": "ApptentiveKit.SurveyViewModel",
- "usr": "s:13ApptentiveKit15SurveyViewModelC"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit20InteractionPresenterC13presentSurvey4withyAA0F9ViewModelC_tKF",
- "mangledName": "$s13ApptentiveKit20InteractionPresenterC13presentSurvey4withyAA0F9ViewModelC_tKF",
- "moduleName": "ApptentiveKit",
- "isOpen": true,
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "throwing": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "presentEnjoymentDialog",
- "printedName": "presentEnjoymentDialog(with:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "DialogViewModel",
- "printedName": "ApptentiveKit.DialogViewModel",
- "usr": "s:13ApptentiveKit15DialogViewModelC"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit20InteractionPresenterC22presentEnjoymentDialog4withyAA0G9ViewModelC_tKF",
- "mangledName": "$s13ApptentiveKit20InteractionPresenterC22presentEnjoymentDialog4withyAA0G9ViewModelC_tKF",
- "moduleName": "ApptentiveKit",
- "isOpen": true,
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "throwing": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "presentTextModal",
- "printedName": "presentTextModal(with:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "DialogViewModel",
- "printedName": "ApptentiveKit.DialogViewModel",
- "usr": "s:13ApptentiveKit15DialogViewModelC"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit20InteractionPresenterC16presentTextModal4withyAA15DialogViewModelC_tKF",
- "mangledName": "$s13ApptentiveKit20InteractionPresenterC16presentTextModal4withyAA15DialogViewModelC_tKF",
- "moduleName": "ApptentiveKit",
- "isOpen": true,
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "throwing": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "presentViewController",
- "printedName": "presentViewController(_:completion:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIViewController",
- "printedName": "UIKit.UIViewController",
- "usr": "c:objc(cs)UIViewController"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "(() -> ())?",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "() -> ()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ]
- }
- ],
- "hasDefaultArg": true,
- "usr": "s:Sq"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit20InteractionPresenterC21presentViewController_10completionySo06UIViewG0C_yycSgtKF",
- "mangledName": "$s13ApptentiveKit20InteractionPresenterC21presentViewController_10completionySo06UIViewG0C_yycSgtKF",
- "moduleName": "ApptentiveKit",
- "isOpen": true,
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "throwing": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Var",
- "name": "validatedPresentingViewController",
- "printedName": "validatedPresentingViewController",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "UIKit.UIViewController?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIViewController",
- "printedName": "UIKit.UIViewController",
- "usr": "c:objc(cs)UIViewController"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit20InteractionPresenterC33validatedPresentingViewControllerSo06UIViewH0CSgvp",
- "mangledName": "$s13ApptentiveKit20InteractionPresenterC33validatedPresentingViewControllerSo06UIViewH0CSgvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "UIKit.UIViewController?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIViewController",
- "printedName": "UIKit.UIViewController",
- "usr": "c:objc(cs)UIViewController"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit20InteractionPresenterC33validatedPresentingViewControllerSo06UIViewH0CSgvg",
- "mangledName": "$s13ApptentiveKit20InteractionPresenterC33validatedPresentingViewControllerSo06UIViewH0CSgvg",
- "moduleName": "ApptentiveKit",
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Function",
- "name": "dismissPresentedViewController",
- "printedName": "dismissPresentedViewController(animated:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit20InteractionPresenterC30dismissPresentedViewController8animatedySb_tF",
- "mangledName": "$s13ApptentiveKit20InteractionPresenterC30dismissPresentedViewController8animatedySb_tF",
- "moduleName": "ApptentiveKit",
- "isOpen": true,
- "declAttributes": [
- "AccessControl"
- ],
- "funcSelfKind": "NonMutating"
- }
- ],
- "declKind": "Class",
- "usr": "s:13ApptentiveKit20InteractionPresenterC",
- "mangledName": "$s13ApptentiveKit20InteractionPresenterC",
- "moduleName": "ApptentiveKit",
- "isOpen": true,
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "InteractionPresenterError",
- "printedName": "InteractionPresenterError",
- "children": [
- {
- "kind": "Var",
- "name": "notImplemented",
- "printedName": "notImplemented",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.InteractionPresenterError.Type) -> (Swift.String, Swift.String) -> ApptentiveKit.InteractionPresenterError",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(Swift.String, Swift.String) -> ApptentiveKit.InteractionPresenterError",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "InteractionPresenterError",
- "printedName": "ApptentiveKit.InteractionPresenterError",
- "usr": "s:13ApptentiveKit25InteractionPresenterErrorO"
- },
- {
- "kind": "TypeNominal",
- "name": "Tuple",
- "printedName": "(Swift.String, Swift.String)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ]
- }
- ]
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.InteractionPresenterError.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "InteractionPresenterError",
- "printedName": "ApptentiveKit.InteractionPresenterError",
- "usr": "s:13ApptentiveKit25InteractionPresenterErrorO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:13ApptentiveKit25InteractionPresenterErrorO14notImplementedyACSS_SStcACmF",
- "mangledName": "$s13ApptentiveKit25InteractionPresenterErrorO14notImplementedyACSS_SStcACmF",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "Var",
- "name": "decodingFailed",
- "printedName": "decodingFailed",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.InteractionPresenterError.Type) -> (Swift.String, Swift.String) -> ApptentiveKit.InteractionPresenterError",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(Swift.String, Swift.String) -> ApptentiveKit.InteractionPresenterError",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "InteractionPresenterError",
- "printedName": "ApptentiveKit.InteractionPresenterError",
- "usr": "s:13ApptentiveKit25InteractionPresenterErrorO"
- },
- {
- "kind": "TypeNominal",
- "name": "Tuple",
- "printedName": "(Swift.String, Swift.String)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ]
- }
- ]
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.InteractionPresenterError.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "InteractionPresenterError",
- "printedName": "ApptentiveKit.InteractionPresenterError",
- "usr": "s:13ApptentiveKit25InteractionPresenterErrorO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:13ApptentiveKit25InteractionPresenterErrorO14decodingFailedyACSS_SStcACmF",
- "mangledName": "$s13ApptentiveKit25InteractionPresenterErrorO14decodingFailedyACSS_SStcACmF",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "Var",
- "name": "noPresentingViewController",
- "printedName": "noPresentingViewController",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.InteractionPresenterError.Type) -> ApptentiveKit.InteractionPresenterError",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "InteractionPresenterError",
- "printedName": "ApptentiveKit.InteractionPresenterError",
- "usr": "s:13ApptentiveKit25InteractionPresenterErrorO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.InteractionPresenterError.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "InteractionPresenterError",
- "printedName": "ApptentiveKit.InteractionPresenterError",
- "usr": "s:13ApptentiveKit25InteractionPresenterErrorO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:13ApptentiveKit25InteractionPresenterErrorO26noPresentingViewControlleryA2CmF",
- "mangledName": "$s13ApptentiveKit25InteractionPresenterErrorO26noPresentingViewControlleryA2CmF",
- "moduleName": "ApptentiveKit"
- }
- ],
- "declKind": "Enum",
- "usr": "s:13ApptentiveKit25InteractionPresenterErrorO",
- "mangledName": "$s13ApptentiveKit25InteractionPresenterErrorO",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "conformances": [
- {
- "kind": "Conformance",
- "name": "Error",
- "printedName": "Error",
- "usr": "s:s5ErrorP",
- "mangledName": "$ss5ErrorP"
- },
- {
- "kind": "Conformance",
- "name": "Sendable",
- "printedName": "Sendable",
- "usr": "s:s8SendableP",
- "mangledName": "$ss8SendableP"
- }
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "UIKit",
- "printedName": "UIKit",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "UIKit",
- "printedName": "UIKit",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "UIKit",
- "printedName": "UIKit",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "PhotosUI",
- "printedName": "PhotosUI",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "QuickLook",
- "printedName": "QuickLook",
- "declKind": "Import",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "Import",
- "name": "UIKit",
- "printedName": "UIKit",
- "declKind": "Import",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "UIKit",
- "printedName": "UIKit",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "DialogViewModelDelegate",
- "printedName": "DialogViewModelDelegate",
- "children": [
- {
- "kind": "Function",
- "name": "dismiss",
- "printedName": "dismiss()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit23DialogViewModelDelegateP7dismissyyF",
- "mangledName": "$s13ApptentiveKit23DialogViewModelDelegateP7dismissyyF",
- "moduleName": "ApptentiveKit",
- "genericSig": "<τ_0_0 where τ_0_0 : ApptentiveKit.DialogViewModelDelegate>",
- "sugared_genericSig": "",
- "protocolReq": true,
- "reqNewWitnessTableEntry": true,
- "funcSelfKind": "NonMutating"
- }
- ],
- "declKind": "Protocol",
- "usr": "s:13ApptentiveKit23DialogViewModelDelegateP",
- "mangledName": "$s13ApptentiveKit23DialogViewModelDelegateP",
- "moduleName": "ApptentiveKit",
- "genericSig": "<τ_0_0 : AnyObject>",
- "sugared_genericSig": "",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "DialogViewModel",
- "printedName": "DialogViewModel",
- "children": [
- {
- "kind": "Var",
- "name": "title",
- "printedName": "title",
- "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": "s:13ApptentiveKit15DialogViewModelC5titleSSSgvp",
- "mangledName": "$s13ApptentiveKit15DialogViewModelC5titleSSSgvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "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": "s:13ApptentiveKit15DialogViewModelC5titleSSSgvg",
- "mangledName": "$s13ApptentiveKit15DialogViewModelC5titleSSSgvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "message",
- "printedName": "message",
- "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": "s:13ApptentiveKit15DialogViewModelC7messageSSSgvp",
- "mangledName": "$s13ApptentiveKit15DialogViewModelC7messageSSSgvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "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": "s:13ApptentiveKit15DialogViewModelC7messageSSSgvg",
- "mangledName": "$s13ApptentiveKit15DialogViewModelC7messageSSSgvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "dialogType",
- "printedName": "dialogType",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "DialogType",
- "printedName": "ApptentiveKit.DialogViewModel.DialogType",
- "usr": "s:13ApptentiveKit15DialogViewModelC0C4TypeO"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit15DialogViewModelC10dialogTypeAC0cG0Ovp",
- "mangledName": "$s13ApptentiveKit15DialogViewModelC10dialogTypeAC0cG0Ovp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "DialogType",
- "printedName": "ApptentiveKit.DialogViewModel.DialogType",
- "usr": "s:13ApptentiveKit15DialogViewModelC0C4TypeO"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit15DialogViewModelC10dialogTypeAC0cG0Ovg",
- "mangledName": "$s13ApptentiveKit15DialogViewModelC10dialogTypeAC0cG0Ovg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "actions",
- "printedName": "actions",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Array",
- "printedName": "[ApptentiveKit.DialogViewModel.Action]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Action",
- "printedName": "ApptentiveKit.DialogViewModel.Action",
- "usr": "s:13ApptentiveKit15DialogViewModelC6ActionC"
- }
- ],
- "usr": "s:Sa"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit15DialogViewModelC7actionsSayAC6ActionCGvp",
- "mangledName": "$s13ApptentiveKit15DialogViewModelC7actionsSayAC6ActionCGvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Array",
- "printedName": "[ApptentiveKit.DialogViewModel.Action]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Action",
- "printedName": "ApptentiveKit.DialogViewModel.Action",
- "usr": "s:13ApptentiveKit15DialogViewModelC6ActionC"
- }
- ],
- "usr": "s:Sa"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit15DialogViewModelC7actionsSayAC6ActionCGvg",
- "mangledName": "$s13ApptentiveKit15DialogViewModelC7actionsSayAC6ActionCGvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "delegate",
- "printedName": "delegate",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "WeakStorage",
- "printedName": "ApptentiveKit.DialogViewModelDelegate?"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit15DialogViewModelC8delegateAA0cdE8Delegate_pSgvp",
- "mangledName": "$s13ApptentiveKit15DialogViewModelC8delegateAA0cdE8Delegate_pSgvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "ReferenceOwnership",
- "AccessControl",
- "RawDocComment"
- ],
- "ownership": 1,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "ApptentiveKit.DialogViewModelDelegate?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "DialogViewModelDelegate",
- "printedName": "ApptentiveKit.DialogViewModelDelegate",
- "usr": "s:13ApptentiveKit23DialogViewModelDelegateP"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit15DialogViewModelC8delegateAA0cdE8Delegate_pSgvg",
- "mangledName": "$s13ApptentiveKit15DialogViewModelC8delegateAA0cdE8Delegate_pSgvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "ApptentiveKit.DialogViewModelDelegate?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "DialogViewModelDelegate",
- "printedName": "ApptentiveKit.DialogViewModelDelegate",
- "usr": "s:13ApptentiveKit23DialogViewModelDelegateP"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit15DialogViewModelC8delegateAA0cdE8Delegate_pSgvs",
- "mangledName": "$s13ApptentiveKit15DialogViewModelC8delegateAA0cdE8Delegate_pSgvs",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit15DialogViewModelC8delegateAA0cdE8Delegate_pSgvM",
- "mangledName": "$s13ApptentiveKit15DialogViewModelC8delegateAA0cdE8Delegate_pSgvM",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Function",
- "name": "buttonSelected",
- "printedName": "buttonSelected(at:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit15DialogViewModelC14buttonSelected2atySi_tF",
- "mangledName": "$s13ApptentiveKit15DialogViewModelC14buttonSelected2atySi_tF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "launch",
- "printedName": "launch()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit15DialogViewModelC6launchyyF",
- "mangledName": "$s13ApptentiveKit15DialogViewModelC6launchyyF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "cancel",
- "printedName": "cancel()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit15DialogViewModelC6cancelyyF",
- "mangledName": "$s13ApptentiveKit15DialogViewModelC6cancelyyF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "TypeDecl",
- "name": "DialogType",
- "printedName": "DialogType",
- "children": [
- {
- "kind": "Var",
- "name": "enjoymentDialog",
- "printedName": "enjoymentDialog",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.DialogViewModel.DialogType.Type) -> ApptentiveKit.DialogViewModel.DialogType",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "DialogType",
- "printedName": "ApptentiveKit.DialogViewModel.DialogType",
- "usr": "s:13ApptentiveKit15DialogViewModelC0C4TypeO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.DialogViewModel.DialogType.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "DialogType",
- "printedName": "ApptentiveKit.DialogViewModel.DialogType",
- "usr": "s:13ApptentiveKit15DialogViewModelC0C4TypeO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:13ApptentiveKit15DialogViewModelC0C4TypeO09enjoymentC0yA2EmF",
- "mangledName": "$s13ApptentiveKit15DialogViewModelC0C4TypeO09enjoymentC0yA2EmF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "textModal",
- "printedName": "textModal",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.DialogViewModel.DialogType.Type) -> ApptentiveKit.DialogViewModel.DialogType",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "DialogType",
- "printedName": "ApptentiveKit.DialogViewModel.DialogType",
- "usr": "s:13ApptentiveKit15DialogViewModelC0C4TypeO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.DialogViewModel.DialogType.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "DialogType",
- "printedName": "ApptentiveKit.DialogViewModel.DialogType",
- "usr": "s:13ApptentiveKit15DialogViewModelC0C4TypeO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:13ApptentiveKit15DialogViewModelC0C4TypeO9textModalyA2EmF",
- "mangledName": "$s13ApptentiveKit15DialogViewModelC0C4TypeO9textModalyA2EmF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Function",
- "name": "==",
- "printedName": "==(_:_:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- },
- {
- "kind": "TypeNominal",
- "name": "DialogType",
- "printedName": "ApptentiveKit.DialogViewModel.DialogType",
- "usr": "s:13ApptentiveKit15DialogViewModelC0C4TypeO"
- },
- {
- "kind": "TypeNominal",
- "name": "DialogType",
- "printedName": "ApptentiveKit.DialogViewModel.DialogType",
- "usr": "s:13ApptentiveKit15DialogViewModelC0C4TypeO"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit15DialogViewModelC0C4TypeO2eeoiySbAE_AEtFZ",
- "mangledName": "$s13ApptentiveKit15DialogViewModelC0C4TypeO2eeoiySbAE_AEtFZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Var",
- "name": "hashValue",
- "printedName": "hashValue",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit15DialogViewModelC0C4TypeO9hashValueSivp",
- "mangledName": "$s13ApptentiveKit15DialogViewModelC0C4TypeO9hashValueSivp",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit15DialogViewModelC0C4TypeO9hashValueSivg",
- "mangledName": "$s13ApptentiveKit15DialogViewModelC0C4TypeO9hashValueSivg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Function",
- "name": "hash",
- "printedName": "hash(into:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Hasher",
- "printedName": "Swift.Hasher",
- "paramValueOwnership": "InOut",
- "usr": "s:s6HasherV"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit15DialogViewModelC0C4TypeO4hash4intoys6HasherVz_tF",
- "mangledName": "$s13ApptentiveKit15DialogViewModelC0C4TypeO4hash4intoys6HasherVz_tF",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "funcSelfKind": "NonMutating"
- }
- ],
- "declKind": "Enum",
- "usr": "s:13ApptentiveKit15DialogViewModelC0C4TypeO",
- "mangledName": "$s13ApptentiveKit15DialogViewModelC0C4TypeO",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "conformances": [
- {
- "kind": "Conformance",
- "name": "Equatable",
- "printedName": "Equatable",
- "usr": "s:SQ",
- "mangledName": "$sSQ"
- },
- {
- "kind": "Conformance",
- "name": "Hashable",
- "printedName": "Hashable",
- "usr": "s:SH",
- "mangledName": "$sSH"
- }
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "Action",
- "printedName": "Action",
- "children": [
- {
- "kind": "Var",
- "name": "label",
- "printedName": "label",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit15DialogViewModelC6ActionC5labelSSvp",
- "mangledName": "$s13ApptentiveKit15DialogViewModelC6ActionC5labelSSvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit15DialogViewModelC6ActionC5labelSSvg",
- "mangledName": "$s13ApptentiveKit15DialogViewModelC6ActionC5labelSSvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "actionType",
- "printedName": "actionType",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ActionType",
- "printedName": "ApptentiveKit.DialogViewModel.Action.ActionType",
- "usr": "s:13ApptentiveKit15DialogViewModelC6ActionC0F4TypeO"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit15DialogViewModelC6ActionC10actionTypeAE0fH0Ovp",
- "mangledName": "$s13ApptentiveKit15DialogViewModelC6ActionC10actionTypeAE0fH0Ovp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ActionType",
- "printedName": "ApptentiveKit.DialogViewModel.Action.ActionType",
- "usr": "s:13ApptentiveKit15DialogViewModelC6ActionC0F4TypeO"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit15DialogViewModelC6ActionC10actionTypeAE0fH0Ovg",
- "mangledName": "$s13ApptentiveKit15DialogViewModelC6ActionC10actionTypeAE0fH0Ovg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "buttonTapped",
- "printedName": "buttonTapped",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "() -> ()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ]
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit15DialogViewModelC6ActionC12buttonTappedyycvp",
- "mangledName": "$s13ApptentiveKit15DialogViewModelC6ActionC12buttonTappedyycvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "() -> ()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ]
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit15DialogViewModelC6ActionC12buttonTappedyycvg",
- "mangledName": "$s13ApptentiveKit15DialogViewModelC6ActionC12buttonTappedyycvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "ActionType",
- "printedName": "ActionType",
- "children": [
- {
- "kind": "Var",
- "name": "dismiss",
- "printedName": "dismiss",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.DialogViewModel.Action.ActionType.Type) -> ApptentiveKit.DialogViewModel.Action.ActionType",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ActionType",
- "printedName": "ApptentiveKit.DialogViewModel.Action.ActionType",
- "usr": "s:13ApptentiveKit15DialogViewModelC6ActionC0F4TypeO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.DialogViewModel.Action.ActionType.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ActionType",
- "printedName": "ApptentiveKit.DialogViewModel.Action.ActionType",
- "usr": "s:13ApptentiveKit15DialogViewModelC6ActionC0F4TypeO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:13ApptentiveKit15DialogViewModelC6ActionC0F4TypeO7dismissyA2GmF",
- "mangledName": "$s13ApptentiveKit15DialogViewModelC6ActionC0F4TypeO7dismissyA2GmF",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "Var",
- "name": "interaction",
- "printedName": "interaction",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.DialogViewModel.Action.ActionType.Type) -> ApptentiveKit.DialogViewModel.Action.ActionType",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ActionType",
- "printedName": "ApptentiveKit.DialogViewModel.Action.ActionType",
- "usr": "s:13ApptentiveKit15DialogViewModelC6ActionC0F4TypeO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.DialogViewModel.Action.ActionType.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ActionType",
- "printedName": "ApptentiveKit.DialogViewModel.Action.ActionType",
- "usr": "s:13ApptentiveKit15DialogViewModelC6ActionC0F4TypeO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:13ApptentiveKit15DialogViewModelC6ActionC0F4TypeO11interactionyA2GmF",
- "mangledName": "$s13ApptentiveKit15DialogViewModelC6ActionC0F4TypeO11interactionyA2GmF",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "Var",
- "name": "yes",
- "printedName": "yes",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.DialogViewModel.Action.ActionType.Type) -> ApptentiveKit.DialogViewModel.Action.ActionType",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ActionType",
- "printedName": "ApptentiveKit.DialogViewModel.Action.ActionType",
- "usr": "s:13ApptentiveKit15DialogViewModelC6ActionC0F4TypeO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.DialogViewModel.Action.ActionType.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ActionType",
- "printedName": "ApptentiveKit.DialogViewModel.Action.ActionType",
- "usr": "s:13ApptentiveKit15DialogViewModelC6ActionC0F4TypeO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:13ApptentiveKit15DialogViewModelC6ActionC0F4TypeO3yesyA2GmF",
- "mangledName": "$s13ApptentiveKit15DialogViewModelC6ActionC0F4TypeO3yesyA2GmF",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "Var",
- "name": "no",
- "printedName": "no",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.DialogViewModel.Action.ActionType.Type) -> ApptentiveKit.DialogViewModel.Action.ActionType",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ActionType",
- "printedName": "ApptentiveKit.DialogViewModel.Action.ActionType",
- "usr": "s:13ApptentiveKit15DialogViewModelC6ActionC0F4TypeO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.DialogViewModel.Action.ActionType.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ActionType",
- "printedName": "ApptentiveKit.DialogViewModel.Action.ActionType",
- "usr": "s:13ApptentiveKit15DialogViewModelC6ActionC0F4TypeO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:13ApptentiveKit15DialogViewModelC6ActionC0F4TypeO2noyA2GmF",
- "mangledName": "$s13ApptentiveKit15DialogViewModelC6ActionC0F4TypeO2noyA2GmF",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(rawValue:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "ApptentiveKit.DialogViewModel.Action.ActionType?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ActionType",
- "printedName": "ApptentiveKit.DialogViewModel.Action.ActionType",
- "usr": "s:13ApptentiveKit15DialogViewModelC6ActionC0F4TypeO"
- }
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Constructor",
- "usr": "s:13ApptentiveKit15DialogViewModelC6ActionC0F4TypeO8rawValueAGSgSS_tcfc",
- "mangledName": "$s13ApptentiveKit15DialogViewModelC6ActionC0F4TypeO8rawValueAGSgSS_tcfc",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "init_kind": "Designated"
- },
- {
- "kind": "Var",
- "name": "rawValue",
- "printedName": "rawValue",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit15DialogViewModelC6ActionC0F4TypeO8rawValueSSvp",
- "mangledName": "$s13ApptentiveKit15DialogViewModelC6ActionC0F4TypeO8rawValueSSvp",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit15DialogViewModelC6ActionC0F4TypeO8rawValueSSvg",
- "mangledName": "$s13ApptentiveKit15DialogViewModelC6ActionC0F4TypeO8rawValueSSvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "get"
- }
- ]
- }
- ],
- "declKind": "Enum",
- "usr": "s:13ApptentiveKit15DialogViewModelC6ActionC0F4TypeO",
- "mangledName": "$s13ApptentiveKit15DialogViewModelC6ActionC0F4TypeO",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl"
- ],
- "enumRawTypeName": "String",
- "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": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ]
- }
- ],
- "usr": "s:SY",
- "mangledName": "$sSY"
- }
- ]
- }
- ],
- "declKind": "Class",
- "usr": "s:13ApptentiveKit15DialogViewModelC6ActionC",
- "mangledName": "$s13ApptentiveKit15DialogViewModelC6ActionC",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasMissingDesignatedInitializers": true
- }
- ],
- "declKind": "Class",
- "usr": "s:13ApptentiveKit15DialogViewModelC",
- "mangledName": "$s13ApptentiveKit15DialogViewModelC",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "hasMissingDesignatedInitializers": true
- },
- {
- "kind": "Import",
- "name": "UIKit",
- "printedName": "UIKit",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "UIKit",
- "printedName": "UIKit",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "DialogView",
- "printedName": "DialogView",
- "children": [
- {
- "kind": "Var",
- "name": "titleTextColor",
- "printedName": "titleTextColor",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Var",
- "usr": "c:@M@ApptentiveKit@objc(cs)DialogView(py)titleTextColor",
- "mangledName": "$s13ApptentiveKit10DialogViewC14titleTextColorSo7UIColorCvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "HasInitialValue",
- "Custom",
- "HasStorage",
- "Dynamic",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@M@ApptentiveKit@objc(cs)DialogView(im)titleTextColor",
- "mangledName": "$s13ApptentiveKit10DialogViewC14titleTextColorSo7UIColorCvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Dynamic",
- "ObjC"
- ],
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@M@ApptentiveKit@objc(cs)DialogView(im)setTitleTextColor:",
- "mangledName": "$s13ApptentiveKit10DialogViewC14titleTextColorSo7UIColorCvs",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Dynamic",
- "ObjC"
- ],
- "accessorKind": "set"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "messageTextColor",
- "printedName": "messageTextColor",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Var",
- "usr": "c:@M@ApptentiveKit@objc(cs)DialogView(py)messageTextColor",
- "mangledName": "$s13ApptentiveKit10DialogViewC16messageTextColorSo7UIColorCvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "HasInitialValue",
- "Custom",
- "HasStorage",
- "Dynamic",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@M@ApptentiveKit@objc(cs)DialogView(im)messageTextColor",
- "mangledName": "$s13ApptentiveKit10DialogViewC16messageTextColorSo7UIColorCvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Dynamic",
- "ObjC"
- ],
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@M@ApptentiveKit@objc(cs)DialogView(im)setMessageTextColor:",
- "mangledName": "$s13ApptentiveKit10DialogViewC16messageTextColorSo7UIColorCvs",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Dynamic",
- "ObjC"
- ],
- "accessorKind": "set"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "titleFont",
- "printedName": "titleFont",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Var",
- "usr": "c:@M@ApptentiveKit@objc(cs)DialogView(py)titleFont",
- "mangledName": "$s13ApptentiveKit10DialogViewC9titleFontSo6UIFontCvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "HasInitialValue",
- "Custom",
- "HasStorage",
- "Dynamic",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@M@ApptentiveKit@objc(cs)DialogView(im)titleFont",
- "mangledName": "$s13ApptentiveKit10DialogViewC9titleFontSo6UIFontCvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Dynamic",
- "ObjC"
- ],
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@M@ApptentiveKit@objc(cs)DialogView(im)setTitleFont:",
- "mangledName": "$s13ApptentiveKit10DialogViewC9titleFontSo6UIFontCvs",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Dynamic",
- "ObjC"
- ],
- "accessorKind": "set"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "messageFont",
- "printedName": "messageFont",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Var",
- "usr": "c:@M@ApptentiveKit@objc(cs)DialogView(py)messageFont",
- "mangledName": "$s13ApptentiveKit10DialogViewC11messageFontSo6UIFontCvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "HasInitialValue",
- "Custom",
- "HasStorage",
- "Dynamic",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@M@ApptentiveKit@objc(cs)DialogView(im)messageFont",
- "mangledName": "$s13ApptentiveKit10DialogViewC11messageFontSo6UIFontCvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Dynamic",
- "ObjC"
- ],
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@M@ApptentiveKit@objc(cs)DialogView(im)setMessageFont:",
- "mangledName": "$s13ApptentiveKit10DialogViewC11messageFontSo6UIFontCvs",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Dynamic",
- "ObjC"
- ],
- "accessorKind": "set"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "headerImage",
- "printedName": "headerImage",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "UIKit.UIImage?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIImage",
- "printedName": "UIKit.UIImage",
- "usr": "c:objc(cs)UIImage"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Var",
- "usr": "c:@M@ApptentiveKit@objc(cs)DialogView(py)headerImage",
- "mangledName": "$s13ApptentiveKit10DialogViewC11headerImageSo7UIImageCSgvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "HasInitialValue",
- "Custom",
- "HasStorage",
- "Dynamic",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "UIKit.UIImage?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIImage",
- "printedName": "UIKit.UIImage",
- "usr": "c:objc(cs)UIImage"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@M@ApptentiveKit@objc(cs)DialogView(im)headerImage",
- "mangledName": "$s13ApptentiveKit10DialogViewC11headerImageSo7UIImageCSgvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Dynamic",
- "ObjC"
- ],
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "UIKit.UIImage?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIImage",
- "printedName": "UIKit.UIImage",
- "usr": "c:objc(cs)UIImage"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@M@ApptentiveKit@objc(cs)DialogView(im)setHeaderImage:",
- "mangledName": "$s13ApptentiveKit10DialogViewC11headerImageSo7UIImageCSgvs",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Dynamic",
- "ObjC"
- ],
- "accessorKind": "set"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "cornerRadius",
- "printedName": "cornerRadius",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "CGFloat",
- "printedName": "CoreGraphics.CGFloat",
- "usr": "s:14CoreFoundation7CGFloatV"
- }
- ],
- "declKind": "Var",
- "usr": "c:@M@ApptentiveKit@objc(cs)DialogView(py)cornerRadius",
- "mangledName": "$s13ApptentiveKit10DialogViewC12cornerRadius12CoreGraphics7CGFloatVvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "HasInitialValue",
- "Custom",
- "HasStorage",
- "Dynamic",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "CGFloat",
- "printedName": "CoreGraphics.CGFloat",
- "usr": "s:14CoreFoundation7CGFloatV"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@M@ApptentiveKit@objc(cs)DialogView(im)cornerRadius",
- "mangledName": "$s13ApptentiveKit10DialogViewC12cornerRadius12CoreGraphics7CGFloatVvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Dynamic",
- "ObjC"
- ],
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "CGFloat",
- "printedName": "CoreGraphics.CGFloat",
- "usr": "s:14CoreFoundation7CGFloatV"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@M@ApptentiveKit@objc(cs)DialogView(im)setCornerRadius:",
- "mangledName": "$s13ApptentiveKit10DialogViewC12cornerRadius12CoreGraphics7CGFloatVvs",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Dynamic",
- "ObjC"
- ],
- "accessorKind": "set"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "buttonSpacing",
- "printedName": "buttonSpacing",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "CGFloat",
- "printedName": "CoreGraphics.CGFloat",
- "usr": "s:14CoreFoundation7CGFloatV"
- }
- ],
- "declKind": "Var",
- "usr": "c:@M@ApptentiveKit@objc(cs)DialogView(py)buttonSpacing",
- "mangledName": "$s13ApptentiveKit10DialogViewC13buttonSpacing12CoreGraphics7CGFloatVvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "HasInitialValue",
- "Custom",
- "HasStorage",
- "Dynamic",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "CGFloat",
- "printedName": "CoreGraphics.CGFloat",
- "usr": "s:14CoreFoundation7CGFloatV"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@M@ApptentiveKit@objc(cs)DialogView(im)buttonSpacing",
- "mangledName": "$s13ApptentiveKit10DialogViewC13buttonSpacing12CoreGraphics7CGFloatVvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Dynamic",
- "ObjC"
- ],
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "CGFloat",
- "printedName": "CoreGraphics.CGFloat",
- "usr": "s:14CoreFoundation7CGFloatV"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@M@ApptentiveKit@objc(cs)DialogView(im)setButtonSpacing:",
- "mangledName": "$s13ApptentiveKit10DialogViewC13buttonSpacing12CoreGraphics7CGFloatVvs",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Dynamic",
- "ObjC"
- ],
- "accessorKind": "set"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "buttonInset",
- "printedName": "buttonInset",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIEdgeInsets",
- "printedName": "UIKit.UIEdgeInsets",
- "usr": "c:@S@UIEdgeInsets"
- }
- ],
- "declKind": "Var",
- "usr": "c:@M@ApptentiveKit@objc(cs)DialogView(py)buttonInset",
- "mangledName": "$s13ApptentiveKit10DialogViewC11buttonInsetSo12UIEdgeInsetsVvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "HasInitialValue",
- "Custom",
- "HasStorage",
- "Dynamic",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIEdgeInsets",
- "printedName": "UIKit.UIEdgeInsets",
- "usr": "c:@S@UIEdgeInsets"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@M@ApptentiveKit@objc(cs)DialogView(im)buttonInset",
- "mangledName": "$s13ApptentiveKit10DialogViewC11buttonInsetSo12UIEdgeInsetsVvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Dynamic",
- "ObjC"
- ],
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIEdgeInsets",
- "printedName": "UIKit.UIEdgeInsets",
- "usr": "c:@S@UIEdgeInsets"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@M@ApptentiveKit@objc(cs)DialogView(im)setButtonInset:",
- "mangledName": "$s13ApptentiveKit10DialogViewC11buttonInsetSo12UIEdgeInsetsVvs",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Dynamic",
- "ObjC"
- ],
- "accessorKind": "set"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "separatorsAreHidden",
- "printedName": "separatorsAreHidden",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ],
- "declKind": "Var",
- "usr": "c:@M@ApptentiveKit@objc(cs)DialogView(py)separatorsAreHidden",
- "mangledName": "$s13ApptentiveKit10DialogViewC19separatorsAreHiddenSbvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "HasInitialValue",
- "Custom",
- "HasStorage",
- "Dynamic",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@M@ApptentiveKit@objc(cs)DialogView(im)separatorsAreHidden",
- "mangledName": "$s13ApptentiveKit10DialogViewC19separatorsAreHiddenSbvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Dynamic",
- "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@ApptentiveKit@objc(cs)DialogView(im)setSeparatorsAreHidden:",
- "mangledName": "$s13ApptentiveKit10DialogViewC19separatorsAreHiddenSbvs",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Dynamic",
- "ObjC"
- ],
- "accessorKind": "set"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "separatorColor",
- "printedName": "separatorColor",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Var",
- "usr": "c:@M@ApptentiveKit@objc(cs)DialogView(py)separatorColor",
- "mangledName": "$s13ApptentiveKit10DialogViewC14separatorColorSo7UIColorCvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "HasInitialValue",
- "Custom",
- "HasStorage",
- "Dynamic",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@M@ApptentiveKit@objc(cs)DialogView(im)separatorColor",
- "mangledName": "$s13ApptentiveKit10DialogViewC14separatorColorSo7UIColorCvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Dynamic",
- "ObjC"
- ],
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@M@ApptentiveKit@objc(cs)DialogView(im)setSeparatorColor:",
- "mangledName": "$s13ApptentiveKit10DialogViewC14separatorColorSo7UIColorCvs",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Dynamic",
- "ObjC"
- ],
- "accessorKind": "set"
- }
- ]
- },
- {
- "kind": "Function",
- "name": "didMoveToWindow",
- "printedName": "didMoveToWindow()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Func",
- "usr": "c:@M@ApptentiveKit@objc(cs)DialogView(im)didMoveToWindow",
- "mangledName": "$s13ApptentiveKit10DialogViewC15didMoveToWindowyyF",
- "moduleName": "ApptentiveKit",
- "overriding": true,
- "objc_name": "didMoveToWindow",
- "declAttributes": [
- "Dynamic",
- "ObjC",
- "Custom",
- "Override",
- "AccessControl",
- "RawDocComment"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "layoutSubviews",
- "printedName": "layoutSubviews()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Func",
- "usr": "c:@M@ApptentiveKit@objc(cs)DialogView(im)layoutSubviews",
- "mangledName": "$s13ApptentiveKit10DialogViewC14layoutSubviewsyyF",
- "moduleName": "ApptentiveKit",
- "overriding": true,
- "objc_name": "layoutSubviews",
- "declAttributes": [
- "Dynamic",
- "ObjC",
- "Custom",
- "Override",
- "AccessControl",
- "RawDocComment"
- ],
- "funcSelfKind": "NonMutating"
- }
- ],
- "declKind": "Class",
- "usr": "c:@M@ApptentiveKit@objc(cs)DialogView",
- "mangledName": "$s13ApptentiveKit10DialogViewC",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Custom",
- "AccessControl",
- "RawDocComment",
- "ObjC"
- ],
- "superclassUsr": "c:objc(cs)UIView",
- "hasMissingDesignatedInitializers": true,
- "inheritsConvenienceInitializers": true,
- "superclassNames": [
- "UIKit.UIView",
- "UIKit.UIResponder",
- "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": "Conformance",
- "name": "__DefaultCustomPlaygroundQuickLookable",
- "printedName": "__DefaultCustomPlaygroundQuickLookable",
- "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP",
- "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP"
- },
- {
- "kind": "Conformance",
- "name": "Sendable",
- "printedName": "Sendable",
- "usr": "s:s8SendableP",
- "mangledName": "$ss8SendableP"
- }
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "UIKit",
- "printedName": "UIKit",
- "declKind": "Import",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "UIKit",
- "printedName": "UIKit",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "UIKit",
- "printedName": "UIKit",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "UIKit",
- "printedName": "UIKit",
- "declKind": "Import",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "UIKit",
- "printedName": "UIKit",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "ApptentiveAuthenticationFailureReason",
- "printedName": "ApptentiveAuthenticationFailureReason",
- "children": [
- {
- "kind": "Var",
- "name": "unknown",
- "printedName": "unknown",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.ApptentiveAuthenticationFailureReason.Type) -> ApptentiveKit.ApptentiveAuthenticationFailureReason",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveAuthenticationFailureReason",
- "printedName": "ApptentiveKit.ApptentiveAuthenticationFailureReason",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveAuthenticationFailureReason"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.ApptentiveAuthenticationFailureReason.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveAuthenticationFailureReason",
- "printedName": "ApptentiveKit.ApptentiveAuthenticationFailureReason",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveAuthenticationFailureReason"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveAuthenticationFailureReason@ApptentiveAuthenticationFailureReasonUnknown",
- "mangledName": "$s13ApptentiveKit0A27AuthenticationFailureReasonO7unknownyA2CmF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment",
- "ObjC"
- ],
- "fixedbinaryorder": 0
- },
- {
- "kind": "Var",
- "name": "invalidAlgorithm",
- "printedName": "invalidAlgorithm",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.ApptentiveAuthenticationFailureReason.Type) -> ApptentiveKit.ApptentiveAuthenticationFailureReason",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveAuthenticationFailureReason",
- "printedName": "ApptentiveKit.ApptentiveAuthenticationFailureReason",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveAuthenticationFailureReason"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.ApptentiveAuthenticationFailureReason.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveAuthenticationFailureReason",
- "printedName": "ApptentiveKit.ApptentiveAuthenticationFailureReason",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveAuthenticationFailureReason"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveAuthenticationFailureReason@ApptentiveAuthenticationFailureReasonInvalidAlgorithm",
- "mangledName": "$s13ApptentiveKit0A27AuthenticationFailureReasonO16invalidAlgorithmyA2CmF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment",
- "ObjC"
- ],
- "fixedbinaryorder": 1
- },
- {
- "kind": "Var",
- "name": "malformedToken",
- "printedName": "malformedToken",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.ApptentiveAuthenticationFailureReason.Type) -> ApptentiveKit.ApptentiveAuthenticationFailureReason",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveAuthenticationFailureReason",
- "printedName": "ApptentiveKit.ApptentiveAuthenticationFailureReason",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveAuthenticationFailureReason"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.ApptentiveAuthenticationFailureReason.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveAuthenticationFailureReason",
- "printedName": "ApptentiveKit.ApptentiveAuthenticationFailureReason",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveAuthenticationFailureReason"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveAuthenticationFailureReason@ApptentiveAuthenticationFailureReasonMalformedToken",
- "mangledName": "$s13ApptentiveKit0A27AuthenticationFailureReasonO14malformedTokenyA2CmF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment",
- "ObjC"
- ],
- "fixedbinaryorder": 2
- },
- {
- "kind": "Var",
- "name": "invalidToken",
- "printedName": "invalidToken",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.ApptentiveAuthenticationFailureReason.Type) -> ApptentiveKit.ApptentiveAuthenticationFailureReason",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveAuthenticationFailureReason",
- "printedName": "ApptentiveKit.ApptentiveAuthenticationFailureReason",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveAuthenticationFailureReason"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.ApptentiveAuthenticationFailureReason.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveAuthenticationFailureReason",
- "printedName": "ApptentiveKit.ApptentiveAuthenticationFailureReason",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveAuthenticationFailureReason"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveAuthenticationFailureReason@ApptentiveAuthenticationFailureReasonInvalidToken",
- "mangledName": "$s13ApptentiveKit0A27AuthenticationFailureReasonO12invalidTokenyA2CmF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment",
- "ObjC"
- ],
- "fixedbinaryorder": 3
- },
- {
- "kind": "Var",
- "name": "missingSubClaim",
- "printedName": "missingSubClaim",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.ApptentiveAuthenticationFailureReason.Type) -> ApptentiveKit.ApptentiveAuthenticationFailureReason",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveAuthenticationFailureReason",
- "printedName": "ApptentiveKit.ApptentiveAuthenticationFailureReason",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveAuthenticationFailureReason"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.ApptentiveAuthenticationFailureReason.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveAuthenticationFailureReason",
- "printedName": "ApptentiveKit.ApptentiveAuthenticationFailureReason",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveAuthenticationFailureReason"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveAuthenticationFailureReason@ApptentiveAuthenticationFailureReasonMissingSubClaim",
- "mangledName": "$s13ApptentiveKit0A27AuthenticationFailureReasonO15missingSubClaimyA2CmF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment",
- "ObjC"
- ],
- "fixedbinaryorder": 4
- },
- {
- "kind": "Var",
- "name": "mismatchedSubClaim",
- "printedName": "mismatchedSubClaim",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.ApptentiveAuthenticationFailureReason.Type) -> ApptentiveKit.ApptentiveAuthenticationFailureReason",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveAuthenticationFailureReason",
- "printedName": "ApptentiveKit.ApptentiveAuthenticationFailureReason",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveAuthenticationFailureReason"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.ApptentiveAuthenticationFailureReason.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveAuthenticationFailureReason",
- "printedName": "ApptentiveKit.ApptentiveAuthenticationFailureReason",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveAuthenticationFailureReason"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveAuthenticationFailureReason@ApptentiveAuthenticationFailureReasonMismatchedSubClaim",
- "mangledName": "$s13ApptentiveKit0A27AuthenticationFailureReasonO18mismatchedSubClaimyA2CmF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment",
- "ObjC"
- ],
- "fixedbinaryorder": 5
- },
- {
- "kind": "Var",
- "name": "invalidSubClaim",
- "printedName": "invalidSubClaim",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.ApptentiveAuthenticationFailureReason.Type) -> ApptentiveKit.ApptentiveAuthenticationFailureReason",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveAuthenticationFailureReason",
- "printedName": "ApptentiveKit.ApptentiveAuthenticationFailureReason",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveAuthenticationFailureReason"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.ApptentiveAuthenticationFailureReason.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveAuthenticationFailureReason",
- "printedName": "ApptentiveKit.ApptentiveAuthenticationFailureReason",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveAuthenticationFailureReason"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveAuthenticationFailureReason@ApptentiveAuthenticationFailureReasonInvalidSubClaim",
- "mangledName": "$s13ApptentiveKit0A27AuthenticationFailureReasonO15invalidSubClaimyA2CmF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment",
- "ObjC"
- ],
- "fixedbinaryorder": 6
- },
- {
- "kind": "Var",
- "name": "expiredToken",
- "printedName": "expiredToken",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.ApptentiveAuthenticationFailureReason.Type) -> ApptentiveKit.ApptentiveAuthenticationFailureReason",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveAuthenticationFailureReason",
- "printedName": "ApptentiveKit.ApptentiveAuthenticationFailureReason",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveAuthenticationFailureReason"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.ApptentiveAuthenticationFailureReason.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveAuthenticationFailureReason",
- "printedName": "ApptentiveKit.ApptentiveAuthenticationFailureReason",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveAuthenticationFailureReason"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveAuthenticationFailureReason@ApptentiveAuthenticationFailureReasonExpiredToken",
- "mangledName": "$s13ApptentiveKit0A27AuthenticationFailureReasonO12expiredTokenyA2CmF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment",
- "ObjC"
- ],
- "fixedbinaryorder": 7
- },
- {
- "kind": "Var",
- "name": "revokedToken",
- "printedName": "revokedToken",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.ApptentiveAuthenticationFailureReason.Type) -> ApptentiveKit.ApptentiveAuthenticationFailureReason",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveAuthenticationFailureReason",
- "printedName": "ApptentiveKit.ApptentiveAuthenticationFailureReason",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveAuthenticationFailureReason"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.ApptentiveAuthenticationFailureReason.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveAuthenticationFailureReason",
- "printedName": "ApptentiveKit.ApptentiveAuthenticationFailureReason",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveAuthenticationFailureReason"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveAuthenticationFailureReason@ApptentiveAuthenticationFailureReasonRevokedToken",
- "mangledName": "$s13ApptentiveKit0A27AuthenticationFailureReasonO12revokedTokenyA2CmF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment",
- "ObjC"
- ],
- "fixedbinaryorder": 8
- },
- {
- "kind": "Var",
- "name": "missingAppKey",
- "printedName": "missingAppKey",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.ApptentiveAuthenticationFailureReason.Type) -> ApptentiveKit.ApptentiveAuthenticationFailureReason",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveAuthenticationFailureReason",
- "printedName": "ApptentiveKit.ApptentiveAuthenticationFailureReason",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveAuthenticationFailureReason"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.ApptentiveAuthenticationFailureReason.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveAuthenticationFailureReason",
- "printedName": "ApptentiveKit.ApptentiveAuthenticationFailureReason",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveAuthenticationFailureReason"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveAuthenticationFailureReason@ApptentiveAuthenticationFailureReasonMissingAppKey",
- "mangledName": "$s13ApptentiveKit0A27AuthenticationFailureReasonO13missingAppKeyyA2CmF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment",
- "ObjC"
- ],
- "fixedbinaryorder": 9
- },
- {
- "kind": "Var",
- "name": "missingAppSignature",
- "printedName": "missingAppSignature",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.ApptentiveAuthenticationFailureReason.Type) -> ApptentiveKit.ApptentiveAuthenticationFailureReason",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveAuthenticationFailureReason",
- "printedName": "ApptentiveKit.ApptentiveAuthenticationFailureReason",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveAuthenticationFailureReason"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.ApptentiveAuthenticationFailureReason.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveAuthenticationFailureReason",
- "printedName": "ApptentiveKit.ApptentiveAuthenticationFailureReason",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveAuthenticationFailureReason"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveAuthenticationFailureReason@ApptentiveAuthenticationFailureReasonMissingAppSignature",
- "mangledName": "$s13ApptentiveKit0A27AuthenticationFailureReasonO19missingAppSignatureyA2CmF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment",
- "ObjC"
- ],
- "fixedbinaryorder": 10
- },
- {
- "kind": "Var",
- "name": "invalidKeySignaturePair",
- "printedName": "invalidKeySignaturePair",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.ApptentiveAuthenticationFailureReason.Type) -> ApptentiveKit.ApptentiveAuthenticationFailureReason",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveAuthenticationFailureReason",
- "printedName": "ApptentiveKit.ApptentiveAuthenticationFailureReason",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveAuthenticationFailureReason"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.ApptentiveAuthenticationFailureReason.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveAuthenticationFailureReason",
- "printedName": "ApptentiveKit.ApptentiveAuthenticationFailureReason",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveAuthenticationFailureReason"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveAuthenticationFailureReason@ApptentiveAuthenticationFailureReasonInvalidKeySignaturePair",
- "mangledName": "$s13ApptentiveKit0A27AuthenticationFailureReasonO23invalidKeySignaturePairyA2CmF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment",
- "ObjC"
- ],
- "fixedbinaryorder": 11
- },
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(rawValue:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "ApptentiveKit.ApptentiveAuthenticationFailureReason?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveAuthenticationFailureReason",
- "printedName": "ApptentiveKit.ApptentiveAuthenticationFailureReason",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveAuthenticationFailureReason"
- }
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ],
- "declKind": "Constructor",
- "usr": "s:13ApptentiveKit0A27AuthenticationFailureReasonO8rawValueACSgSi_tcfc",
- "mangledName": "$s13ApptentiveKit0A27AuthenticationFailureReasonO8rawValueACSgSi_tcfc",
- "moduleName": "ApptentiveKit",
- "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:13ApptentiveKit0A27AuthenticationFailureReasonO8rawValueSivp",
- "mangledName": "$s13ApptentiveKit0A27AuthenticationFailureReasonO8rawValueSivp",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A27AuthenticationFailureReasonO8rawValueSivg",
- "mangledName": "$s13ApptentiveKit0A27AuthenticationFailureReasonO8rawValueSivg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "get"
- }
- ]
- }
- ],
- "declKind": "Enum",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveAuthenticationFailureReason",
- "mangledName": "$s13ApptentiveKit0A27AuthenticationFailureReasonO",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "declAttributes": [
- "AccessControl",
- "ObjC",
- "Available"
- ],
- "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": "TypeDecl",
- "name": "ApptentiveConfiguration",
- "printedName": "ApptentiveConfiguration",
- "children": [
- {
- "kind": "Var",
- "name": "apptentiveKey",
- "printedName": "apptentiveKey",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveConfiguration(py)apptentiveKey",
- "mangledName": "$s13ApptentiveKit0A13ConfigurationC13apptentiveKeySSvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveConfiguration(im)apptentiveKey",
- "mangledName": "$s13ApptentiveKit0A13ConfigurationC13apptentiveKeySSvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final",
- "ObjC"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveSignature",
- "printedName": "apptentiveSignature",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveConfiguration(py)apptentiveSignature",
- "mangledName": "$s13ApptentiveKit0A13ConfigurationC19apptentiveSignatureSSvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveConfiguration(im)apptentiveSignature",
- "mangledName": "$s13ApptentiveKit0A13ConfigurationC19apptentiveSignatureSSvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final",
- "ObjC"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "logLevel",
- "printedName": "logLevel",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveLogLevel",
- "printedName": "ApptentiveKit.ApptentiveLogLevel",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveLogLevel"
- }
- ],
- "declKind": "Var",
- "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveConfiguration(py)logLevel",
- "mangledName": "$s13ApptentiveKit0A13ConfigurationC8logLevelAA0a3LogE0Ovp",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "Available",
- "RawDocComment"
- ],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveLogLevel",
- "printedName": "ApptentiveKit.ApptentiveLogLevel",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveLogLevel"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveConfiguration(im)logLevel",
- "mangledName": "$s13ApptentiveKit0A13ConfigurationC8logLevelAA0a3LogE0Ovg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "ObjC"
- ],
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "ApptentiveLogLevel",
- "printedName": "ApptentiveKit.ApptentiveLogLevel",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveLogLevel"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveConfiguration(im)setLogLevel:",
- "mangledName": "$s13ApptentiveKit0A13ConfigurationC8logLevelAA0a3LogE0Ovs",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "ObjC"
- ],
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A13ConfigurationC8logLevelAA0a3LogE0OvM",
- "mangledName": "$s13ApptentiveKit0A13ConfigurationC8logLevelAA0a3LogE0OvM",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "implicit": true,
- "declAttributes": [
- "Available"
- ],
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "shouldSanitizeLogMessages",
- "printedName": "shouldSanitizeLogMessages",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ],
- "declKind": "Var",
- "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveConfiguration(py)shouldSanitizeLogMessages",
- "mangledName": "$s13ApptentiveKit0A13ConfigurationC25shouldSanitizeLogMessagesSbvp",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "Available",
- "RawDocComment"
- ],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveConfiguration(im)shouldSanitizeLogMessages",
- "mangledName": "$s13ApptentiveKit0A13ConfigurationC25shouldSanitizeLogMessagesSbvg",
- "moduleName": "ApptentiveKit",
- "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@ApptentiveKit@objc(cs)ApptentiveConfiguration(im)setShouldSanitizeLogMessages:",
- "mangledName": "$s13ApptentiveKit0A13ConfigurationC25shouldSanitizeLogMessagesSbvs",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "ObjC"
- ],
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A13ConfigurationC25shouldSanitizeLogMessagesSbvM",
- "mangledName": "$s13ApptentiveKit0A13ConfigurationC25shouldSanitizeLogMessagesSbvM",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "implicit": true,
- "declAttributes": [
- "Available"
- ],
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "baseURL",
- "printedName": "baseURL",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Foundation.URL?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "URL",
- "printedName": "Foundation.URL",
- "usr": "s:10Foundation3URLV"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Var",
- "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveConfiguration(py)baseURL",
- "mangledName": "$s13ApptentiveKit0A13ConfigurationC7baseURL10Foundation0E0VSgvp",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "Available",
- "RawDocComment"
- ],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Foundation.URL?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "URL",
- "printedName": "Foundation.URL",
- "usr": "s:10Foundation3URLV"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveConfiguration(im)baseURL",
- "mangledName": "$s13ApptentiveKit0A13ConfigurationC7baseURL10Foundation0E0VSgvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "ObjC"
- ],
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Foundation.URL?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "URL",
- "printedName": "Foundation.URL",
- "usr": "s:10Foundation3URLV"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveConfiguration(im)setBaseURL:",
- "mangledName": "$s13ApptentiveKit0A13ConfigurationC7baseURL10Foundation0E0VSgvs",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "ObjC"
- ],
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A13ConfigurationC7baseURL10Foundation0E0VSgvM",
- "mangledName": "$s13ApptentiveKit0A13ConfigurationC7baseURL10Foundation0E0VSgvM",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "implicit": true,
- "declAttributes": [
- "Available"
- ],
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "distributionName",
- "printedName": "distributionName",
- "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@ApptentiveKit@objc(cs)ApptentiveConfiguration(py)distributionName",
- "mangledName": "$s13ApptentiveKit0A13ConfigurationC16distributionNameSSSgvp",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "Available",
- "RawDocComment"
- ],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveConfiguration(im)distributionName",
- "mangledName": "$s13ApptentiveKit0A13ConfigurationC16distributionNameSSSgvg",
- "moduleName": "ApptentiveKit",
- "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@ApptentiveKit@objc(cs)ApptentiveConfiguration(im)setDistributionName:",
- "mangledName": "$s13ApptentiveKit0A13ConfigurationC16distributionNameSSSgvs",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "ObjC"
- ],
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A13ConfigurationC16distributionNameSSSgvM",
- "mangledName": "$s13ApptentiveKit0A13ConfigurationC16distributionNameSSSgvM",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "implicit": true,
- "declAttributes": [
- "Available"
- ],
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "distributionVersion",
- "printedName": "distributionVersion",
- "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@ApptentiveKit@objc(cs)ApptentiveConfiguration(py)distributionVersion",
- "mangledName": "$s13ApptentiveKit0A13ConfigurationC19distributionVersionSSSgvp",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "Available",
- "RawDocComment"
- ],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveConfiguration(im)distributionVersion",
- "mangledName": "$s13ApptentiveKit0A13ConfigurationC19distributionVersionSSSgvg",
- "moduleName": "ApptentiveKit",
- "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@ApptentiveKit@objc(cs)ApptentiveConfiguration(im)setDistributionVersion:",
- "mangledName": "$s13ApptentiveKit0A13ConfigurationC19distributionVersionSSSgvs",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "ObjC"
- ],
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A13ConfigurationC19distributionVersionSSSgvM",
- "mangledName": "$s13ApptentiveKit0A13ConfigurationC19distributionVersionSSSgvM",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "implicit": true,
- "declAttributes": [
- "Available"
- ],
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "appID",
- "printedName": "appID",
- "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@ApptentiveKit@objc(cs)ApptentiveConfiguration(py)appID",
- "mangledName": "$s13ApptentiveKit0A13ConfigurationC5appIDSSSgvp",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "Available",
- "RawDocComment"
- ],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveConfiguration(im)appID",
- "mangledName": "$s13ApptentiveKit0A13ConfigurationC5appIDSSSgvg",
- "moduleName": "ApptentiveKit",
- "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@ApptentiveKit@objc(cs)ApptentiveConfiguration(im)setAppID:",
- "mangledName": "$s13ApptentiveKit0A13ConfigurationC5appIDSSSgvs",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "ObjC"
- ],
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A13ConfigurationC5appIDSSSgvM",
- "mangledName": "$s13ApptentiveKit0A13ConfigurationC5appIDSSSgvM",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "implicit": true,
- "declAttributes": [
- "Available"
- ],
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "showInfoButton",
- "printedName": "showInfoButton",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ],
- "declKind": "Var",
- "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveConfiguration(py)showInfoButton",
- "mangledName": "$s13ApptentiveKit0A13ConfigurationC14showInfoButtonSbvp",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "Available",
- "RawDocComment"
- ],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveConfiguration(im)showInfoButton",
- "mangledName": "$s13ApptentiveKit0A13ConfigurationC14showInfoButtonSbvg",
- "moduleName": "ApptentiveKit",
- "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@ApptentiveKit@objc(cs)ApptentiveConfiguration(im)setShowInfoButton:",
- "mangledName": "$s13ApptentiveKit0A13ConfigurationC14showInfoButtonSbvs",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "ObjC"
- ],
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A13ConfigurationC14showInfoButtonSbvM",
- "mangledName": "$s13ApptentiveKit0A13ConfigurationC14showInfoButtonSbvM",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "implicit": true,
- "declAttributes": [
- "Available"
- ],
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "surveyTermsAndConditions",
- "printedName": "surveyTermsAndConditions",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "ApptentiveKit.TermsAndConditions?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "TermsAndConditions",
- "printedName": "ApptentiveKit.TermsAndConditions",
- "usr": "c:@M@ApptentiveKit@objc(cs)TermsAndConditions"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Var",
- "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveConfiguration(py)surveyTermsAndConditions",
- "mangledName": "$s13ApptentiveKit0A13ConfigurationC24surveyTermsAndConditionsAA0efG0CSgvp",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "Available",
- "RawDocComment"
- ],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "ApptentiveKit.TermsAndConditions?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "TermsAndConditions",
- "printedName": "ApptentiveKit.TermsAndConditions",
- "usr": "c:@M@ApptentiveKit@objc(cs)TermsAndConditions"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveConfiguration(im)surveyTermsAndConditions",
- "mangledName": "$s13ApptentiveKit0A13ConfigurationC24surveyTermsAndConditionsAA0efG0CSgvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "ObjC"
- ],
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "ApptentiveKit.TermsAndConditions?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "TermsAndConditions",
- "printedName": "ApptentiveKit.TermsAndConditions",
- "usr": "c:@M@ApptentiveKit@objc(cs)TermsAndConditions"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveConfiguration(im)setSurveyTermsAndConditions:",
- "mangledName": "$s13ApptentiveKit0A13ConfigurationC24surveyTermsAndConditionsAA0efG0CSgvs",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "ObjC"
- ],
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A13ConfigurationC24surveyTermsAndConditionsAA0efG0CSgvM",
- "mangledName": "$s13ApptentiveKit0A13ConfigurationC24surveyTermsAndConditionsAA0efG0CSgvM",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "implicit": true,
- "declAttributes": [
- "Available"
- ],
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(apptentiveKey:apptentiveSignature:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "ApptentiveKit.ApptentiveConfiguration?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveConfiguration",
- "printedName": "ApptentiveKit.ApptentiveConfiguration",
- "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveConfiguration"
- }
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Constructor",
- "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveConfiguration(im)initWithApptentiveKey:apptentiveSignature:",
- "mangledName": "$s13ApptentiveKit0A13ConfigurationC13apptentiveKey0D9SignatureACSgSS_SStcfc",
- "moduleName": "ApptentiveKit",
- "objc_name": "initWithApptentiveKey:apptentiveSignature:",
- "declAttributes": [
- "Required",
- "AccessControl",
- "ObjC"
- ],
- "init_kind": "Designated"
- },
- {
- "kind": "Function",
- "name": "configuration",
- "printedName": "configuration(apptentiveKey:apptentiveSignature:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveConfiguration",
- "printedName": "ApptentiveKit.ApptentiveConfiguration",
- "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveConfiguration"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Func",
- "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveConfiguration(cm)configurationWithApptentiveKey:apptentiveSignature:",
- "mangledName": "$s13ApptentiveKit0A13ConfigurationC13configuration13apptentiveKey0E9SignatureACSS_SStFZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "objc_name": "configurationWithApptentiveKey:apptentiveSignature:",
- "declAttributes": [
- "Final",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveConfiguration",
- "printedName": "ApptentiveKit.ApptentiveConfiguration",
- "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveConfiguration"
- }
- ],
- "declKind": "Constructor",
- "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveConfiguration(im)init",
- "mangledName": "$s13ApptentiveKit0A13ConfigurationCACycfc",
- "moduleName": "ApptentiveKit",
- "overriding": true,
- "implicit": true,
- "objc_name": "init",
- "declAttributes": [
- "Dynamic",
- "ObjC",
- "Override"
- ],
- "init_kind": "Designated"
- }
- ],
- "declKind": "Class",
- "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveConfiguration",
- "mangledName": "$s13ApptentiveKit0A13ConfigurationC",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "declAttributes": [
- "AccessControl",
- "Available",
- "ObjC"
- ],
- "superclassUsr": "c:objc(cs)NSObject",
- "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": "ApptentivePushProvider",
- "printedName": "ApptentivePushProvider",
- "children": [
- {
- "kind": "Var",
- "name": "apptentive",
- "printedName": "apptentive",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.ApptentivePushProvider.Type) -> ApptentiveKit.ApptentivePushProvider",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentivePushProvider",
- "printedName": "ApptentiveKit.ApptentivePushProvider",
- "usr": "c:@M@ApptentiveKit@E@ApptentivePushProvider"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.ApptentivePushProvider.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentivePushProvider",
- "printedName": "ApptentiveKit.ApptentivePushProvider",
- "usr": "c:@M@ApptentiveKit@E@ApptentivePushProvider"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "c:@M@ApptentiveKit@E@ApptentivePushProvider@ApptentivePushProviderApptentive",
- "mangledName": "$s13ApptentiveKit0A12PushProviderO10apptentiveyA2CmF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment",
- "ObjC"
- ],
- "fixedbinaryorder": 0
- },
- {
- "kind": "Var",
- "name": "urbanAirship",
- "printedName": "urbanAirship",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.ApptentivePushProvider.Type) -> ApptentiveKit.ApptentivePushProvider",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentivePushProvider",
- "printedName": "ApptentiveKit.ApptentivePushProvider",
- "usr": "c:@M@ApptentiveKit@E@ApptentivePushProvider"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.ApptentivePushProvider.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentivePushProvider",
- "printedName": "ApptentiveKit.ApptentivePushProvider",
- "usr": "c:@M@ApptentiveKit@E@ApptentivePushProvider"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "c:@M@ApptentiveKit@E@ApptentivePushProvider@ApptentivePushProviderUrbanAirship",
- "mangledName": "$s13ApptentiveKit0A12PushProviderO12urbanAirshipyA2CmF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment",
- "ObjC"
- ],
- "fixedbinaryorder": 1
- },
- {
- "kind": "Var",
- "name": "amazonSNS",
- "printedName": "amazonSNS",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.ApptentivePushProvider.Type) -> ApptentiveKit.ApptentivePushProvider",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentivePushProvider",
- "printedName": "ApptentiveKit.ApptentivePushProvider",
- "usr": "c:@M@ApptentiveKit@E@ApptentivePushProvider"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.ApptentivePushProvider.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentivePushProvider",
- "printedName": "ApptentiveKit.ApptentivePushProvider",
- "usr": "c:@M@ApptentiveKit@E@ApptentivePushProvider"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "c:@M@ApptentiveKit@E@ApptentivePushProvider@ApptentivePushProviderAmazonSNS",
- "mangledName": "$s13ApptentiveKit0A12PushProviderO9amazonSNSyA2CmF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment",
- "ObjC"
- ],
- "fixedbinaryorder": 2
- },
- {
- "kind": "Var",
- "name": "parse",
- "printedName": "parse",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.ApptentivePushProvider.Type) -> ApptentiveKit.ApptentivePushProvider",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentivePushProvider",
- "printedName": "ApptentiveKit.ApptentivePushProvider",
- "usr": "c:@M@ApptentiveKit@E@ApptentivePushProvider"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.ApptentivePushProvider.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentivePushProvider",
- "printedName": "ApptentiveKit.ApptentivePushProvider",
- "usr": "c:@M@ApptentiveKit@E@ApptentivePushProvider"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "c:@M@ApptentiveKit@E@ApptentivePushProvider@ApptentivePushProviderParse",
- "mangledName": "$s13ApptentiveKit0A12PushProviderO5parseyA2CmF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment",
- "ObjC"
- ],
- "fixedbinaryorder": 3
- },
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(rawValue:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "ApptentiveKit.ApptentivePushProvider?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentivePushProvider",
- "printedName": "ApptentiveKit.ApptentivePushProvider",
- "usr": "c:@M@ApptentiveKit@E@ApptentivePushProvider"
- }
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ],
- "declKind": "Constructor",
- "usr": "s:13ApptentiveKit0A12PushProviderO8rawValueACSgSi_tcfc",
- "mangledName": "$s13ApptentiveKit0A12PushProviderO8rawValueACSgSi_tcfc",
- "moduleName": "ApptentiveKit",
- "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:13ApptentiveKit0A12PushProviderO8rawValueSivp",
- "mangledName": "$s13ApptentiveKit0A12PushProviderO8rawValueSivp",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A12PushProviderO8rawValueSivg",
- "mangledName": "$s13ApptentiveKit0A12PushProviderO8rawValueSivg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "get"
- }
- ]
- }
- ],
- "declKind": "Enum",
- "usr": "c:@M@ApptentiveKit@E@ApptentivePushProvider",
- "mangledName": "$s13ApptentiveKit0A12PushProviderO",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "declAttributes": [
- "AccessControl",
- "ObjC",
- "Available"
- ],
- "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": "TypeDecl",
- "name": "ApptentiveLogLevel",
- "printedName": "ApptentiveLogLevel",
- "children": [
- {
- "kind": "Var",
- "name": "undefined",
- "printedName": "undefined",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.ApptentiveLogLevel.Type) -> ApptentiveKit.ApptentiveLogLevel",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveLogLevel",
- "printedName": "ApptentiveKit.ApptentiveLogLevel",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveLogLevel"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.ApptentiveLogLevel.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveLogLevel",
- "printedName": "ApptentiveKit.ApptentiveLogLevel",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveLogLevel"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveLogLevel@ApptentiveLogLevelUndefined",
- "mangledName": "$s13ApptentiveKit0A8LogLevelO9undefinedyA2CmF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment",
- "ObjC"
- ],
- "fixedbinaryorder": 0
- },
- {
- "kind": "Var",
- "name": "crit",
- "printedName": "crit",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.ApptentiveLogLevel.Type) -> ApptentiveKit.ApptentiveLogLevel",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveLogLevel",
- "printedName": "ApptentiveKit.ApptentiveLogLevel",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveLogLevel"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.ApptentiveLogLevel.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveLogLevel",
- "printedName": "ApptentiveKit.ApptentiveLogLevel",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveLogLevel"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveLogLevel@ApptentiveLogLevelCrit",
- "mangledName": "$s13ApptentiveKit0A8LogLevelO4crityA2CmF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment",
- "ObjC"
- ],
- "fixedbinaryorder": 1
- },
- {
- "kind": "Var",
- "name": "error",
- "printedName": "error",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.ApptentiveLogLevel.Type) -> ApptentiveKit.ApptentiveLogLevel",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveLogLevel",
- "printedName": "ApptentiveKit.ApptentiveLogLevel",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveLogLevel"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.ApptentiveLogLevel.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveLogLevel",
- "printedName": "ApptentiveKit.ApptentiveLogLevel",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveLogLevel"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveLogLevel@ApptentiveLogLevelError",
- "mangledName": "$s13ApptentiveKit0A8LogLevelO5erroryA2CmF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment",
- "ObjC"
- ],
- "fixedbinaryorder": 2
- },
- {
- "kind": "Var",
- "name": "warn",
- "printedName": "warn",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.ApptentiveLogLevel.Type) -> ApptentiveKit.ApptentiveLogLevel",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveLogLevel",
- "printedName": "ApptentiveKit.ApptentiveLogLevel",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveLogLevel"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.ApptentiveLogLevel.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveLogLevel",
- "printedName": "ApptentiveKit.ApptentiveLogLevel",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveLogLevel"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveLogLevel@ApptentiveLogLevelWarn",
- "mangledName": "$s13ApptentiveKit0A8LogLevelO4warnyA2CmF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment",
- "ObjC"
- ],
- "fixedbinaryorder": 3
- },
- {
- "kind": "Var",
- "name": "info",
- "printedName": "info",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.ApptentiveLogLevel.Type) -> ApptentiveKit.ApptentiveLogLevel",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveLogLevel",
- "printedName": "ApptentiveKit.ApptentiveLogLevel",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveLogLevel"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.ApptentiveLogLevel.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveLogLevel",
- "printedName": "ApptentiveKit.ApptentiveLogLevel",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveLogLevel"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveLogLevel@ApptentiveLogLevelInfo",
- "mangledName": "$s13ApptentiveKit0A8LogLevelO4infoyA2CmF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment",
- "ObjC"
- ],
- "fixedbinaryorder": 4
- },
- {
- "kind": "Var",
- "name": "debug",
- "printedName": "debug",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.ApptentiveLogLevel.Type) -> ApptentiveKit.ApptentiveLogLevel",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveLogLevel",
- "printedName": "ApptentiveKit.ApptentiveLogLevel",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveLogLevel"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.ApptentiveLogLevel.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveLogLevel",
- "printedName": "ApptentiveKit.ApptentiveLogLevel",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveLogLevel"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveLogLevel@ApptentiveLogLevelDebug",
- "mangledName": "$s13ApptentiveKit0A8LogLevelO5debugyA2CmF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment",
- "ObjC"
- ],
- "fixedbinaryorder": 5
- },
- {
- "kind": "Var",
- "name": "verbose",
- "printedName": "verbose",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.ApptentiveLogLevel.Type) -> ApptentiveKit.ApptentiveLogLevel",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveLogLevel",
- "printedName": "ApptentiveKit.ApptentiveLogLevel",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveLogLevel"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.ApptentiveLogLevel.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveLogLevel",
- "printedName": "ApptentiveKit.ApptentiveLogLevel",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveLogLevel"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveLogLevel@ApptentiveLogLevelVerbose",
- "mangledName": "$s13ApptentiveKit0A8LogLevelO7verboseyA2CmF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment",
- "ObjC"
- ],
- "fixedbinaryorder": 6
- },
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(rawValue:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "ApptentiveKit.ApptentiveLogLevel?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveLogLevel",
- "printedName": "ApptentiveKit.ApptentiveLogLevel",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveLogLevel"
- }
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "UInt",
- "printedName": "Swift.UInt",
- "usr": "s:Su"
- }
- ],
- "declKind": "Constructor",
- "usr": "s:13ApptentiveKit0A8LogLevelO8rawValueACSgSu_tcfc",
- "mangledName": "$s13ApptentiveKit0A8LogLevelO8rawValueACSgSu_tcfc",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "init_kind": "Designated"
- },
- {
- "kind": "Var",
- "name": "rawValue",
- "printedName": "rawValue",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UInt",
- "printedName": "Swift.UInt",
- "usr": "s:Su"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit0A8LogLevelO8rawValueSuvp",
- "mangledName": "$s13ApptentiveKit0A8LogLevelO8rawValueSuvp",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UInt",
- "printedName": "Swift.UInt",
- "usr": "s:Su"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A8LogLevelO8rawValueSuvg",
- "mangledName": "$s13ApptentiveKit0A8LogLevelO8rawValueSuvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "get"
- }
- ]
- }
- ],
- "declKind": "Enum",
- "usr": "c:@M@ApptentiveKit@E@ApptentiveLogLevel",
- "mangledName": "$s13ApptentiveKit0A8LogLevelO",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "declAttributes": [
- "AccessControl",
- "ObjC",
- "Available"
- ],
- "enumRawTypeName": "UInt",
- "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": "UInt",
- "printedName": "Swift.UInt",
- "usr": "s:Su"
- }
- ]
- }
- ],
- "usr": "s:SY",
- "mangledName": "$sSY"
- }
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "TermsAndConditions",
- "printedName": "TermsAndConditions",
- "children": [
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(bodyText:linkText:linkURL:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "TermsAndConditions",
- "printedName": "ApptentiveKit.TermsAndConditions",
- "usr": "c:@M@ApptentiveKit@objc(cs)TermsAndConditions"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Foundation.URL?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "URL",
- "printedName": "Foundation.URL",
- "usr": "s:10Foundation3URLV"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Constructor",
- "usr": "s:13ApptentiveKit18TermsAndConditionsC8bodyText04linkG00H3URLACSSSg_AG10Foundation0I0VSgtcfc",
- "mangledName": "$s13ApptentiveKit18TermsAndConditionsC8bodyText04linkG00H3URLACSSSg_AG10Foundation0I0VSgtcfc",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "declAttributes": [
- "AccessControl",
- "Available"
- ],
- "init_kind": "Designated"
- },
- {
- "kind": "Var",
- "name": "bodyText",
- "printedName": "bodyText",
- "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": "s:13ApptentiveKit18TermsAndConditionsC8bodyTextSSSgvp",
- "mangledName": "$s13ApptentiveKit18TermsAndConditionsC8bodyTextSSSgvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl"
- ],
- "isLet": true,
- "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": "s:13ApptentiveKit18TermsAndConditionsC8bodyTextSSSgvg",
- "mangledName": "$s13ApptentiveKit18TermsAndConditionsC8bodyTextSSSgvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "linkText",
- "printedName": "linkText",
- "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": "s:13ApptentiveKit18TermsAndConditionsC8linkTextSSSgvp",
- "mangledName": "$s13ApptentiveKit18TermsAndConditionsC8linkTextSSSgvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl"
- ],
- "isLet": true,
- "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": "s:13ApptentiveKit18TermsAndConditionsC8linkTextSSSgvg",
- "mangledName": "$s13ApptentiveKit18TermsAndConditionsC8linkTextSSSgvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "linkURL",
- "printedName": "linkURL",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Foundation.URL?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "URL",
- "printedName": "Foundation.URL",
- "usr": "s:10Foundation3URLV"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit18TermsAndConditionsC7linkURL10Foundation0G0VSgvp",
- "mangledName": "$s13ApptentiveKit18TermsAndConditionsC7linkURL10Foundation0G0VSgvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Final",
- "HasStorage",
- "AccessControl"
- ],
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Foundation.URL?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "URL",
- "printedName": "Foundation.URL",
- "usr": "s:10Foundation3URLV"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit18TermsAndConditionsC7linkURL10Foundation0G0VSgvg",
- "mangledName": "$s13ApptentiveKit18TermsAndConditionsC7linkURL10Foundation0G0VSgvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "TermsAndConditions",
- "printedName": "ApptentiveKit.TermsAndConditions",
- "usr": "c:@M@ApptentiveKit@objc(cs)TermsAndConditions"
- }
- ],
- "declKind": "Constructor",
- "usr": "c:@M@ApptentiveKit@objc(cs)TermsAndConditions(im)init",
- "mangledName": "$s13ApptentiveKit18TermsAndConditionsCACycfc",
- "moduleName": "ApptentiveKit",
- "overriding": true,
- "implicit": true,
- "objc_name": "init",
- "declAttributes": [
- "Dynamic",
- "ObjC",
- "Override"
- ],
- "init_kind": "Designated"
- }
- ],
- "declKind": "Class",
- "usr": "c:@M@ApptentiveKit@objc(cs)TermsAndConditions",
- "mangledName": "$s13ApptentiveKit18TermsAndConditionsC",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "declAttributes": [
- "AccessControl",
- "Available",
- "ObjC"
- ],
- "superclassUsr": "c:objc(cs)NSObject",
- "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": "ApptentiveStyle",
- "printedName": "ApptentiveStyle",
- "children": [
- {
- "kind": "Function",
- "name": "font",
- "printedName": "font(for:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- },
- {
- "kind": "TypeNominal",
- "name": "ApptentiveStyleIdentifier",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit0A5StyleP4font3forSo6UIFontCAA0aC10IdentifierO_tF",
- "mangledName": "$s13ApptentiveKit0A5StyleP4font3forSo6UIFontCAA0aC10IdentifierO_tF",
- "moduleName": "ApptentiveKit",
- "genericSig": "<τ_0_0 where τ_0_0 : ApptentiveKit.ApptentiveStyle>",
- "sugared_genericSig": "",
- "deprecated": true,
- "protocolReq": true,
- "declAttributes": [
- "Available"
- ],
- "reqNewWitnessTableEntry": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "color",
- "printedName": "color(for:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- },
- {
- "kind": "TypeNominal",
- "name": "ApptentiveStyleIdentifier",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit0A5StyleP5color3forSo7UIColorCAA0aC10IdentifierO_tF",
- "mangledName": "$s13ApptentiveKit0A5StyleP5color3forSo7UIColorCAA0aC10IdentifierO_tF",
- "moduleName": "ApptentiveKit",
- "genericSig": "<τ_0_0 where τ_0_0 : ApptentiveKit.ApptentiveStyle>",
- "sugared_genericSig": "",
- "deprecated": true,
- "protocolReq": true,
- "declAttributes": [
- "Available"
- ],
- "reqNewWitnessTableEntry": true,
- "funcSelfKind": "NonMutating"
- }
- ],
- "declKind": "Protocol",
- "usr": "s:13ApptentiveKit0A5StyleP",
- "mangledName": "$s13ApptentiveKit0A5StyleP",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "declAttributes": [
- "AccessControl",
- "Available"
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "ApptentiveStyleIdentifier",
- "printedName": "ApptentiveStyleIdentifier",
- "children": [
- {
- "kind": "Var",
- "name": "body",
- "printedName": "body",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.ApptentiveStyleIdentifier.Type) -> ApptentiveKit.ApptentiveStyleIdentifier",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveStyleIdentifier",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveStyleIdentifier",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO4bodyyA2CmF",
- "mangledName": "$s13ApptentiveKit0A15StyleIdentifierO4bodyyA2CmF",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "Var",
- "name": "headerTitle",
- "printedName": "headerTitle",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.ApptentiveStyleIdentifier.Type) -> ApptentiveKit.ApptentiveStyleIdentifier",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveStyleIdentifier",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveStyleIdentifier",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO11headerTitleyA2CmF",
- "mangledName": "$s13ApptentiveKit0A15StyleIdentifierO11headerTitleyA2CmF",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "Var",
- "name": "headerMessage",
- "printedName": "headerMessage",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.ApptentiveStyleIdentifier.Type) -> ApptentiveKit.ApptentiveStyleIdentifier",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveStyleIdentifier",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveStyleIdentifier",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO13headerMessageyA2CmF",
- "mangledName": "$s13ApptentiveKit0A15StyleIdentifierO13headerMessageyA2CmF",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "Var",
- "name": "messageDate",
- "printedName": "messageDate",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.ApptentiveStyleIdentifier.Type) -> ApptentiveKit.ApptentiveStyleIdentifier",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveStyleIdentifier",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveStyleIdentifier",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO11messageDateyA2CmF",
- "mangledName": "$s13ApptentiveKit0A15StyleIdentifierO11messageDateyA2CmF",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "Var",
- "name": "messageSender",
- "printedName": "messageSender",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.ApptentiveStyleIdentifier.Type) -> ApptentiveKit.ApptentiveStyleIdentifier",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveStyleIdentifier",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveStyleIdentifier",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO13messageSenderyA2CmF",
- "mangledName": "$s13ApptentiveKit0A15StyleIdentifierO13messageSenderyA2CmF",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "Var",
- "name": "messageStatus",
- "printedName": "messageStatus",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.ApptentiveStyleIdentifier.Type) -> ApptentiveKit.ApptentiveStyleIdentifier",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveStyleIdentifier",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveStyleIdentifier",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO13messageStatusyA2CmF",
- "mangledName": "$s13ApptentiveKit0A15StyleIdentifierO13messageStatusyA2CmF",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "Var",
- "name": "messageCenterStatus",
- "printedName": "messageCenterStatus",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.ApptentiveStyleIdentifier.Type) -> ApptentiveKit.ApptentiveStyleIdentifier",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveStyleIdentifier",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveStyleIdentifier",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO19messageCenterStatusyA2CmF",
- "mangledName": "$s13ApptentiveKit0A15StyleIdentifierO19messageCenterStatusyA2CmF",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "Var",
- "name": "surveyInstructions",
- "printedName": "surveyInstructions",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.ApptentiveStyleIdentifier.Type) -> ApptentiveKit.ApptentiveStyleIdentifier",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveStyleIdentifier",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveStyleIdentifier",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO18surveyInstructionsyA2CmF",
- "mangledName": "$s13ApptentiveKit0A15StyleIdentifierO18surveyInstructionsyA2CmF",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "Var",
- "name": "doneButton",
- "printedName": "doneButton",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.ApptentiveStyleIdentifier.Type) -> ApptentiveKit.ApptentiveStyleIdentifier",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveStyleIdentifier",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveStyleIdentifier",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO10doneButtonyA2CmF",
- "mangledName": "$s13ApptentiveKit0A15StyleIdentifierO10doneButtonyA2CmF",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "Var",
- "name": "button",
- "printedName": "button",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.ApptentiveStyleIdentifier.Type) -> ApptentiveKit.ApptentiveStyleIdentifier",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveStyleIdentifier",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveStyleIdentifier",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO6buttonyA2CmF",
- "mangledName": "$s13ApptentiveKit0A15StyleIdentifierO6buttonyA2CmF",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "Var",
- "name": "submitButton",
- "printedName": "submitButton",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.ApptentiveStyleIdentifier.Type) -> ApptentiveKit.ApptentiveStyleIdentifier",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveStyleIdentifier",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveStyleIdentifier",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO12submitButtonyA2CmF",
- "mangledName": "$s13ApptentiveKit0A15StyleIdentifierO12submitButtonyA2CmF",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "Var",
- "name": "textInput",
- "printedName": "textInput",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.ApptentiveStyleIdentifier.Type) -> ApptentiveKit.ApptentiveStyleIdentifier",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveStyleIdentifier",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveStyleIdentifier",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO9textInputyA2CmF",
- "mangledName": "$s13ApptentiveKit0A15StyleIdentifierO9textInputyA2CmF",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "Var",
- "name": "headerBackground",
- "printedName": "headerBackground",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.ApptentiveStyleIdentifier.Type) -> ApptentiveKit.ApptentiveStyleIdentifier",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveStyleIdentifier",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveStyleIdentifier",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO16headerBackgroundyA2CmF",
- "mangledName": "$s13ApptentiveKit0A15StyleIdentifierO16headerBackgroundyA2CmF",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "Var",
- "name": "footerBackground",
- "printedName": "footerBackground",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.ApptentiveStyleIdentifier.Type) -> ApptentiveKit.ApptentiveStyleIdentifier",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveStyleIdentifier",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveStyleIdentifier",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO16footerBackgroundyA2CmF",
- "mangledName": "$s13ApptentiveKit0A15StyleIdentifierO16footerBackgroundyA2CmF",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "Var",
- "name": "failure",
- "printedName": "failure",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.ApptentiveStyleIdentifier.Type) -> ApptentiveKit.ApptentiveStyleIdentifier",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveStyleIdentifier",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveStyleIdentifier",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO7failureyA2CmF",
- "mangledName": "$s13ApptentiveKit0A15StyleIdentifierO7failureyA2CmF",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "Var",
- "name": "separator",
- "printedName": "separator",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.ApptentiveStyleIdentifier.Type) -> ApptentiveKit.ApptentiveStyleIdentifier",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveStyleIdentifier",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveStyleIdentifier",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO9separatoryA2CmF",
- "mangledName": "$s13ApptentiveKit0A15StyleIdentifierO9separatoryA2CmF",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "Var",
- "name": "background",
- "printedName": "background",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.ApptentiveStyleIdentifier.Type) -> ApptentiveKit.ApptentiveStyleIdentifier",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveStyleIdentifier",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveStyleIdentifier",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO10backgroundyA2CmF",
- "mangledName": "$s13ApptentiveKit0A15StyleIdentifierO10backgroundyA2CmF",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "Var",
- "name": "collectionBackground",
- "printedName": "collectionBackground",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.ApptentiveStyleIdentifier.Type) -> ApptentiveKit.ApptentiveStyleIdentifier",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveStyleIdentifier",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveStyleIdentifier",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO20collectionBackgroundyA2CmF",
- "mangledName": "$s13ApptentiveKit0A15StyleIdentifierO20collectionBackgroundyA2CmF",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "Var",
- "name": "textInputBackground",
- "printedName": "textInputBackground",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.ApptentiveStyleIdentifier.Type) -> ApptentiveKit.ApptentiveStyleIdentifier",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveStyleIdentifier",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveStyleIdentifier",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO19textInputBackgroundyA2CmF",
- "mangledName": "$s13ApptentiveKit0A15StyleIdentifierO19textInputBackgroundyA2CmF",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "Var",
- "name": "textInputPlaceholder",
- "printedName": "textInputPlaceholder",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.ApptentiveStyleIdentifier.Type) -> ApptentiveKit.ApptentiveStyleIdentifier",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveStyleIdentifier",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveStyleIdentifier",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO20textInputPlaceholderyA2CmF",
- "mangledName": "$s13ApptentiveKit0A15StyleIdentifierO20textInputPlaceholderyA2CmF",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "Var",
- "name": "messageBackground",
- "printedName": "messageBackground",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.ApptentiveStyleIdentifier.Type) -> ApptentiveKit.ApptentiveStyleIdentifier",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveStyleIdentifier",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveStyleIdentifier",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO17messageBackgroundyA2CmF",
- "mangledName": "$s13ApptentiveKit0A15StyleIdentifierO17messageBackgroundyA2CmF",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "Var",
- "name": "replyBackground",
- "printedName": "replyBackground",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.ApptentiveStyleIdentifier.Type) -> ApptentiveKit.ApptentiveStyleIdentifier",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveStyleIdentifier",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveStyleIdentifier",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO15replyBackgroundyA2CmF",
- "mangledName": "$s13ApptentiveKit0A15StyleIdentifierO15replyBackgroundyA2CmF",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "Var",
- "name": "contextBackground",
- "printedName": "contextBackground",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.ApptentiveStyleIdentifier.Type) -> ApptentiveKit.ApptentiveStyleIdentifier",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveStyleIdentifier",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveStyleIdentifier",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO17contextBackgroundyA2CmF",
- "mangledName": "$s13ApptentiveKit0A15StyleIdentifierO17contextBackgroundyA2CmF",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "Function",
- "name": "==",
- "printedName": "==(_:_:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- },
- {
- "kind": "TypeNominal",
- "name": "ApptentiveStyleIdentifier",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO"
- },
- {
- "kind": "TypeNominal",
- "name": "ApptentiveStyleIdentifier",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO2eeoiySbAC_ACtFZ",
- "mangledName": "$s13ApptentiveKit0A15StyleIdentifierO2eeoiySbAC_ACtFZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Var",
- "name": "hashValue",
- "printedName": "hashValue",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO9hashValueSivp",
- "mangledName": "$s13ApptentiveKit0A15StyleIdentifierO9hashValueSivp",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO9hashValueSivg",
- "mangledName": "$s13ApptentiveKit0A15StyleIdentifierO9hashValueSivg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Function",
- "name": "hash",
- "printedName": "hash(into:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Hasher",
- "printedName": "Swift.Hasher",
- "paramValueOwnership": "InOut",
- "usr": "s:s6HasherV"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO4hash4intoys6HasherVz_tF",
- "mangledName": "$s13ApptentiveKit0A15StyleIdentifierO4hash4intoys6HasherVz_tF",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "funcSelfKind": "NonMutating"
- }
- ],
- "declKind": "Enum",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO",
- "mangledName": "$s13ApptentiveKit0A15StyleIdentifierO",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "declAttributes": [
- "AccessControl",
- "Available"
- ],
- "conformances": [
- {
- "kind": "Conformance",
- "name": "Equatable",
- "printedName": "Equatable",
- "usr": "s:SQ",
- "mangledName": "$sSQ"
- },
- {
- "kind": "Conformance",
- "name": "Hashable",
- "printedName": "Hashable",
- "usr": "s:SH",
- "mangledName": "$sSH"
- }
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "ApptentiveStyleSheet",
- "printedName": "ApptentiveStyleSheet",
- "children": [
- {
- "kind": "Function",
- "name": "font",
- "printedName": "font(for:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- },
- {
- "kind": "TypeNominal",
- "name": "ApptentiveStyleIdentifier",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit0A10StyleSheetC4font3forSo6UIFontCAA0aC10IdentifierO_tF",
- "mangledName": "$s13ApptentiveKit0A10StyleSheetC4font3forSo6UIFontCAA0aC10IdentifierO_tF",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "declAttributes": [
- "AccessControl",
- "Available"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "color",
- "printedName": "color(for:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- },
- {
- "kind": "TypeNominal",
- "name": "ApptentiveStyleIdentifier",
- "printedName": "ApptentiveKit.ApptentiveStyleIdentifier",
- "usr": "s:13ApptentiveKit0A15StyleIdentifierO"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit0A10StyleSheetC5color3forSo7UIColorCAA0aC10IdentifierO_tF",
- "mangledName": "$s13ApptentiveKit0A10StyleSheetC5color3forSo7UIColorCAA0aC10IdentifierO_tF",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "declAttributes": [
- "AccessControl",
- "Available"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(contentsOf:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "ApptentiveKit.ApptentiveStyleSheet?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveStyleSheet",
- "printedName": "ApptentiveKit.ApptentiveStyleSheet",
- "usr": "s:13ApptentiveKit0A10StyleSheetC"
- }
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "URL",
- "printedName": "Foundation.URL",
- "usr": "s:10Foundation3URLV"
- }
- ],
- "declKind": "Constructor",
- "usr": "s:13ApptentiveKit0A10StyleSheetC10contentsOfACSg10Foundation3URLV_tcfc",
- "mangledName": "$s13ApptentiveKit0A10StyleSheetC10contentsOfACSg10Foundation3URLV_tcfc",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "declAttributes": [
- "Convenience",
- "AccessControl",
- "Available"
- ],
- "init_kind": "Convenience"
- },
- {
- "kind": "Var",
- "name": "fontFamily",
- "printedName": "fontFamily",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit0A10StyleSheetC10fontFamilySSvp",
- "mangledName": "$s13ApptentiveKit0A10StyleSheetC10fontFamilySSvp",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "declAttributes": [
- "HasStorage",
- "AccessControl",
- "Available"
- ],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A10StyleSheetC10fontFamilySSvg",
- "mangledName": "$s13ApptentiveKit0A10StyleSheetC10fontFamilySSvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "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": "s:13ApptentiveKit0A10StyleSheetC10fontFamilySSvs",
- "mangledName": "$s13ApptentiveKit0A10StyleSheetC10fontFamilySSvs",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A10StyleSheetC10fontFamilySSvM",
- "mangledName": "$s13ApptentiveKit0A10StyleSheetC10fontFamilySSvM",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "implicit": true,
- "declAttributes": [
- "Available"
- ],
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "lightFaceAttribute",
- "printedName": "lightFaceAttribute",
- "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": "s:13ApptentiveKit0A10StyleSheetC18lightFaceAttributeSSSgvp",
- "mangledName": "$s13ApptentiveKit0A10StyleSheetC18lightFaceAttributeSSSgvp",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl",
- "Available"
- ],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A10StyleSheetC18lightFaceAttributeSSSgvg",
- "mangledName": "$s13ApptentiveKit0A10StyleSheetC18lightFaceAttributeSSSgvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "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": "s:13ApptentiveKit0A10StyleSheetC18lightFaceAttributeSSSgvs",
- "mangledName": "$s13ApptentiveKit0A10StyleSheetC18lightFaceAttributeSSSgvs",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A10StyleSheetC18lightFaceAttributeSSSgvM",
- "mangledName": "$s13ApptentiveKit0A10StyleSheetC18lightFaceAttributeSSSgvM",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "implicit": true,
- "declAttributes": [
- "Available"
- ],
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "regularFaceAttribute",
- "printedName": "regularFaceAttribute",
- "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": "s:13ApptentiveKit0A10StyleSheetC20regularFaceAttributeSSSgvp",
- "mangledName": "$s13ApptentiveKit0A10StyleSheetC20regularFaceAttributeSSSgvp",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl",
- "Available"
- ],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A10StyleSheetC20regularFaceAttributeSSSgvg",
- "mangledName": "$s13ApptentiveKit0A10StyleSheetC20regularFaceAttributeSSSgvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "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": "s:13ApptentiveKit0A10StyleSheetC20regularFaceAttributeSSSgvs",
- "mangledName": "$s13ApptentiveKit0A10StyleSheetC20regularFaceAttributeSSSgvs",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A10StyleSheetC20regularFaceAttributeSSSgvM",
- "mangledName": "$s13ApptentiveKit0A10StyleSheetC20regularFaceAttributeSSSgvM",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "implicit": true,
- "declAttributes": [
- "Available"
- ],
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "mediumFaceAttribute",
- "printedName": "mediumFaceAttribute",
- "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": "s:13ApptentiveKit0A10StyleSheetC19mediumFaceAttributeSSSgvp",
- "mangledName": "$s13ApptentiveKit0A10StyleSheetC19mediumFaceAttributeSSSgvp",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl",
- "Available"
- ],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A10StyleSheetC19mediumFaceAttributeSSSgvg",
- "mangledName": "$s13ApptentiveKit0A10StyleSheetC19mediumFaceAttributeSSSgvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "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": "s:13ApptentiveKit0A10StyleSheetC19mediumFaceAttributeSSSgvs",
- "mangledName": "$s13ApptentiveKit0A10StyleSheetC19mediumFaceAttributeSSSgvs",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A10StyleSheetC19mediumFaceAttributeSSSgvM",
- "mangledName": "$s13ApptentiveKit0A10StyleSheetC19mediumFaceAttributeSSSgvM",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "implicit": true,
- "declAttributes": [
- "Available"
- ],
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "boldFaceAttribute",
- "printedName": "boldFaceAttribute",
- "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": "s:13ApptentiveKit0A10StyleSheetC17boldFaceAttributeSSSgvp",
- "mangledName": "$s13ApptentiveKit0A10StyleSheetC17boldFaceAttributeSSSgvp",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl",
- "Available"
- ],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A10StyleSheetC17boldFaceAttributeSSSgvg",
- "mangledName": "$s13ApptentiveKit0A10StyleSheetC17boldFaceAttributeSSSgvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "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": "s:13ApptentiveKit0A10StyleSheetC17boldFaceAttributeSSSgvs",
- "mangledName": "$s13ApptentiveKit0A10StyleSheetC17boldFaceAttributeSSSgvs",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A10StyleSheetC17boldFaceAttributeSSSgvM",
- "mangledName": "$s13ApptentiveKit0A10StyleSheetC17boldFaceAttributeSSSgvM",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "implicit": true,
- "declAttributes": [
- "Available"
- ],
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "primaryColor",
- "printedName": "primaryColor",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit0A10StyleSheetC12primaryColorSo7UIColorCvp",
- "mangledName": "$s13ApptentiveKit0A10StyleSheetC12primaryColorSo7UIColorCvp",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "declAttributes": [
- "HasStorage",
- "AccessControl",
- "Available"
- ],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A10StyleSheetC12primaryColorSo7UIColorCvg",
- "mangledName": "$s13ApptentiveKit0A10StyleSheetC12primaryColorSo7UIColorCvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A10StyleSheetC12primaryColorSo7UIColorCvs",
- "mangledName": "$s13ApptentiveKit0A10StyleSheetC12primaryColorSo7UIColorCvs",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A10StyleSheetC12primaryColorSo7UIColorCvM",
- "mangledName": "$s13ApptentiveKit0A10StyleSheetC12primaryColorSo7UIColorCvM",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "implicit": true,
- "declAttributes": [
- "Available"
- ],
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "secondaryColor",
- "printedName": "secondaryColor",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit0A10StyleSheetC14secondaryColorSo7UIColorCvp",
- "mangledName": "$s13ApptentiveKit0A10StyleSheetC14secondaryColorSo7UIColorCvp",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "declAttributes": [
- "HasStorage",
- "AccessControl",
- "Available"
- ],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A10StyleSheetC14secondaryColorSo7UIColorCvg",
- "mangledName": "$s13ApptentiveKit0A10StyleSheetC14secondaryColorSo7UIColorCvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A10StyleSheetC14secondaryColorSo7UIColorCvs",
- "mangledName": "$s13ApptentiveKit0A10StyleSheetC14secondaryColorSo7UIColorCvs",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A10StyleSheetC14secondaryColorSo7UIColorCvM",
- "mangledName": "$s13ApptentiveKit0A10StyleSheetC14secondaryColorSo7UIColorCvM",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "implicit": true,
- "declAttributes": [
- "Available"
- ],
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "failureColor",
- "printedName": "failureColor",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit0A10StyleSheetC12failureColorSo7UIColorCvp",
- "mangledName": "$s13ApptentiveKit0A10StyleSheetC12failureColorSo7UIColorCvp",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "declAttributes": [
- "HasStorage",
- "AccessControl",
- "Available"
- ],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A10StyleSheetC12failureColorSo7UIColorCvg",
- "mangledName": "$s13ApptentiveKit0A10StyleSheetC12failureColorSo7UIColorCvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A10StyleSheetC12failureColorSo7UIColorCvs",
- "mangledName": "$s13ApptentiveKit0A10StyleSheetC12failureColorSo7UIColorCvs",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A10StyleSheetC12failureColorSo7UIColorCvM",
- "mangledName": "$s13ApptentiveKit0A10StyleSheetC12failureColorSo7UIColorCvM",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "implicit": true,
- "declAttributes": [
- "Available"
- ],
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "backgroundColor",
- "printedName": "backgroundColor",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit0A10StyleSheetC15backgroundColorSo7UIColorCvp",
- "mangledName": "$s13ApptentiveKit0A10StyleSheetC15backgroundColorSo7UIColorCvp",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "declAttributes": [
- "HasStorage",
- "AccessControl",
- "Available"
- ],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A10StyleSheetC15backgroundColorSo7UIColorCvg",
- "mangledName": "$s13ApptentiveKit0A10StyleSheetC15backgroundColorSo7UIColorCvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A10StyleSheetC15backgroundColorSo7UIColorCvs",
- "mangledName": "$s13ApptentiveKit0A10StyleSheetC15backgroundColorSo7UIColorCvs",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A10StyleSheetC15backgroundColorSo7UIColorCvM",
- "mangledName": "$s13ApptentiveKit0A10StyleSheetC15backgroundColorSo7UIColorCvM",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "implicit": true,
- "declAttributes": [
- "Available"
- ],
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "separatorColor",
- "printedName": "separatorColor",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit0A10StyleSheetC14separatorColorSo7UIColorCvp",
- "mangledName": "$s13ApptentiveKit0A10StyleSheetC14separatorColorSo7UIColorCvp",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "declAttributes": [
- "HasStorage",
- "AccessControl",
- "Available"
- ],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A10StyleSheetC14separatorColorSo7UIColorCvg",
- "mangledName": "$s13ApptentiveKit0A10StyleSheetC14separatorColorSo7UIColorCvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A10StyleSheetC14separatorColorSo7UIColorCvs",
- "mangledName": "$s13ApptentiveKit0A10StyleSheetC14separatorColorSo7UIColorCvs",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A10StyleSheetC14separatorColorSo7UIColorCvM",
- "mangledName": "$s13ApptentiveKit0A10StyleSheetC14separatorColorSo7UIColorCvM",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "implicit": true,
- "declAttributes": [
- "Available"
- ],
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "collectionBackgroundColor",
- "printedName": "collectionBackgroundColor",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit0A10StyleSheetC25collectionBackgroundColorSo7UIColorCvp",
- "mangledName": "$s13ApptentiveKit0A10StyleSheetC25collectionBackgroundColorSo7UIColorCvp",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "declAttributes": [
- "HasStorage",
- "AccessControl",
- "Available"
- ],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A10StyleSheetC25collectionBackgroundColorSo7UIColorCvg",
- "mangledName": "$s13ApptentiveKit0A10StyleSheetC25collectionBackgroundColorSo7UIColorCvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A10StyleSheetC25collectionBackgroundColorSo7UIColorCvs",
- "mangledName": "$s13ApptentiveKit0A10StyleSheetC25collectionBackgroundColorSo7UIColorCvs",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A10StyleSheetC25collectionBackgroundColorSo7UIColorCvM",
- "mangledName": "$s13ApptentiveKit0A10StyleSheetC25collectionBackgroundColorSo7UIColorCvM",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "implicit": true,
- "declAttributes": [
- "Available"
- ],
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "placeholderColor",
- "printedName": "placeholderColor",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit0A10StyleSheetC16placeholderColorSo7UIColorCvp",
- "mangledName": "$s13ApptentiveKit0A10StyleSheetC16placeholderColorSo7UIColorCvp",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "declAttributes": [
- "HasStorage",
- "AccessControl",
- "Available"
- ],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A10StyleSheetC16placeholderColorSo7UIColorCvg",
- "mangledName": "$s13ApptentiveKit0A10StyleSheetC16placeholderColorSo7UIColorCvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A10StyleSheetC16placeholderColorSo7UIColorCvs",
- "mangledName": "$s13ApptentiveKit0A10StyleSheetC16placeholderColorSo7UIColorCvs",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A10StyleSheetC16placeholderColorSo7UIColorCvM",
- "mangledName": "$s13ApptentiveKit0A10StyleSheetC16placeholderColorSo7UIColorCvM",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "implicit": true,
- "declAttributes": [
- "Available"
- ],
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "sizeAdjustment",
- "printedName": "sizeAdjustment",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "CGFloat",
- "printedName": "CoreGraphics.CGFloat",
- "usr": "s:14CoreFoundation7CGFloatV"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit0A10StyleSheetC14sizeAdjustment14CoreFoundation7CGFloatVvp",
- "mangledName": "$s13ApptentiveKit0A10StyleSheetC14sizeAdjustment12CoreGraphics7CGFloatVvp",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "declAttributes": [
- "HasStorage",
- "AccessControl",
- "Available"
- ],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "CGFloat",
- "printedName": "CoreGraphics.CGFloat",
- "usr": "s:14CoreFoundation7CGFloatV"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A10StyleSheetC14sizeAdjustment14CoreFoundation7CGFloatVvg",
- "mangledName": "$s13ApptentiveKit0A10StyleSheetC14sizeAdjustment12CoreGraphics7CGFloatVvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "CGFloat",
- "printedName": "CoreGraphics.CGFloat",
- "usr": "s:14CoreFoundation7CGFloatV"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A10StyleSheetC14sizeAdjustment14CoreFoundation7CGFloatVvs",
- "mangledName": "$s13ApptentiveKit0A10StyleSheetC14sizeAdjustment12CoreGraphics7CGFloatVvs",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A10StyleSheetC14sizeAdjustment14CoreFoundation7CGFloatVvM",
- "mangledName": "$s13ApptentiveKit0A10StyleSheetC14sizeAdjustment12CoreGraphics7CGFloatVvM",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "implicit": true,
- "declAttributes": [
- "Available"
- ],
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Function",
- "name": "setFontDescriptor",
- "printedName": "setFontDescriptor(_:forStyle:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIFontDescriptor",
- "printedName": "UIKit.UIFontDescriptor",
- "usr": "c:objc(cs)UIFontDescriptor"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit0A10StyleSheetC17setFontDescriptor_03forC0ySo06UIFontG0C_SStF",
- "mangledName": "$s13ApptentiveKit0A10StyleSheetC17setFontDescriptor_03forC0ySo06UIFontG0C_SStF",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "declAttributes": [
- "AccessControl",
- "Available"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "setColor",
- "printedName": "setColor(_:forStyle:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit0A10StyleSheetC8setColor_03forC0ySo7UIColorC_SStF",
- "mangledName": "$s13ApptentiveKit0A10StyleSheetC8setColor_03forC0ySo7UIColorC_SStF",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "declAttributes": [
- "AccessControl",
- "Available"
- ],
- "funcSelfKind": "NonMutating"
- }
- ],
- "declKind": "Class",
- "usr": "s:13ApptentiveKit0A10StyleSheetC",
- "mangledName": "$s13ApptentiveKit0A10StyleSheetC",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "declAttributes": [
- "AccessControl",
- "Available"
- ],
- "hasMissingDesignatedInitializers": true,
- "conformances": [
- {
- "kind": "Conformance",
- "name": "ApptentiveStyle",
- "printedName": "ApptentiveStyle",
- "usr": "s:13ApptentiveKit0A5StyleP",
- "mangledName": "$s13ApptentiveKit0A5StyleP"
- }
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "UIKit",
- "printedName": "UIKit",
- "declKind": "Import",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "Import",
- "name": "CoreTelephony",
- "printedName": "CoreTelephony",
- "declKind": "Import",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "Import",
- "name": "StoreKit",
- "printedName": "StoreKit",
- "declKind": "Import",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "UIKit",
- "printedName": "UIKit",
- "declKind": "Import",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "UIKit",
- "printedName": "UIKit",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "UIKit",
- "printedName": "UIKit",
- "declKind": "Import",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "Import",
- "name": "UIKit",
- "printedName": "UIKit",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "UIKit",
- "printedName": "UIKit",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "DialogButton",
- "printedName": "DialogButton",
- "children": [
- {
- "kind": "Var",
- "name": "titleFont",
- "printedName": "titleFont",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Var",
- "usr": "c:@M@ApptentiveKit@objc(cs)DialogButton(py)titleFont",
- "mangledName": "$s13ApptentiveKit12DialogButtonC9titleFontSo6UIFontCvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "HasInitialValue",
- "Custom",
- "HasStorage",
- "Dynamic",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@M@ApptentiveKit@objc(cs)DialogButton(im)titleFont",
- "mangledName": "$s13ApptentiveKit12DialogButtonC9titleFontSo6UIFontCvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Dynamic",
- "ObjC"
- ],
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@M@ApptentiveKit@objc(cs)DialogButton(im)setTitleFont:",
- "mangledName": "$s13ApptentiveKit12DialogButtonC9titleFontSo6UIFontCvs",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Dynamic",
- "ObjC"
- ],
- "accessorKind": "set"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "cornerRadius",
- "printedName": "cornerRadius",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "CGFloat",
- "printedName": "CoreGraphics.CGFloat",
- "usr": "s:14CoreFoundation7CGFloatV"
- }
- ],
- "declKind": "Var",
- "usr": "c:@M@ApptentiveKit@objc(cs)DialogButton(py)cornerRadius",
- "mangledName": "$s13ApptentiveKit12DialogButtonC12cornerRadius12CoreGraphics7CGFloatVvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "HasInitialValue",
- "Custom",
- "HasStorage",
- "Dynamic",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "CGFloat",
- "printedName": "CoreGraphics.CGFloat",
- "usr": "s:14CoreFoundation7CGFloatV"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@M@ApptentiveKit@objc(cs)DialogButton(im)cornerRadius",
- "mangledName": "$s13ApptentiveKit12DialogButtonC12cornerRadius12CoreGraphics7CGFloatVvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Dynamic",
- "ObjC"
- ],
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "CGFloat",
- "printedName": "CoreGraphics.CGFloat",
- "usr": "s:14CoreFoundation7CGFloatV"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@M@ApptentiveKit@objc(cs)DialogButton(im)setCornerRadius:",
- "mangledName": "$s13ApptentiveKit12DialogButtonC12cornerRadius12CoreGraphics7CGFloatVvs",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Dynamic",
- "ObjC"
- ],
- "accessorKind": "set"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "borderWidth",
- "printedName": "borderWidth",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "CGFloat",
- "printedName": "CoreGraphics.CGFloat",
- "usr": "s:14CoreFoundation7CGFloatV"
- }
- ],
- "declKind": "Var",
- "usr": "c:@M@ApptentiveKit@objc(cs)DialogButton(py)borderWidth",
- "mangledName": "$s13ApptentiveKit12DialogButtonC11borderWidth12CoreGraphics7CGFloatVvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "HasInitialValue",
- "Custom",
- "HasStorage",
- "Dynamic",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "CGFloat",
- "printedName": "CoreGraphics.CGFloat",
- "usr": "s:14CoreFoundation7CGFloatV"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@M@ApptentiveKit@objc(cs)DialogButton(im)borderWidth",
- "mangledName": "$s13ApptentiveKit12DialogButtonC11borderWidth12CoreGraphics7CGFloatVvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Dynamic",
- "ObjC"
- ],
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "CGFloat",
- "printedName": "CoreGraphics.CGFloat",
- "usr": "s:14CoreFoundation7CGFloatV"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@M@ApptentiveKit@objc(cs)DialogButton(im)setBorderWidth:",
- "mangledName": "$s13ApptentiveKit12DialogButtonC11borderWidth12CoreGraphics7CGFloatVvs",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Dynamic",
- "ObjC"
- ],
- "accessorKind": "set"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "borderColor",
- "printedName": "borderColor",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Var",
- "usr": "c:@M@ApptentiveKit@objc(cs)DialogButton(py)borderColor",
- "mangledName": "$s13ApptentiveKit12DialogButtonC11borderColorSo7UIColorCvp",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "HasInitialValue",
- "Custom",
- "HasStorage",
- "Dynamic",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@M@ApptentiveKit@objc(cs)DialogButton(im)borderColor",
- "mangledName": "$s13ApptentiveKit12DialogButtonC11borderColorSo7UIColorCvg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Dynamic",
- "ObjC"
- ],
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@M@ApptentiveKit@objc(cs)DialogButton(im)setBorderColor:",
- "mangledName": "$s13ApptentiveKit12DialogButtonC11borderColorSo7UIColorCvs",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "declAttributes": [
- "Dynamic",
- "ObjC"
- ],
- "accessorKind": "set"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "intrinsicContentSize",
- "printedName": "intrinsicContentSize",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "CGSize",
- "printedName": "CoreFoundation.CGSize",
- "usr": "c:@S@CGSize"
- }
- ],
- "declKind": "Var",
- "usr": "c:@M@ApptentiveKit@objc(cs)DialogButton(py)intrinsicContentSize",
- "mangledName": "$s13ApptentiveKit12DialogButtonC20intrinsicContentSizeSo6CGSizeVvp",
- "moduleName": "ApptentiveKit",
- "overriding": true,
- "objc_name": "intrinsicContentSize",
- "declAttributes": [
- "Dynamic",
- "ObjC",
- "Custom",
- "Override",
- "AccessControl",
- "RawDocComment"
- ],
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "CGSize",
- "printedName": "CoreFoundation.CGSize",
- "usr": "c:@S@CGSize"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@M@ApptentiveKit@objc(cs)DialogButton(im)intrinsicContentSize",
- "mangledName": "$s13ApptentiveKit12DialogButtonC20intrinsicContentSizeSo6CGSizeVvg",
- "moduleName": "ApptentiveKit",
- "overriding": true,
- "objc_name": "intrinsicContentSize",
- "declAttributes": [
- "Dynamic",
- "ObjC"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Function",
- "name": "layoutSubviews",
- "printedName": "layoutSubviews()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Func",
- "usr": "c:@M@ApptentiveKit@objc(cs)DialogButton(im)layoutSubviews",
- "mangledName": "$s13ApptentiveKit12DialogButtonC14layoutSubviewsyyF",
- "moduleName": "ApptentiveKit",
- "overriding": true,
- "objc_name": "layoutSubviews",
- "declAttributes": [
- "Dynamic",
- "ObjC",
- "Custom",
- "Override",
- "AccessControl",
- "RawDocComment"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "tintColorDidChange",
- "printedName": "tintColorDidChange()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Func",
- "usr": "c:@M@ApptentiveKit@objc(cs)DialogButton(im)tintColorDidChange",
- "mangledName": "$s13ApptentiveKit12DialogButtonC18tintColorDidChangeyyF",
- "moduleName": "ApptentiveKit",
- "overriding": true,
- "objc_name": "tintColorDidChange",
- "declAttributes": [
- "Dynamic",
- "ObjC",
- "Custom",
- "Override",
- "AccessControl",
- "RawDocComment"
- ],
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "didMoveToWindow",
- "printedName": "didMoveToWindow()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Func",
- "usr": "c:@M@ApptentiveKit@objc(cs)DialogButton(im)didMoveToWindow",
- "mangledName": "$s13ApptentiveKit12DialogButtonC15didMoveToWindowyyF",
- "moduleName": "ApptentiveKit",
- "overriding": true,
- "objc_name": "didMoveToWindow",
- "declAttributes": [
- "Dynamic",
- "ObjC",
- "Custom",
- "Override",
- "AccessControl",
- "RawDocComment"
- ],
- "funcSelfKind": "NonMutating"
- }
- ],
- "declKind": "Class",
- "usr": "c:@M@ApptentiveKit@objc(cs)DialogButton",
- "mangledName": "$s13ApptentiveKit12DialogButtonC",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Custom",
- "AccessControl",
- "RawDocComment",
- "ObjC"
- ],
- "superclassUsr": "c:objc(cs)UIButton",
- "hasMissingDesignatedInitializers": true,
- "inheritsConvenienceInitializers": true,
- "superclassNames": [
- "UIKit.UIButton",
- "UIKit.UIControl",
- "UIKit.UIView",
- "UIKit.UIResponder",
- "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": "Conformance",
- "name": "__DefaultCustomPlaygroundQuickLookable",
- "printedName": "__DefaultCustomPlaygroundQuickLookable",
- "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP",
- "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP"
- },
- {
- "kind": "Conformance",
- "name": "Sendable",
- "printedName": "Sendable",
- "usr": "s:s8SendableP",
- "mangledName": "$ss8SendableP"
- }
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "DismissButton",
- "printedName": "DismissButton",
- "declKind": "Class",
- "usr": "c:@M@ApptentiveKit@objc(cs)DismissButton",
- "mangledName": "$s13ApptentiveKit13DismissButtonC",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Custom",
- "AccessControl",
- "RawDocComment",
- "ObjC"
- ],
- "superclassUsr": "c:@M@ApptentiveKit@objc(cs)DialogButton",
- "hasMissingDesignatedInitializers": true,
- "inheritsConvenienceInitializers": true,
- "superclassNames": [
- "ApptentiveKit.DialogButton",
- "UIKit.UIButton",
- "UIKit.UIControl",
- "UIKit.UIView",
- "UIKit.UIResponder",
- "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": "Conformance",
- "name": "__DefaultCustomPlaygroundQuickLookable",
- "printedName": "__DefaultCustomPlaygroundQuickLookable",
- "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP",
- "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP"
- },
- {
- "kind": "Conformance",
- "name": "Sendable",
- "printedName": "Sendable",
- "usr": "s:s8SendableP",
- "mangledName": "$ss8SendableP"
- }
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "InteractionButton",
- "printedName": "InteractionButton",
- "declKind": "Class",
- "usr": "c:@M@ApptentiveKit@objc(cs)InteractionButton",
- "mangledName": "$s13ApptentiveKit17InteractionButtonC",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Custom",
- "AccessControl",
- "RawDocComment",
- "ObjC"
- ],
- "superclassUsr": "c:@M@ApptentiveKit@objc(cs)DialogButton",
- "hasMissingDesignatedInitializers": true,
- "inheritsConvenienceInitializers": true,
- "superclassNames": [
- "ApptentiveKit.DialogButton",
- "UIKit.UIButton",
- "UIKit.UIControl",
- "UIKit.UIView",
- "UIKit.UIResponder",
- "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": "Conformance",
- "name": "__DefaultCustomPlaygroundQuickLookable",
- "printedName": "__DefaultCustomPlaygroundQuickLookable",
- "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP",
- "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP"
- },
- {
- "kind": "Conformance",
- "name": "Sendable",
- "printedName": "Sendable",
- "usr": "s:s8SendableP",
- "mangledName": "$ss8SendableP"
- }
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "YesButton",
- "printedName": "YesButton",
- "declKind": "Class",
- "usr": "c:@M@ApptentiveKit@objc(cs)YesButton",
- "mangledName": "$s13ApptentiveKit9YesButtonC",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Custom",
- "AccessControl",
- "RawDocComment",
- "ObjC"
- ],
- "superclassUsr": "c:@M@ApptentiveKit@objc(cs)DialogButton",
- "hasMissingDesignatedInitializers": true,
- "inheritsConvenienceInitializers": true,
- "superclassNames": [
- "ApptentiveKit.DialogButton",
- "UIKit.UIButton",
- "UIKit.UIControl",
- "UIKit.UIView",
- "UIKit.UIResponder",
- "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": "Conformance",
- "name": "__DefaultCustomPlaygroundQuickLookable",
- "printedName": "__DefaultCustomPlaygroundQuickLookable",
- "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP",
- "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP"
- },
- {
- "kind": "Conformance",
- "name": "Sendable",
- "printedName": "Sendable",
- "usr": "s:s8SendableP",
- "mangledName": "$ss8SendableP"
- }
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "NoButton",
- "printedName": "NoButton",
- "declKind": "Class",
- "usr": "c:@M@ApptentiveKit@objc(cs)NoButton",
- "mangledName": "$s13ApptentiveKit8NoButtonC",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Custom",
- "AccessControl",
- "RawDocComment",
- "ObjC"
- ],
- "superclassUsr": "c:@M@ApptentiveKit@objc(cs)DialogButton",
- "hasMissingDesignatedInitializers": true,
- "inheritsConvenienceInitializers": true,
- "superclassNames": [
- "ApptentiveKit.DialogButton",
- "UIKit.UIButton",
- "UIKit.UIControl",
- "UIKit.UIView",
- "UIKit.UIResponder",
- "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": "Conformance",
- "name": "__DefaultCustomPlaygroundQuickLookable",
- "printedName": "__DefaultCustomPlaygroundQuickLookable",
- "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP",
- "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP"
- },
- {
- "kind": "Conformance",
- "name": "Sendable",
- "printedName": "Sendable",
- "usr": "s:s8SendableP",
- "mangledName": "$ss8SendableP"
- }
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "UIKit",
- "printedName": "UIKit",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "MobileCoreServices",
- "printedName": "MobileCoreServices",
- "declKind": "Import",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "Import",
- "name": "QuickLookThumbnailing",
- "printedName": "QuickLookThumbnailing",
- "declKind": "Import",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "Import",
- "name": "UIKit",
- "printedName": "UIKit",
- "declKind": "Import",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "Sysctl",
- "printedName": "Sysctl",
- "children": [
- {
- "kind": "TypeDecl",
- "name": "Error",
- "printedName": "Error",
- "children": [
- {
- "kind": "Var",
- "name": "unknown",
- "printedName": "unknown",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.Sysctl.Error.Type) -> ApptentiveKit.Sysctl.Error",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Error",
- "printedName": "ApptentiveKit.Sysctl.Error",
- "usr": "s:13ApptentiveKit6SysctlV5ErrorO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.Sysctl.Error.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Error",
- "printedName": "ApptentiveKit.Sysctl.Error",
- "usr": "s:13ApptentiveKit6SysctlV5ErrorO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:13ApptentiveKit6SysctlV5ErrorO7unknownyA2EmF",
- "mangledName": "$s13ApptentiveKit6SysctlV5ErrorO7unknownyA2EmF",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "Var",
- "name": "malformedUTF8",
- "printedName": "malformedUTF8",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.Sysctl.Error.Type) -> ApptentiveKit.Sysctl.Error",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Error",
- "printedName": "ApptentiveKit.Sysctl.Error",
- "usr": "s:13ApptentiveKit6SysctlV5ErrorO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.Sysctl.Error.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Error",
- "printedName": "ApptentiveKit.Sysctl.Error",
- "usr": "s:13ApptentiveKit6SysctlV5ErrorO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:13ApptentiveKit6SysctlV5ErrorO13malformedUTF8yA2EmF",
- "mangledName": "$s13ApptentiveKit6SysctlV5ErrorO13malformedUTF8yA2EmF",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "Var",
- "name": "invalidSize",
- "printedName": "invalidSize",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.Sysctl.Error.Type) -> ApptentiveKit.Sysctl.Error",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Error",
- "printedName": "ApptentiveKit.Sysctl.Error",
- "usr": "s:13ApptentiveKit6SysctlV5ErrorO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.Sysctl.Error.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Error",
- "printedName": "ApptentiveKit.Sysctl.Error",
- "usr": "s:13ApptentiveKit6SysctlV5ErrorO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:13ApptentiveKit6SysctlV5ErrorO11invalidSizeyA2EmF",
- "mangledName": "$s13ApptentiveKit6SysctlV5ErrorO11invalidSizeyA2EmF",
- "moduleName": "ApptentiveKit"
- },
- {
- "kind": "Var",
- "name": "posixError",
- "printedName": "posixError",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(ApptentiveKit.Sysctl.Error.Type) -> (Darwin.POSIXErrorCode) -> ApptentiveKit.Sysctl.Error",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(Darwin.POSIXErrorCode) -> ApptentiveKit.Sysctl.Error",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Error",
- "printedName": "ApptentiveKit.Sysctl.Error",
- "usr": "s:13ApptentiveKit6SysctlV5ErrorO"
- },
- {
- "kind": "TypeNominal",
- "name": "POSIXErrorCode",
- "printedName": "Darwin.POSIXErrorCode",
- "usr": "c:@M@Darwin@E@POSIXErrorCode"
- }
- ]
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "ApptentiveKit.Sysctl.Error.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Error",
- "printedName": "ApptentiveKit.Sysctl.Error",
- "usr": "s:13ApptentiveKit6SysctlV5ErrorO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:13ApptentiveKit6SysctlV5ErrorO05posixD0yAE6Darwin14POSIXErrorCodeOcAEmF",
- "mangledName": "$s13ApptentiveKit6SysctlV5ErrorO05posixD0yAE6Darwin14POSIXErrorCodeOcAEmF",
- "moduleName": "ApptentiveKit"
- }
- ],
- "declKind": "Enum",
- "usr": "s:13ApptentiveKit6SysctlV5ErrorO",
- "mangledName": "$s13ApptentiveKit6SysctlV5ErrorO",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "conformances": [
- {
- "kind": "Conformance",
- "name": "Error",
- "printedName": "Error",
- "usr": "s:s5ErrorP",
- "mangledName": "$ss5ErrorP"
- },
- {
- "kind": "Conformance",
- "name": "Sendable",
- "printedName": "Sendable",
- "usr": "s:s8SendableP",
- "mangledName": "$ss8SendableP"
- }
- ]
- },
- {
- "kind": "Function",
- "name": "data",
- "printedName": "data(for:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Array",
- "printedName": "[Swift.Int8]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int8",
- "printedName": "Swift.Int8",
- "usr": "s:s4Int8V"
- }
- ],
- "usr": "s:Sa"
- },
- {
- "kind": "TypeNominal",
- "name": "Array",
- "printedName": "[Swift.Int32]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int32",
- "printedName": "Swift.Int32",
- "usr": "s:s5Int32V"
- }
- ],
- "usr": "s:Sa"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit6SysctlV4data3forSays4Int8VGSays5Int32VG_tKFZ",
- "mangledName": "$s13ApptentiveKit6SysctlV4data3forSays4Int8VGSays5Int32VG_tKFZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "throwing": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "keys",
- "printedName": "keys(for:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Array",
- "printedName": "[Swift.Int32]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int32",
- "printedName": "Swift.Int32",
- "usr": "s:s5Int32V"
- }
- ],
- "usr": "s:Sa"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit6SysctlV4keys3forSays5Int32VGSS_tKFZ",
- "mangledName": "$s13ApptentiveKit6SysctlV4keys3forSays5Int32VGSS_tKFZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "throwing": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "value",
- "printedName": "value(ofType:forKeys:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "GenericTypeParam",
- "printedName": "τ_0_0"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "τ_0_0.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "GenericTypeParam",
- "printedName": "τ_0_0"
- }
- ]
- },
- {
- "kind": "TypeNominal",
- "name": "Array",
- "printedName": "[Swift.Int32]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int32",
- "printedName": "Swift.Int32",
- "usr": "s:s5Int32V"
- }
- ],
- "usr": "s:Sa"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit6SysctlV5value6ofType7forKeysxxm_Says5Int32VGtKlFZ",
- "mangledName": "$s13ApptentiveKit6SysctlV5value6ofType7forKeysxxm_Says5Int32VGtKlFZ",
- "moduleName": "ApptentiveKit",
- "genericSig": "<τ_0_0>",
- "sugared_genericSig": "",
- "static": true,
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "throwing": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "value",
- "printedName": "value(ofType:forKeys:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "GenericTypeParam",
- "printedName": "τ_0_0"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "τ_0_0.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "GenericTypeParam",
- "printedName": "τ_0_0"
- }
- ]
- },
- {
- "kind": "TypeNominal",
- "name": "Array",
- "printedName": "[Swift.Int32]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int32",
- "printedName": "Swift.Int32",
- "usr": "s:s5Int32V"
- }
- ],
- "usr": "s:Sa"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit6SysctlV5value6ofType7forKeysxxm_s5Int32VdtKlFZ",
- "mangledName": "$s13ApptentiveKit6SysctlV5value6ofType7forKeysxxm_s5Int32VdtKlFZ",
- "moduleName": "ApptentiveKit",
- "genericSig": "<τ_0_0>",
- "sugared_genericSig": "",
- "static": true,
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "throwing": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "value",
- "printedName": "value(ofType:forName:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "GenericTypeParam",
- "printedName": "τ_0_0"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "τ_0_0.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "GenericTypeParam",
- "printedName": "τ_0_0"
- }
- ]
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit6SysctlV5value6ofType7forNamexxm_SStKlFZ",
- "mangledName": "$s13ApptentiveKit6SysctlV5value6ofType7forNamexxm_SStKlFZ",
- "moduleName": "ApptentiveKit",
- "genericSig": "<τ_0_0>",
- "sugared_genericSig": "",
- "static": true,
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "throwing": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "string",
- "printedName": "string(for:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- },
- {
- "kind": "TypeNominal",
- "name": "Array",
- "printedName": "[Swift.Int32]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int32",
- "printedName": "Swift.Int32",
- "usr": "s:s5Int32V"
- }
- ],
- "usr": "s:Sa"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit6SysctlV6string3forSSSays5Int32VG_tKFZ",
- "mangledName": "$s13ApptentiveKit6SysctlV6string3forSSSays5Int32VG_tKFZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "throwing": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "string",
- "printedName": "string(for:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- },
- {
- "kind": "TypeNominal",
- "name": "Array",
- "printedName": "[Swift.Int32]",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int32",
- "printedName": "Swift.Int32",
- "usr": "s:s5Int32V"
- }
- ],
- "usr": "s:Sa"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit6SysctlV6string3forSSs5Int32Vd_tKFZ",
- "mangledName": "$s13ApptentiveKit6SysctlV6string3forSSs5Int32Vd_tKFZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "throwing": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Function",
- "name": "string",
- "printedName": "string(for:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- },
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Func",
- "usr": "s:13ApptentiveKit6SysctlV6string3forS2S_tKFZ",
- "mangledName": "$s13ApptentiveKit6SysctlV6string3forS2S_tKFZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "throwing": true,
- "funcSelfKind": "NonMutating"
- },
- {
- "kind": "Var",
- "name": "hostName",
- "printedName": "hostName",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit6SysctlV8hostNameSSvpZ",
- "mangledName": "$s13ApptentiveKit6SysctlV8hostNameSSvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit6SysctlV8hostNameSSvgZ",
- "mangledName": "$s13ApptentiveKit6SysctlV8hostNameSSvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "machine",
- "printedName": "machine",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit6SysctlV7machineSSvpZ",
- "mangledName": "$s13ApptentiveKit6SysctlV7machineSSvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit6SysctlV7machineSSvgZ",
- "mangledName": "$s13ApptentiveKit6SysctlV7machineSSvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "model",
- "printedName": "model",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit6SysctlV5modelSSvpZ",
- "mangledName": "$s13ApptentiveKit6SysctlV5modelSSvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit6SysctlV5modelSSvgZ",
- "mangledName": "$s13ApptentiveKit6SysctlV5modelSSvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "activeCPUs",
- "printedName": "activeCPUs",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int32",
- "printedName": "Swift.Int32",
- "usr": "s:s5Int32V"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit6SysctlV10activeCPUss5Int32VvpZ",
- "mangledName": "$s13ApptentiveKit6SysctlV10activeCPUss5Int32VvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int32",
- "printedName": "Swift.Int32",
- "usr": "s:s5Int32V"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit6SysctlV10activeCPUss5Int32VvgZ",
- "mangledName": "$s13ApptentiveKit6SysctlV10activeCPUss5Int32VvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "osRelease",
- "printedName": "osRelease",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit6SysctlV9osReleaseSSvpZ",
- "mangledName": "$s13ApptentiveKit6SysctlV9osReleaseSSvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit6SysctlV9osReleaseSSvgZ",
- "mangledName": "$s13ApptentiveKit6SysctlV9osReleaseSSvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "osType",
- "printedName": "osType",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit6SysctlV6osTypeSSvpZ",
- "mangledName": "$s13ApptentiveKit6SysctlV6osTypeSSvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit6SysctlV6osTypeSSvgZ",
- "mangledName": "$s13ApptentiveKit6SysctlV6osTypeSSvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "osVersion",
- "printedName": "osVersion",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit6SysctlV9osVersionSSvpZ",
- "mangledName": "$s13ApptentiveKit6SysctlV9osVersionSSvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit6SysctlV9osVersionSSvgZ",
- "mangledName": "$s13ApptentiveKit6SysctlV9osVersionSSvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "version",
- "printedName": "version",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Var",
- "usr": "s:13ApptentiveKit6SysctlV7versionSSvpZ",
- "mangledName": "$s13ApptentiveKit6SysctlV7versionSSvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit6SysctlV7versionSSvgZ",
- "mangledName": "$s13ApptentiveKit6SysctlV7versionSSvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "accessorKind": "get"
- }
- ]
- }
- ],
- "declKind": "Struct",
- "usr": "s:13ApptentiveKit6SysctlV",
- "mangledName": "$s13ApptentiveKit6SysctlV",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "Foundation",
- "printedName": "Foundation",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Import",
- "name": "UIKit",
- "printedName": "UIKit",
- "declKind": "Import",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "ApptentiveNavigationController",
- "printedName": "ApptentiveNavigationController",
- "children": [
- {
- "kind": "Var",
- "name": "preferredStatusBarStyle",
- "printedName": "preferredStatusBarStyle",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIStatusBarStyle",
- "printedName": "UIKit.UIStatusBarStyle",
- "usr": "c:@E@UIStatusBarStyle"
- }
- ],
- "declKind": "Var",
- "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveNavigationController(py)preferredStatusBarStyle",
- "mangledName": "$s13ApptentiveKit0A20NavigationControllerC23preferredStatusBarStyleSo08UIStatusgH0Vvp",
- "moduleName": "ApptentiveKit",
- "overriding": true,
- "objc_name": "preferredStatusBarStyle",
- "declAttributes": [
- "Dynamic",
- "ObjC",
- "Custom",
- "Override",
- "AccessControl",
- "RawDocComment"
- ],
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIStatusBarStyle",
- "printedName": "UIKit.UIStatusBarStyle",
- "usr": "c:@E@UIStatusBarStyle"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveNavigationController(im)preferredStatusBarStyle",
- "mangledName": "$s13ApptentiveKit0A20NavigationControllerC23preferredStatusBarStyleSo08UIStatusgH0Vvg",
- "moduleName": "ApptentiveKit",
- "overriding": true,
- "objc_name": "preferredStatusBarStyle",
- "declAttributes": [
- "Dynamic",
- "ObjC"
- ],
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "prefersLargeHeader",
- "printedName": "prefersLargeHeader",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ],
- "declKind": "Var",
- "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveNavigationController(cpy)prefersLargeHeader",
- "mangledName": "$s13ApptentiveKit0A20NavigationControllerC18prefersLargeHeaderSbvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "Custom",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveNavigationController(cm)prefersLargeHeader",
- "mangledName": "$s13ApptentiveKit0A20NavigationControllerC18prefersLargeHeaderSbvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final",
- "ObjC"
- ],
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveNavigationController(cm)setPrefersLargeHeader:",
- "mangledName": "$s13ApptentiveKit0A20NavigationControllerC18prefersLargeHeaderSbvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final",
- "ObjC"
- ],
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:13ApptentiveKit0A20NavigationControllerC18prefersLargeHeaderSbvMZ",
- "mangledName": "$s13ApptentiveKit0A20NavigationControllerC18prefersLargeHeaderSbvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(navigationBarClass:toolbarClass:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveNavigationController",
- "printedName": "ApptentiveKit.ApptentiveNavigationController",
- "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveNavigationController"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "AnyObject.Type?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ExistentialMetatype",
- "printedName": "AnyObject.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ProtocolComposition",
- "printedName": "AnyObject"
- }
- ]
- }
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "AnyObject.Type?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ExistentialMetatype",
- "printedName": "AnyObject.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ProtocolComposition",
- "printedName": "AnyObject"
- }
- ]
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Constructor",
- "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveNavigationController(im)initWithNavigationBarClass:toolbarClass:",
- "mangledName": "$s13ApptentiveKit0A20NavigationControllerC18navigationBarClass07toolbarG0ACyXlXpSg_AFtcfc",
- "moduleName": "ApptentiveKit",
- "overriding": true,
- "implicit": true,
- "intro_iOS": "5.0",
- "objc_name": "initWithNavigationBarClass:toolbarClass:",
- "declAttributes": [
- "Dynamic",
- "ObjC",
- "Custom",
- "Override",
- "Available"
- ],
- "init_kind": "Designated"
- },
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(rootViewController:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveNavigationController",
- "printedName": "ApptentiveKit.ApptentiveNavigationController",
- "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveNavigationController"
- },
- {
- "kind": "TypeNominal",
- "name": "UIViewController",
- "printedName": "UIKit.UIViewController",
- "usr": "c:objc(cs)UIViewController"
- }
- ],
- "declKind": "Constructor",
- "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveNavigationController(im)initWithRootViewController:",
- "mangledName": "$s13ApptentiveKit0A20NavigationControllerC08rootViewD0ACSo06UIViewD0C_tcfc",
- "moduleName": "ApptentiveKit",
- "overriding": true,
- "implicit": true,
- "objc_name": "initWithRootViewController:",
- "declAttributes": [
- "Dynamic",
- "ObjC",
- "Custom",
- "Override"
- ],
- "init_kind": "Designated"
- },
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(nibName:bundle:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveNavigationController",
- "printedName": "ApptentiveKit.ApptentiveNavigationController",
- "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveNavigationController"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Swift.String?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "Foundation.Bundle?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bundle",
- "printedName": "Foundation.Bundle",
- "usr": "c:objc(cs)NSBundle"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Constructor",
- "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveNavigationController(im)initWithNibName:bundle:",
- "mangledName": "$s13ApptentiveKit0A20NavigationControllerC7nibName6bundleACSSSg_So8NSBundleCSgtcfc",
- "moduleName": "ApptentiveKit",
- "overriding": true,
- "implicit": true,
- "objc_name": "initWithNibName:bundle:",
- "declAttributes": [
- "Dynamic",
- "ObjC",
- "Custom",
- "Override"
- ],
- "init_kind": "Designated"
- },
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(coder:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "ApptentiveKit.ApptentiveNavigationController?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveNavigationController",
- "printedName": "ApptentiveKit.ApptentiveNavigationController",
- "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveNavigationController"
- }
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "NSCoder",
- "printedName": "Foundation.NSCoder",
- "usr": "c:objc(cs)NSCoder"
- }
- ],
- "declKind": "Constructor",
- "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveNavigationController(im)initWithCoder:",
- "mangledName": "$s13ApptentiveKit0A20NavigationControllerC5coderACSgSo7NSCoderC_tcfc",
- "moduleName": "ApptentiveKit",
- "overriding": true,
- "implicit": true,
- "objc_name": "initWithCoder:",
- "declAttributes": [
- "Dynamic",
- "ObjC",
- "Custom",
- "Required"
- ],
- "init_kind": "Designated"
- }
- ],
- "declKind": "Class",
- "usr": "c:@M@ApptentiveKit@objc(cs)ApptentiveNavigationController",
- "mangledName": "$s13ApptentiveKit0A20NavigationControllerC",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Custom",
- "AccessControl",
- "RawDocComment",
- "ObjC"
- ],
- "superclassUsr": "c:objc(cs)UINavigationController",
- "inheritsConvenienceInitializers": true,
- "superclassNames": [
- "UIKit.UINavigationController",
- "UIKit.UIViewController",
- "UIKit.UIResponder",
- "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": "Conformance",
- "name": "Sendable",
- "printedName": "Sendable",
- "usr": "s:s8SendableP",
- "mangledName": "$ss8SendableP"
- }
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "URLSession",
- "printedName": "URLSession",
- "declKind": "Class",
- "usr": "c:objc(cs)NSURLSession",
- "moduleName": "Foundation",
- "isOpen": true,
- "intro_iOS": "7.0",
- "objc_name": "NSURLSession",
- "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": "TypeDecl",
- "name": "String",
- "printedName": "String",
- "declKind": "Struct",
- "usr": "s:SS",
- "mangledName": "$sSS",
- "moduleName": "Swift",
- "declAttributes": [
- "Frozen"
- ],
- "isExternal": true,
- "conformances": [
- {
- "kind": "Conformance",
- "name": "CustomDataCompatible",
- "printedName": "CustomDataCompatible",
- "usr": "s:13ApptentiveKit20CustomDataCompatibleP",
- "mangledName": "$s13ApptentiveKit20CustomDataCompatibleP"
- },
- {
- "kind": "Conformance",
- "name": "Decodable",
- "printedName": "Decodable",
- "usr": "s:Se",
- "mangledName": "$sSe"
- },
- {
- "kind": "Conformance",
- "name": "Encodable",
- "printedName": "Encodable",
- "usr": "s:SE",
- "mangledName": "$sSE"
- },
- {
- "kind": "Conformance",
- "name": "CodingKeyRepresentable",
- "printedName": "CodingKeyRepresentable",
- "usr": "s:s22CodingKeyRepresentableP",
- "mangledName": "$ss22CodingKeyRepresentableP"
- },
- {
- "kind": "Conformance",
- "name": "_HasContiguousBytes",
- "printedName": "_HasContiguousBytes",
- "usr": "s:s19_HasContiguousBytesP",
- "mangledName": "$ss19_HasContiguousBytesP"
- },
- {
- "kind": "Conformance",
- "name": "CustomReflectable",
- "printedName": "CustomReflectable",
- "usr": "s:s17CustomReflectableP",
- "mangledName": "$ss17CustomReflectableP"
- },
- {
- "kind": "Conformance",
- "name": "_CustomPlaygroundQuickLookable",
- "printedName": "_CustomPlaygroundQuickLookable",
- "usr": "s:s30_CustomPlaygroundQuickLookableP",
- "mangledName": "$ss30_CustomPlaygroundQuickLookableP"
- },
- {
- "kind": "Conformance",
- "name": "TextOutputStream",
- "printedName": "TextOutputStream",
- "usr": "s:s16TextOutputStreamP",
- "mangledName": "$ss16TextOutputStreamP"
- },
- {
- "kind": "Conformance",
- "name": "TextOutputStreamable",
- "printedName": "TextOutputStreamable",
- "usr": "s:s20TextOutputStreamableP",
- "mangledName": "$ss20TextOutputStreamableP"
- },
- {
- "kind": "Conformance",
- "name": "Hashable",
- "printedName": "Hashable",
- "usr": "s:SH",
- "mangledName": "$sSH"
- },
- {
- "kind": "Conformance",
- "name": "Sendable",
- "printedName": "Sendable",
- "usr": "s:s8SendableP",
- "mangledName": "$ss8SendableP"
- },
- {
- "kind": "Conformance",
- "name": "_ExpressibleByBuiltinUnicodeScalarLiteral",
- "printedName": "_ExpressibleByBuiltinUnicodeScalarLiteral",
- "usr": "s:s41_ExpressibleByBuiltinUnicodeScalarLiteralP",
- "mangledName": "$ss41_ExpressibleByBuiltinUnicodeScalarLiteralP"
- },
- {
- "kind": "Conformance",
- "name": "_ExpressibleByBuiltinExtendedGraphemeClusterLiteral",
- "printedName": "_ExpressibleByBuiltinExtendedGraphemeClusterLiteral",
- "usr": "s:s51_ExpressibleByBuiltinExtendedGraphemeClusterLiteralP",
- "mangledName": "$ss51_ExpressibleByBuiltinExtendedGraphemeClusterLiteralP"
- },
- {
- "kind": "Conformance",
- "name": "_ExpressibleByBuiltinStringLiteral",
- "printedName": "_ExpressibleByBuiltinStringLiteral",
- "usr": "s:s34_ExpressibleByBuiltinStringLiteralP",
- "mangledName": "$ss34_ExpressibleByBuiltinStringLiteralP"
- },
- {
- "kind": "Conformance",
- "name": "ExpressibleByStringLiteral",
- "printedName": "ExpressibleByStringLiteral",
- "children": [
- {
- "kind": "TypeWitness",
- "name": "StringLiteralType",
- "printedName": "StringLiteralType",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ]
- }
- ],
- "usr": "s:s26ExpressibleByStringLiteralP",
- "mangledName": "$ss26ExpressibleByStringLiteralP"
- },
- {
- "kind": "Conformance",
- "name": "ExpressibleByExtendedGraphemeClusterLiteral",
- "printedName": "ExpressibleByExtendedGraphemeClusterLiteral",
- "children": [
- {
- "kind": "TypeWitness",
- "name": "ExtendedGraphemeClusterLiteralType",
- "printedName": "ExtendedGraphemeClusterLiteralType",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ]
- }
- ],
- "usr": "s:s43ExpressibleByExtendedGraphemeClusterLiteralP",
- "mangledName": "$ss43ExpressibleByExtendedGraphemeClusterLiteralP"
- },
- {
- "kind": "Conformance",
- "name": "ExpressibleByUnicodeScalarLiteral",
- "printedName": "ExpressibleByUnicodeScalarLiteral",
- "children": [
- {
- "kind": "TypeWitness",
- "name": "UnicodeScalarLiteralType",
- "printedName": "UnicodeScalarLiteralType",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ]
- }
- ],
- "usr": "s:s33ExpressibleByUnicodeScalarLiteralP",
- "mangledName": "$ss33ExpressibleByUnicodeScalarLiteralP"
- },
- {
- "kind": "Conformance",
- "name": "CustomDebugStringConvertible",
- "printedName": "CustomDebugStringConvertible",
- "usr": "s:s28CustomDebugStringConvertibleP",
- "mangledName": "$ss28CustomDebugStringConvertibleP"
- },
- {
- "kind": "Conformance",
- "name": "CustomStringConvertible",
- "printedName": "CustomStringConvertible",
- "usr": "s:s23CustomStringConvertibleP",
- "mangledName": "$ss23CustomStringConvertibleP"
- },
- {
- "kind": "Conformance",
- "name": "BidirectionalCollection",
- "printedName": "BidirectionalCollection",
- "children": [
- {
- "kind": "TypeWitness",
- "name": "Element",
- "printedName": "Element",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Character",
- "printedName": "Swift.Character",
- "usr": "s:SJ"
- }
- ]
- },
- {
- "kind": "TypeWitness",
- "name": "Index",
- "printedName": "Index",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Index",
- "printedName": "Swift.String.Index",
- "usr": "s:SS5IndexV"
- }
- ]
- },
- {
- "kind": "TypeWitness",
- "name": "SubSequence",
- "printedName": "SubSequence",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Substring",
- "printedName": "Swift.Substring",
- "usr": "s:Ss"
- }
- ]
- },
- {
- "kind": "TypeWitness",
- "name": "Indices",
- "printedName": "Indices",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "DefaultIndices",
- "printedName": "Swift.DefaultIndices",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:SI"
- }
- ]
- }
- ],
- "usr": "s:SK",
- "mangledName": "$sSK"
- },
- {
- "kind": "Conformance",
- "name": "Collection",
- "printedName": "Collection",
- "children": [
- {
- "kind": "TypeWitness",
- "name": "Element",
- "printedName": "Element",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Character",
- "printedName": "Swift.Character",
- "usr": "s:SJ"
- }
- ]
- },
- {
- "kind": "TypeWitness",
- "name": "Index",
- "printedName": "Index",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Index",
- "printedName": "Swift.String.Index",
- "usr": "s:SS5IndexV"
- }
- ]
- },
- {
- "kind": "TypeWitness",
- "name": "Iterator",
- "printedName": "Iterator",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Iterator",
- "printedName": "Swift.String.Iterator",
- "usr": "s:SS8IteratorV"
- }
- ]
- },
- {
- "kind": "TypeWitness",
- "name": "SubSequence",
- "printedName": "SubSequence",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Substring",
- "printedName": "Swift.Substring",
- "usr": "s:Ss"
- }
- ]
- },
- {
- "kind": "TypeWitness",
- "name": "Indices",
- "printedName": "Indices",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "DefaultIndices",
- "printedName": "Swift.DefaultIndices",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ],
- "usr": "s:SI"
- }
- ]
- }
- ],
- "usr": "s:Sl",
- "mangledName": "$sSl"
- },
- {
- "kind": "Conformance",
- "name": "Sequence",
- "printedName": "Sequence",
- "children": [
- {
- "kind": "TypeWitness",
- "name": "Element",
- "printedName": "Element",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Character",
- "printedName": "Swift.Character",
- "usr": "s:SJ"
- }
- ]
- },
- {
- "kind": "TypeWitness",
- "name": "Iterator",
- "printedName": "Iterator",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Iterator",
- "printedName": "Swift.String.Iterator",
- "usr": "s:SS8IteratorV"
- }
- ]
- }
- ],
- "usr": "s:ST",
- "mangledName": "$sST"
- },
- {
- "kind": "Conformance",
- "name": "Equatable",
- "printedName": "Equatable",
- "usr": "s:SQ",
- "mangledName": "$sSQ"
- },
- {
- "kind": "Conformance",
- "name": "Comparable",
- "printedName": "Comparable",
- "usr": "s:SL",
- "mangledName": "$sSL"
- },
- {
- "kind": "Conformance",
- "name": "StringProtocol",
- "printedName": "StringProtocol",
- "children": [
- {
- "kind": "TypeWitness",
- "name": "UTF8View",
- "printedName": "UTF8View",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UTF8View",
- "printedName": "Swift.String.UTF8View",
- "usr": "s:SS8UTF8ViewV"
- }
- ]
- },
- {
- "kind": "TypeWitness",
- "name": "UTF16View",
- "printedName": "UTF16View",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UTF16View",
- "printedName": "Swift.String.UTF16View",
- "usr": "s:SS9UTF16ViewV"
- }
- ]
- },
- {
- "kind": "TypeWitness",
- "name": "UnicodeScalarView",
- "printedName": "UnicodeScalarView",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UnicodeScalarView",
- "printedName": "Swift.String.UnicodeScalarView",
- "usr": "s:SS17UnicodeScalarViewV"
- }
- ]
- },
- {
- "kind": "TypeWitness",
- "name": "SubSequence",
- "printedName": "SubSequence",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Substring",
- "printedName": "Swift.Substring",
- "usr": "s:Ss"
- }
- ]
- }
- ],
- "usr": "s:Sy",
- "mangledName": "$sSy"
- },
- {
- "kind": "Conformance",
- "name": "ExpressibleByStringInterpolation",
- "printedName": "ExpressibleByStringInterpolation",
- "children": [
- {
- "kind": "TypeWitness",
- "name": "StringInterpolation",
- "printedName": "StringInterpolation",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "DefaultStringInterpolation",
- "printedName": "Swift.DefaultStringInterpolation",
- "usr": "s:s26DefaultStringInterpolationV"
- }
- ]
- }
- ],
- "usr": "s:s32ExpressibleByStringInterpolationP",
- "mangledName": "$ss32ExpressibleByStringInterpolationP"
- },
- {
- "kind": "Conformance",
- "name": "LosslessStringConvertible",
- "printedName": "LosslessStringConvertible",
- "usr": "s:s25LosslessStringConvertibleP",
- "mangledName": "$ss25LosslessStringConvertibleP"
- },
- {
- "kind": "Conformance",
- "name": "RangeReplaceableCollection",
- "printedName": "RangeReplaceableCollection",
- "children": [
- {
- "kind": "TypeWitness",
- "name": "SubSequence",
- "printedName": "SubSequence",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Substring",
- "printedName": "Swift.Substring",
- "usr": "s:Ss"
- }
- ]
- }
- ],
- "usr": "s:Sm",
- "mangledName": "$sSm"
- },
- {
- "kind": "Conformance",
- "name": "MirrorPath",
- "printedName": "MirrorPath",
- "usr": "s:s10MirrorPathP",
- "mangledName": "$ss10MirrorPathP"
- },
- {
- "kind": "Conformance",
- "name": "_ObjectiveCBridgeable",
- "printedName": "_ObjectiveCBridgeable",
- "children": [
- {
- "kind": "TypeWitness",
- "name": "_ObjectiveCType",
- "printedName": "_ObjectiveCType",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "NSString",
- "printedName": "Foundation.NSString",
- "usr": "c:objc(cs)NSString"
- }
- ]
- }
- ],
- "usr": "s:s21_ObjectiveCBridgeableP",
- "mangledName": "$ss21_ObjectiveCBridgeableP"
- },
- {
- "kind": "Conformance",
- "name": "CVarArg",
- "printedName": "CVarArg",
- "usr": "s:s7CVarArgP",
- "mangledName": "$ss7CVarArgP"
- }
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "Double",
- "printedName": "Double",
- "declKind": "Struct",
- "usr": "s:Sd",
- "mangledName": "$sSd",
- "moduleName": "Swift",
- "declAttributes": [
- "Frozen"
- ],
- "isExternal": true,
- "conformances": [
- {
- "kind": "Conformance",
- "name": "CustomDataCompatible",
- "printedName": "CustomDataCompatible",
- "usr": "s:13ApptentiveKit20CustomDataCompatibleP",
- "mangledName": "$s13ApptentiveKit20CustomDataCompatibleP"
- },
- {
- "kind": "Conformance",
- "name": "Decodable",
- "printedName": "Decodable",
- "usr": "s:Se",
- "mangledName": "$sSe"
- },
- {
- "kind": "Conformance",
- "name": "Encodable",
- "printedName": "Encodable",
- "usr": "s:SE",
- "mangledName": "$sSE"
- },
- {
- "kind": "Conformance",
- "name": "CustomReflectable",
- "printedName": "CustomReflectable",
- "usr": "s:s17CustomReflectableP",
- "mangledName": "$ss17CustomReflectableP"
- },
- {
- "kind": "Conformance",
- "name": "_CustomPlaygroundQuickLookable",
- "printedName": "_CustomPlaygroundQuickLookable",
- "usr": "s:s30_CustomPlaygroundQuickLookableP",
- "mangledName": "$ss30_CustomPlaygroundQuickLookableP"
- },
- {
- "kind": "Conformance",
- "name": "_CVarArgPassedAsDouble",
- "printedName": "_CVarArgPassedAsDouble",
- "usr": "s:s22_CVarArgPassedAsDoubleP",
- "mangledName": "$ss22_CVarArgPassedAsDoubleP"
- },
- {
- "kind": "Conformance",
- "name": "_CVarArgAligned",
- "printedName": "_CVarArgAligned",
- "usr": "s:s15_CVarArgAlignedP",
- "mangledName": "$ss15_CVarArgAlignedP"
- },
- {
- "kind": "Conformance",
- "name": "CVarArg",
- "printedName": "CVarArg",
- "usr": "s:s7CVarArgP",
- "mangledName": "$ss7CVarArgP"
- },
- {
- "kind": "Conformance",
- "name": "LosslessStringConvertible",
- "printedName": "LosslessStringConvertible",
- "usr": "s:s25LosslessStringConvertibleP",
- "mangledName": "$ss25LosslessStringConvertibleP"
- },
- {
- "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": "TextOutputStreamable",
- "printedName": "TextOutputStreamable",
- "usr": "s:s20TextOutputStreamableP",
- "mangledName": "$ss20TextOutputStreamableP"
- },
- {
- "kind": "Conformance",
- "name": "BinaryFloatingPoint",
- "printedName": "BinaryFloatingPoint",
- "children": [
- {
- "kind": "TypeWitness",
- "name": "RawSignificand",
- "printedName": "RawSignificand",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UInt64",
- "printedName": "Swift.UInt64",
- "usr": "s:s6UInt64V"
- }
- ]
- },
- {
- "kind": "TypeWitness",
- "name": "RawExponent",
- "printedName": "RawExponent",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UInt",
- "printedName": "Swift.UInt",
- "usr": "s:Su"
- }
- ]
- }
- ],
- "usr": "s:SB",
- "mangledName": "$sSB"
- },
- {
- "kind": "Conformance",
- "name": "ExpressibleByFloatLiteral",
- "printedName": "ExpressibleByFloatLiteral",
- "children": [
- {
- "kind": "TypeWitness",
- "name": "FloatLiteralType",
- "printedName": "FloatLiteralType",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Double",
- "printedName": "Swift.Double",
- "usr": "s:Sd"
- }
- ]
- }
- ],
- "usr": "s:s25ExpressibleByFloatLiteralP",
- "mangledName": "$ss25ExpressibleByFloatLiteralP"
- },
- {
- "kind": "Conformance",
- "name": "FloatingPoint",
- "printedName": "FloatingPoint",
- "children": [
- {
- "kind": "TypeWitness",
- "name": "Exponent",
- "printedName": "Exponent",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ]
- }
- ],
- "usr": "s:SF",
- "mangledName": "$sSF"
- },
- {
- "kind": "Conformance",
- "name": "SignedNumeric",
- "printedName": "SignedNumeric",
- "usr": "s:s13SignedNumericP",
- "mangledName": "$ss13SignedNumericP"
- },
- {
- "kind": "Conformance",
- "name": "Numeric",
- "printedName": "Numeric",
- "children": [
- {
- "kind": "TypeWitness",
- "name": "Magnitude",
- "printedName": "Magnitude",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Double",
- "printedName": "Swift.Double",
- "usr": "s:Sd"
- }
- ]
- }
- ],
- "usr": "s:Sj",
- "mangledName": "$sSj"
- },
- {
- "kind": "Conformance",
- "name": "AdditiveArithmetic",
- "printedName": "AdditiveArithmetic",
- "usr": "s:s18AdditiveArithmeticP",
- "mangledName": "$ss18AdditiveArithmeticP"
- },
- {
- "kind": "Conformance",
- "name": "_ExpressibleByBuiltinIntegerLiteral",
- "printedName": "_ExpressibleByBuiltinIntegerLiteral",
- "usr": "s:s35_ExpressibleByBuiltinIntegerLiteralP",
- "mangledName": "$ss35_ExpressibleByBuiltinIntegerLiteralP"
- },
- {
- "kind": "Conformance",
- "name": "ExpressibleByIntegerLiteral",
- "printedName": "ExpressibleByIntegerLiteral",
- "children": [
- {
- "kind": "TypeWitness",
- "name": "IntegerLiteralType",
- "printedName": "IntegerLiteralType",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int64",
- "printedName": "Swift.Int64",
- "usr": "s:s5Int64V"
- }
- ]
- }
- ],
- "usr": "s:s27ExpressibleByIntegerLiteralP",
- "mangledName": "$ss27ExpressibleByIntegerLiteralP"
- },
- {
- "kind": "Conformance",
- "name": "_ExpressibleByBuiltinFloatLiteral",
- "printedName": "_ExpressibleByBuiltinFloatLiteral",
- "usr": "s:s33_ExpressibleByBuiltinFloatLiteralP",
- "mangledName": "$ss33_ExpressibleByBuiltinFloatLiteralP"
- },
- {
- "kind": "Conformance",
- "name": "Hashable",
- "printedName": "Hashable",
- "usr": "s:SH",
- "mangledName": "$sSH"
- },
- {
- "kind": "Conformance",
- "name": "Equatable",
- "printedName": "Equatable",
- "usr": "s:SQ",
- "mangledName": "$sSQ"
- },
- {
- "kind": "Conformance",
- "name": "_HasCustomAnyHashableRepresentation",
- "printedName": "_HasCustomAnyHashableRepresentation",
- "usr": "s:s35_HasCustomAnyHashableRepresentationP",
- "mangledName": "$ss35_HasCustomAnyHashableRepresentationP"
- },
- {
- "kind": "Conformance",
- "name": "Sendable",
- "printedName": "Sendable",
- "usr": "s:s8SendableP",
- "mangledName": "$ss8SendableP"
- },
- {
- "kind": "Conformance",
- "name": "Strideable",
- "printedName": "Strideable",
- "children": [
- {
- "kind": "TypeWitness",
- "name": "Stride",
- "printedName": "Stride",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Double",
- "printedName": "Swift.Double",
- "usr": "s:Sd"
- }
- ]
- }
- ],
- "usr": "s:Sx",
- "mangledName": "$sSx"
- },
- {
- "kind": "Conformance",
- "name": "Comparable",
- "printedName": "Comparable",
- "usr": "s:SL",
- "mangledName": "$sSL"
- },
- {
- "kind": "Conformance",
- "name": "SIMDScalar",
- "printedName": "SIMDScalar",
- "children": [
- {
- "kind": "TypeWitness",
- "name": "SIMDMaskScalar",
- "printedName": "SIMDMaskScalar",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int64",
- "printedName": "Swift.Int64",
- "usr": "s:s5Int64V"
- }
- ]
- },
- {
- "kind": "TypeWitness",
- "name": "SIMD2Storage",
- "printedName": "SIMD2Storage",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "SIMD2Storage",
- "printedName": "Swift.Double.SIMD2Storage",
- "usr": "s:Sd12SIMD2StorageV"
- }
- ]
- },
- {
- "kind": "TypeWitness",
- "name": "SIMD4Storage",
- "printedName": "SIMD4Storage",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "SIMD4Storage",
- "printedName": "Swift.Double.SIMD4Storage",
- "usr": "s:Sd12SIMD4StorageV"
- }
- ]
- },
- {
- "kind": "TypeWitness",
- "name": "SIMD8Storage",
- "printedName": "SIMD8Storage",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "SIMD8Storage",
- "printedName": "Swift.Double.SIMD8Storage",
- "usr": "s:Sd12SIMD8StorageV"
- }
- ]
- },
- {
- "kind": "TypeWitness",
- "name": "SIMD16Storage",
- "printedName": "SIMD16Storage",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "SIMD16Storage",
- "printedName": "Swift.Double.SIMD16Storage",
- "usr": "s:Sd13SIMD16StorageV"
- }
- ]
- },
- {
- "kind": "TypeWitness",
- "name": "SIMD32Storage",
- "printedName": "SIMD32Storage",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "SIMD32Storage",
- "printedName": "Swift.Double.SIMD32Storage",
- "usr": "s:Sd13SIMD32StorageV"
- }
- ]
- },
- {
- "kind": "TypeWitness",
- "name": "SIMD64Storage",
- "printedName": "SIMD64Storage",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "SIMD64Storage",
- "printedName": "Swift.Double.SIMD64Storage",
- "usr": "s:Sd13SIMD64StorageV"
- }
- ]
- }
- ],
- "usr": "s:s10SIMDScalarP",
- "mangledName": "$ss10SIMDScalarP"
- },
- {
- "kind": "Conformance",
- "name": "_FormatSpecifiable",
- "printedName": "_FormatSpecifiable",
- "children": [
- {
- "kind": "TypeWitness",
- "name": "_Arg",
- "printedName": "_Arg",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Double",
- "printedName": "Swift.Double",
- "usr": "s:Sd"
- }
- ]
- }
- ],
- "usr": "s:10Foundation18_FormatSpecifiableP",
- "mangledName": "$s10Foundation18_FormatSpecifiableP"
- },
- {
- "kind": "Conformance",
- "name": "_ObjectiveCBridgeable",
- "printedName": "_ObjectiveCBridgeable",
- "children": [
- {
- "kind": "TypeWitness",
- "name": "_ObjectiveCType",
- "printedName": "_ObjectiveCType",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "NSNumber",
- "printedName": "Foundation.NSNumber",
- "usr": "c:objc(cs)NSNumber"
- }
- ]
- }
- ],
- "usr": "s:s21_ObjectiveCBridgeableP",
- "mangledName": "$ss21_ObjectiveCBridgeableP"
- }
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "Float",
- "printedName": "Float",
- "declKind": "Struct",
- "usr": "s:Sf",
- "mangledName": "$sSf",
- "moduleName": "Swift",
- "declAttributes": [
- "Frozen"
- ],
- "isExternal": true,
- "conformances": [
- {
- "kind": "Conformance",
- "name": "CustomDataCompatible",
- "printedName": "CustomDataCompatible",
- "usr": "s:13ApptentiveKit20CustomDataCompatibleP",
- "mangledName": "$s13ApptentiveKit20CustomDataCompatibleP"
- },
- {
- "kind": "Conformance",
- "name": "Decodable",
- "printedName": "Decodable",
- "usr": "s:Se",
- "mangledName": "$sSe"
- },
- {
- "kind": "Conformance",
- "name": "Encodable",
- "printedName": "Encodable",
- "usr": "s:SE",
- "mangledName": "$sSE"
- },
- {
- "kind": "Conformance",
- "name": "CustomReflectable",
- "printedName": "CustomReflectable",
- "usr": "s:s17CustomReflectableP",
- "mangledName": "$ss17CustomReflectableP"
- },
- {
- "kind": "Conformance",
- "name": "_CustomPlaygroundQuickLookable",
- "printedName": "_CustomPlaygroundQuickLookable",
- "usr": "s:s30_CustomPlaygroundQuickLookableP",
- "mangledName": "$ss30_CustomPlaygroundQuickLookableP"
- },
- {
- "kind": "Conformance",
- "name": "_CVarArgPassedAsDouble",
- "printedName": "_CVarArgPassedAsDouble",
- "usr": "s:s22_CVarArgPassedAsDoubleP",
- "mangledName": "$ss22_CVarArgPassedAsDoubleP"
- },
- {
- "kind": "Conformance",
- "name": "_CVarArgAligned",
- "printedName": "_CVarArgAligned",
- "usr": "s:s15_CVarArgAlignedP",
- "mangledName": "$ss15_CVarArgAlignedP"
- },
- {
- "kind": "Conformance",
- "name": "CVarArg",
- "printedName": "CVarArg",
- "usr": "s:s7CVarArgP",
- "mangledName": "$ss7CVarArgP"
- },
- {
- "kind": "Conformance",
- "name": "LosslessStringConvertible",
- "printedName": "LosslessStringConvertible",
- "usr": "s:s25LosslessStringConvertibleP",
- "mangledName": "$ss25LosslessStringConvertibleP"
- },
- {
- "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": "TextOutputStreamable",
- "printedName": "TextOutputStreamable",
- "usr": "s:s20TextOutputStreamableP",
- "mangledName": "$ss20TextOutputStreamableP"
- },
- {
- "kind": "Conformance",
- "name": "BinaryFloatingPoint",
- "printedName": "BinaryFloatingPoint",
- "children": [
- {
- "kind": "TypeWitness",
- "name": "RawSignificand",
- "printedName": "RawSignificand",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UInt32",
- "printedName": "Swift.UInt32",
- "usr": "s:s6UInt32V"
- }
- ]
- },
- {
- "kind": "TypeWitness",
- "name": "RawExponent",
- "printedName": "RawExponent",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UInt",
- "printedName": "Swift.UInt",
- "usr": "s:Su"
- }
- ]
- }
- ],
- "usr": "s:SB",
- "mangledName": "$sSB"
- },
- {
- "kind": "Conformance",
- "name": "ExpressibleByFloatLiteral",
- "printedName": "ExpressibleByFloatLiteral",
- "children": [
- {
- "kind": "TypeWitness",
- "name": "FloatLiteralType",
- "printedName": "FloatLiteralType",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Float",
- "printedName": "Swift.Float",
- "usr": "s:Sf"
- }
- ]
- }
- ],
- "usr": "s:s25ExpressibleByFloatLiteralP",
- "mangledName": "$ss25ExpressibleByFloatLiteralP"
- },
- {
- "kind": "Conformance",
- "name": "FloatingPoint",
- "printedName": "FloatingPoint",
- "children": [
- {
- "kind": "TypeWitness",
- "name": "Exponent",
- "printedName": "Exponent",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ]
- }
- ],
- "usr": "s:SF",
- "mangledName": "$sSF"
- },
- {
- "kind": "Conformance",
- "name": "SignedNumeric",
- "printedName": "SignedNumeric",
- "usr": "s:s13SignedNumericP",
- "mangledName": "$ss13SignedNumericP"
- },
- {
- "kind": "Conformance",
- "name": "Numeric",
- "printedName": "Numeric",
- "children": [
- {
- "kind": "TypeWitness",
- "name": "Magnitude",
- "printedName": "Magnitude",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Float",
- "printedName": "Swift.Float",
- "usr": "s:Sf"
- }
- ]
- }
- ],
- "usr": "s:Sj",
- "mangledName": "$sSj"
- },
- {
- "kind": "Conformance",
- "name": "AdditiveArithmetic",
- "printedName": "AdditiveArithmetic",
- "usr": "s:s18AdditiveArithmeticP",
- "mangledName": "$ss18AdditiveArithmeticP"
- },
- {
- "kind": "Conformance",
- "name": "_ExpressibleByBuiltinIntegerLiteral",
- "printedName": "_ExpressibleByBuiltinIntegerLiteral",
- "usr": "s:s35_ExpressibleByBuiltinIntegerLiteralP",
- "mangledName": "$ss35_ExpressibleByBuiltinIntegerLiteralP"
- },
- {
- "kind": "Conformance",
- "name": "ExpressibleByIntegerLiteral",
- "printedName": "ExpressibleByIntegerLiteral",
- "children": [
- {
- "kind": "TypeWitness",
- "name": "IntegerLiteralType",
- "printedName": "IntegerLiteralType",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int64",
- "printedName": "Swift.Int64",
- "usr": "s:s5Int64V"
- }
- ]
- }
- ],
- "usr": "s:s27ExpressibleByIntegerLiteralP",
- "mangledName": "$ss27ExpressibleByIntegerLiteralP"
- },
- {
- "kind": "Conformance",
- "name": "_ExpressibleByBuiltinFloatLiteral",
- "printedName": "_ExpressibleByBuiltinFloatLiteral",
- "usr": "s:s33_ExpressibleByBuiltinFloatLiteralP",
- "mangledName": "$ss33_ExpressibleByBuiltinFloatLiteralP"
- },
- {
- "kind": "Conformance",
- "name": "Hashable",
- "printedName": "Hashable",
- "usr": "s:SH",
- "mangledName": "$sSH"
- },
- {
- "kind": "Conformance",
- "name": "Equatable",
- "printedName": "Equatable",
- "usr": "s:SQ",
- "mangledName": "$sSQ"
- },
- {
- "kind": "Conformance",
- "name": "_HasCustomAnyHashableRepresentation",
- "printedName": "_HasCustomAnyHashableRepresentation",
- "usr": "s:s35_HasCustomAnyHashableRepresentationP",
- "mangledName": "$ss35_HasCustomAnyHashableRepresentationP"
- },
- {
- "kind": "Conformance",
- "name": "Sendable",
- "printedName": "Sendable",
- "usr": "s:s8SendableP",
- "mangledName": "$ss8SendableP"
- },
- {
- "kind": "Conformance",
- "name": "Strideable",
- "printedName": "Strideable",
- "children": [
- {
- "kind": "TypeWitness",
- "name": "Stride",
- "printedName": "Stride",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Float",
- "printedName": "Swift.Float",
- "usr": "s:Sf"
- }
- ]
- }
- ],
- "usr": "s:Sx",
- "mangledName": "$sSx"
- },
- {
- "kind": "Conformance",
- "name": "Comparable",
- "printedName": "Comparable",
- "usr": "s:SL",
- "mangledName": "$sSL"
- },
- {
- "kind": "Conformance",
- "name": "SIMDScalar",
- "printedName": "SIMDScalar",
- "children": [
- {
- "kind": "TypeWitness",
- "name": "SIMDMaskScalar",
- "printedName": "SIMDMaskScalar",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int32",
- "printedName": "Swift.Int32",
- "usr": "s:s5Int32V"
- }
- ]
- },
- {
- "kind": "TypeWitness",
- "name": "SIMD2Storage",
- "printedName": "SIMD2Storage",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "SIMD2Storage",
- "printedName": "Swift.Float.SIMD2Storage",
- "usr": "s:Sf12SIMD2StorageV"
- }
- ]
- },
- {
- "kind": "TypeWitness",
- "name": "SIMD4Storage",
- "printedName": "SIMD4Storage",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "SIMD4Storage",
- "printedName": "Swift.Float.SIMD4Storage",
- "usr": "s:Sf12SIMD4StorageV"
- }
- ]
- },
- {
- "kind": "TypeWitness",
- "name": "SIMD8Storage",
- "printedName": "SIMD8Storage",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "SIMD8Storage",
- "printedName": "Swift.Float.SIMD8Storage",
- "usr": "s:Sf12SIMD8StorageV"
- }
- ]
- },
- {
- "kind": "TypeWitness",
- "name": "SIMD16Storage",
- "printedName": "SIMD16Storage",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "SIMD16Storage",
- "printedName": "Swift.Float.SIMD16Storage",
- "usr": "s:Sf13SIMD16StorageV"
- }
- ]
- },
- {
- "kind": "TypeWitness",
- "name": "SIMD32Storage",
- "printedName": "SIMD32Storage",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "SIMD32Storage",
- "printedName": "Swift.Float.SIMD32Storage",
- "usr": "s:Sf13SIMD32StorageV"
- }
- ]
- },
- {
- "kind": "TypeWitness",
- "name": "SIMD64Storage",
- "printedName": "SIMD64Storage",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "SIMD64Storage",
- "printedName": "Swift.Float.SIMD64Storage",
- "usr": "s:Sf13SIMD64StorageV"
- }
- ]
- }
- ],
- "usr": "s:s10SIMDScalarP",
- "mangledName": "$ss10SIMDScalarP"
- },
- {
- "kind": "Conformance",
- "name": "_FormatSpecifiable",
- "printedName": "_FormatSpecifiable",
- "children": [
- {
- "kind": "TypeWitness",
- "name": "_Arg",
- "printedName": "_Arg",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Float",
- "printedName": "Swift.Float",
- "usr": "s:Sf"
- }
- ]
- }
- ],
- "usr": "s:10Foundation18_FormatSpecifiableP",
- "mangledName": "$s10Foundation18_FormatSpecifiableP"
- },
- {
- "kind": "Conformance",
- "name": "_ObjectiveCBridgeable",
- "printedName": "_ObjectiveCBridgeable",
- "children": [
- {
- "kind": "TypeWitness",
- "name": "_ObjectiveCType",
- "printedName": "_ObjectiveCType",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "NSNumber",
- "printedName": "Foundation.NSNumber",
- "usr": "c:objc(cs)NSNumber"
- }
- ]
- }
- ],
- "usr": "s:s21_ObjectiveCBridgeableP",
- "mangledName": "$ss21_ObjectiveCBridgeableP"
- }
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "Int",
- "printedName": "Int",
- "declKind": "Struct",
- "usr": "s:Si",
- "mangledName": "$sSi",
- "moduleName": "Swift",
- "declAttributes": [
- "Frozen"
- ],
- "isExternal": true,
- "conformances": [
- {
- "kind": "Conformance",
- "name": "FixedWidthInteger",
- "printedName": "FixedWidthInteger",
- "usr": "s:s17FixedWidthIntegerP",
- "mangledName": "$ss17FixedWidthIntegerP"
- },
- {
- "kind": "Conformance",
- "name": "SignedInteger",
- "printedName": "SignedInteger",
- "usr": "s:SZ",
- "mangledName": "$sSZ"
- },
- {
- "kind": "Conformance",
- "name": "_ExpressibleByBuiltinIntegerLiteral",
- "printedName": "_ExpressibleByBuiltinIntegerLiteral",
- "usr": "s:s35_ExpressibleByBuiltinIntegerLiteralP",
- "mangledName": "$ss35_ExpressibleByBuiltinIntegerLiteralP"
- },
- {
- "kind": "Conformance",
- "name": "BinaryInteger",
- "printedName": "BinaryInteger",
- "children": [
- {
- "kind": "TypeWitness",
- "name": "Words",
- "printedName": "Words",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Words",
- "printedName": "Swift.Int.Words",
- "usr": "s:Si5WordsV"
- }
- ]
- }
- ],
- "usr": "s:Sz",
- "mangledName": "$sSz"
- },
- {
- "kind": "Conformance",
- "name": "LosslessStringConvertible",
- "printedName": "LosslessStringConvertible",
- "usr": "s:s25LosslessStringConvertibleP",
- "mangledName": "$ss25LosslessStringConvertibleP"
- },
- {
- "kind": "Conformance",
- "name": "SignedNumeric",
- "printedName": "SignedNumeric",
- "usr": "s:s13SignedNumericP",
- "mangledName": "$ss13SignedNumericP"
- },
- {
- "kind": "Conformance",
- "name": "CustomStringConvertible",
- "printedName": "CustomStringConvertible",
- "usr": "s:s23CustomStringConvertibleP",
- "mangledName": "$ss23CustomStringConvertibleP"
- },
- {
- "kind": "Conformance",
- "name": "Numeric",
- "printedName": "Numeric",
- "children": [
- {
- "kind": "TypeWitness",
- "name": "Magnitude",
- "printedName": "Magnitude",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UInt",
- "printedName": "Swift.UInt",
- "usr": "s:Su"
- }
- ]
- }
- ],
- "usr": "s:Sj",
- "mangledName": "$sSj"
- },
- {
- "kind": "Conformance",
- "name": "Strideable",
- "printedName": "Strideable",
- "children": [
- {
- "kind": "TypeWitness",
- "name": "Stride",
- "printedName": "Stride",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ]
- }
- ],
- "usr": "s:Sx",
- "mangledName": "$sSx"
- },
- {
- "kind": "Conformance",
- "name": "AdditiveArithmetic",
- "printedName": "AdditiveArithmetic",
- "usr": "s:s18AdditiveArithmeticP",
- "mangledName": "$ss18AdditiveArithmeticP"
- },
- {
- "kind": "Conformance",
- "name": "ExpressibleByIntegerLiteral",
- "printedName": "ExpressibleByIntegerLiteral",
- "children": [
- {
- "kind": "TypeWitness",
- "name": "IntegerLiteralType",
- "printedName": "IntegerLiteralType",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ]
- }
- ],
- "usr": "s:s27ExpressibleByIntegerLiteralP",
- "mangledName": "$ss27ExpressibleByIntegerLiteralP"
- },
- {
- "kind": "Conformance",
- "name": "Comparable",
- "printedName": "Comparable",
- "usr": "s:SL",
- "mangledName": "$sSL"
- },
- {
- "kind": "Conformance",
- "name": "CustomDataCompatible",
- "printedName": "CustomDataCompatible",
- "usr": "s:13ApptentiveKit20CustomDataCompatibleP",
- "mangledName": "$s13ApptentiveKit20CustomDataCompatibleP"
- },
- {
- "kind": "Conformance",
- "name": "Decodable",
- "printedName": "Decodable",
- "usr": "s:Se",
- "mangledName": "$sSe"
- },
- {
- "kind": "Conformance",
- "name": "Encodable",
- "printedName": "Encodable",
- "usr": "s:SE",
- "mangledName": "$sSE"
- },
- {
- "kind": "Conformance",
- "name": "CodingKeyRepresentable",
- "printedName": "CodingKeyRepresentable",
- "usr": "s:s22CodingKeyRepresentableP",
- "mangledName": "$ss22CodingKeyRepresentableP"
- },
- {
- "kind": "Conformance",
- "name": "CustomReflectable",
- "printedName": "CustomReflectable",
- "usr": "s:s17CustomReflectableP",
- "mangledName": "$ss17CustomReflectableP"
- },
- {
- "kind": "Conformance",
- "name": "_CustomPlaygroundQuickLookable",
- "printedName": "_CustomPlaygroundQuickLookable",
- "usr": "s:s30_CustomPlaygroundQuickLookableP",
- "mangledName": "$ss30_CustomPlaygroundQuickLookableP"
- },
- {
- "kind": "Conformance",
- "name": "MirrorPath",
- "printedName": "MirrorPath",
- "usr": "s:s10MirrorPathP",
- "mangledName": "$ss10MirrorPathP"
- },
- {
- "kind": "Conformance",
- "name": "CVarArg",
- "printedName": "CVarArg",
- "usr": "s:s7CVarArgP",
- "mangledName": "$ss7CVarArgP"
- },
- {
- "kind": "Conformance",
- "name": "Hashable",
- "printedName": "Hashable",
- "usr": "s:SH",
- "mangledName": "$sSH"
- },
- {
- "kind": "Conformance",
- "name": "Equatable",
- "printedName": "Equatable",
- "usr": "s:SQ",
- "mangledName": "$sSQ"
- },
- {
- "kind": "Conformance",
- "name": "_HasCustomAnyHashableRepresentation",
- "printedName": "_HasCustomAnyHashableRepresentation",
- "usr": "s:s35_HasCustomAnyHashableRepresentationP",
- "mangledName": "$ss35_HasCustomAnyHashableRepresentationP"
- },
- {
- "kind": "Conformance",
- "name": "Sendable",
- "printedName": "Sendable",
- "usr": "s:s8SendableP",
- "mangledName": "$ss8SendableP"
- },
- {
- "kind": "Conformance",
- "name": "SIMDScalar",
- "printedName": "SIMDScalar",
- "children": [
- {
- "kind": "TypeWitness",
- "name": "SIMDMaskScalar",
- "printedName": "SIMDMaskScalar",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ]
- },
- {
- "kind": "TypeWitness",
- "name": "SIMD2Storage",
- "printedName": "SIMD2Storage",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "SIMD2Storage",
- "printedName": "Swift.Int.SIMD2Storage",
- "usr": "s:Si12SIMD2StorageV"
- }
- ]
- },
- {
- "kind": "TypeWitness",
- "name": "SIMD4Storage",
- "printedName": "SIMD4Storage",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "SIMD4Storage",
- "printedName": "Swift.Int.SIMD4Storage",
- "usr": "s:Si12SIMD4StorageV"
- }
- ]
- },
- {
- "kind": "TypeWitness",
- "name": "SIMD8Storage",
- "printedName": "SIMD8Storage",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "SIMD8Storage",
- "printedName": "Swift.Int.SIMD8Storage",
- "usr": "s:Si12SIMD8StorageV"
- }
- ]
- },
- {
- "kind": "TypeWitness",
- "name": "SIMD16Storage",
- "printedName": "SIMD16Storage",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "SIMD16Storage",
- "printedName": "Swift.Int.SIMD16Storage",
- "usr": "s:Si13SIMD16StorageV"
- }
- ]
- },
- {
- "kind": "TypeWitness",
- "name": "SIMD32Storage",
- "printedName": "SIMD32Storage",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "SIMD32Storage",
- "printedName": "Swift.Int.SIMD32Storage",
- "usr": "s:Si13SIMD32StorageV"
- }
- ]
- },
- {
- "kind": "TypeWitness",
- "name": "SIMD64Storage",
- "printedName": "SIMD64Storage",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "SIMD64Storage",
- "printedName": "Swift.Int.SIMD64Storage",
- "usr": "s:Si13SIMD64StorageV"
- }
- ]
- }
- ],
- "usr": "s:s10SIMDScalarP",
- "mangledName": "$ss10SIMDScalarP"
- },
- {
- "kind": "Conformance",
- "name": "_FormatSpecifiable",
- "printedName": "_FormatSpecifiable",
- "children": [
- {
- "kind": "TypeWitness",
- "name": "_Arg",
- "printedName": "_Arg",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int64",
- "printedName": "Swift.Int64",
- "usr": "s:s5Int64V"
- }
- ]
- }
- ],
- "usr": "s:10Foundation18_FormatSpecifiableP",
- "mangledName": "$s10Foundation18_FormatSpecifiableP"
- },
- {
- "kind": "Conformance",
- "name": "_ObjectiveCBridgeable",
- "printedName": "_ObjectiveCBridgeable",
- "children": [
- {
- "kind": "TypeWitness",
- "name": "_ObjectiveCType",
- "printedName": "_ObjectiveCType",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "NSNumber",
- "printedName": "Foundation.NSNumber",
- "usr": "c:objc(cs)NSNumber"
- }
- ]
- }
- ],
- "usr": "s:s21_ObjectiveCBridgeableP",
- "mangledName": "$ss21_ObjectiveCBridgeableP"
- }
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "Bool",
- "printedName": "Bool",
- "declKind": "Struct",
- "usr": "s:Sb",
- "mangledName": "$sSb",
- "moduleName": "Swift",
- "declAttributes": [
- "Frozen"
- ],
- "isExternal": true,
- "conformances": [
- {
- "kind": "Conformance",
- "name": "Sendable",
- "printedName": "Sendable",
- "usr": "s:s8SendableP",
- "mangledName": "$ss8SendableP"
- },
- {
- "kind": "Conformance",
- "name": "CustomDataCompatible",
- "printedName": "CustomDataCompatible",
- "usr": "s:13ApptentiveKit20CustomDataCompatibleP",
- "mangledName": "$s13ApptentiveKit20CustomDataCompatibleP"
- },
- {
- "kind": "Conformance",
- "name": "_ExpressibleByBuiltinBooleanLiteral",
- "printedName": "_ExpressibleByBuiltinBooleanLiteral",
- "usr": "s:s35_ExpressibleByBuiltinBooleanLiteralP",
- "mangledName": "$ss35_ExpressibleByBuiltinBooleanLiteralP"
- },
- {
- "kind": "Conformance",
- "name": "ExpressibleByBooleanLiteral",
- "printedName": "ExpressibleByBooleanLiteral",
- "children": [
- {
- "kind": "TypeWitness",
- "name": "BooleanLiteralType",
- "printedName": "BooleanLiteralType",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Bool",
- "printedName": "Swift.Bool",
- "usr": "s:Sb"
- }
- ]
- }
- ],
- "usr": "s:s27ExpressibleByBooleanLiteralP",
- "mangledName": "$ss27ExpressibleByBooleanLiteralP"
- },
- {
- "kind": "Conformance",
- "name": "CustomStringConvertible",
- "printedName": "CustomStringConvertible",
- "usr": "s:s23CustomStringConvertibleP",
- "mangledName": "$ss23CustomStringConvertibleP"
- },
- {
- "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": "LosslessStringConvertible",
- "printedName": "LosslessStringConvertible",
- "usr": "s:s25LosslessStringConvertibleP",
- "mangledName": "$ss25LosslessStringConvertibleP"
- },
- {
- "kind": "Conformance",
- "name": "Decodable",
- "printedName": "Decodable",
- "usr": "s:Se",
- "mangledName": "$sSe"
- },
- {
- "kind": "Conformance",
- "name": "Encodable",
- "printedName": "Encodable",
- "usr": "s:SE",
- "mangledName": "$sSE"
- },
- {
- "kind": "Conformance",
- "name": "CustomReflectable",
- "printedName": "CustomReflectable",
- "usr": "s:s17CustomReflectableP",
- "mangledName": "$ss17CustomReflectableP"
- },
- {
- "kind": "Conformance",
- "name": "_CustomPlaygroundQuickLookable",
- "printedName": "_CustomPlaygroundQuickLookable",
- "usr": "s:s30_CustomPlaygroundQuickLookableP",
- "mangledName": "$ss30_CustomPlaygroundQuickLookableP"
- },
- {
- "kind": "Conformance",
- "name": "CVarArg",
- "printedName": "CVarArg",
- "usr": "s:s7CVarArgP",
- "mangledName": "$ss7CVarArgP"
- },
- {
- "kind": "Conformance",
- "name": "_ObjectiveCBridgeable",
- "printedName": "_ObjectiveCBridgeable",
- "children": [
- {
- "kind": "TypeWitness",
- "name": "_ObjectiveCType",
- "printedName": "_ObjectiveCType",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "NSNumber",
- "printedName": "Foundation.NSNumber",
- "usr": "c:objc(cs)NSNumber"
- }
- ]
- }
- ],
- "usr": "s:s21_ObjectiveCBridgeableP",
- "mangledName": "$ss21_ObjectiveCBridgeableP"
- }
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "Name",
- "printedName": "Name",
- "children": [
- {
- "kind": "Var",
- "name": "apptentiveEventEngaged",
- "printedName": "apptentiveEventEngaged",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Name",
- "printedName": "Foundation.NSNotification.Name",
- "usr": "c:@T@NSNotificationName"
- }
- ],
- "declKind": "Var",
- "usr": "s:So18NSNotificationNamea13ApptentiveKitE22apptentiveEventEngagedABvpZ",
- "mangledName": "$sSo18NSNotificationNamea13ApptentiveKitE22apptentiveEventEngagedABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Name",
- "printedName": "Foundation.NSNotification.Name",
- "usr": "c:@T@NSNotificationName"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So18NSNotificationNamea13ApptentiveKitE22apptentiveEventEngagedABvgZ",
- "mangledName": "$sSo18NSNotificationNamea13ApptentiveKitE22apptentiveEventEngagedABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "isFromExtension": true,
- "accessorKind": "get"
- }
- ]
- }
- ],
- "declKind": "Struct",
- "usr": "c:@T@NSNotificationName",
- "moduleName": "Foundation",
- "declAttributes": [
- "SynthesizedProtocol",
- "SynthesizedProtocol",
- "SynthesizedProtocol",
- "SynthesizedProtocol",
- "SynthesizedProtocol",
- "SynthesizedProtocol",
- "Sendable"
- ],
- "isFromExtension": true,
- "isExternal": true,
- "conformances": [
- {
- "kind": "Conformance",
- "name": "_ObjectiveCBridgeable",
- "printedName": "_ObjectiveCBridgeable",
- "children": [
- {
- "kind": "TypeWitness",
- "name": "_ObjectiveCType",
- "printedName": "_ObjectiveCType",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "NSString",
- "printedName": "Foundation.NSString",
- "usr": "c:objc(cs)NSString"
- }
- ]
- }
- ],
- "usr": "s:s21_ObjectiveCBridgeableP",
- "mangledName": "$ss21_ObjectiveCBridgeableP"
- },
- {
- "kind": "Conformance",
- "name": "Hashable",
- "printedName": "Hashable",
- "usr": "s:SH",
- "mangledName": "$sSH"
- },
- {
- "kind": "Conformance",
- "name": "Equatable",
- "printedName": "Equatable",
- "usr": "s:SQ",
- "mangledName": "$sSQ"
- },
- {
- "kind": "Conformance",
- "name": "_SwiftNewtypeWrapper",
- "printedName": "_SwiftNewtypeWrapper",
- "usr": "s:s20_SwiftNewtypeWrapperP",
- "mangledName": "$ss20_SwiftNewtypeWrapperP"
- },
- {
- "kind": "Conformance",
- "name": "RawRepresentable",
- "printedName": "RawRepresentable",
- "children": [
- {
- "kind": "TypeWitness",
- "name": "RawValue",
- "printedName": "RawValue",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "String",
- "printedName": "Swift.String",
- "usr": "s:SS"
- }
- ]
- }
- ],
- "usr": "s:SY",
- "mangledName": "$sSY"
- },
- {
- "kind": "Conformance",
- "name": "Sendable",
- "printedName": "Sendable",
- "usr": "s:s8SendableP",
- "mangledName": "$ss8SendableP"
- },
- {
- "kind": "Conformance",
- "name": "_HasCustomAnyHashableRepresentation",
- "printedName": "_HasCustomAnyHashableRepresentation",
- "usr": "s:s35_HasCustomAnyHashableRepresentationP",
- "mangledName": "$ss35_HasCustomAnyHashableRepresentationP"
- }
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "UIButton",
- "printedName": "UIButton",
- "children": [
- {
- "kind": "Var",
- "name": "apptentivePillRadius",
- "printedName": "apptentivePillRadius",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "CGFloat",
- "printedName": "CoreGraphics.CGFloat",
- "usr": "s:14CoreFoundation7CGFloatV"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIButton(cpy)apptentivePillRadius",
- "mangledName": "$sSo8UIButtonC13ApptentiveKitE20apptentivePillRadius12CoreGraphics7CGFloatVvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "deprecated": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "Custom",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "Available"
- ],
- "isFromExtension": true,
- "isLet": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "CGFloat",
- "printedName": "CoreGraphics.CGFloat",
- "usr": "s:14CoreFoundation7CGFloatV"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIButton(cm)apptentivePillRadius",
- "mangledName": "$sSo8UIButtonC13ApptentiveKitE20apptentivePillRadius12CoreGraphics7CGFloatVvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveCornerRadius",
- "printedName": "apptentiveCornerRadius",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "CGFloat",
- "printedName": "CoreGraphics.CGFloat",
- "usr": "s:14CoreFoundation7CGFloatV"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIButton(cpy)apptentiveCornerRadius",
- "mangledName": "$sSo8UIButtonC13ApptentiveKitE22apptentiveCornerRadius12CoreGraphics7CGFloatVvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "deprecated": true,
- "declAttributes": [
- "Final",
- "Custom",
- "AccessControl",
- "ObjC",
- "Available"
- ],
- "isFromExtension": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "CGFloat",
- "printedName": "CoreGraphics.CGFloat",
- "usr": "s:14CoreFoundation7CGFloatV"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIButton(cm)apptentiveCornerRadius",
- "mangledName": "$sSo8UIButtonC13ApptentiveKitE22apptentiveCornerRadius12CoreGraphics7CGFloatVvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "CGFloat",
- "printedName": "CoreGraphics.CGFloat",
- "usr": "s:14CoreFoundation7CGFloatV"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIButton(cm)setApptentiveCornerRadius:",
- "mangledName": "$sSo8UIButtonC13ApptentiveKitE22apptentiveCornerRadius12CoreGraphics7CGFloatVvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So8UIButtonC13ApptentiveKitE22apptentiveCornerRadius14CoreFoundation7CGFloatVvMZ",
- "mangledName": "$sSo8UIButtonC13ApptentiveKitE22apptentiveCornerRadius12CoreGraphics7CGFloatVvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "deprecated": true,
- "implicit": true,
- "declAttributes": [
- "Available",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveClose",
- "printedName": "apptentiveClose",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "UIKit.UIButton?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIButton",
- "printedName": "UIKit.UIButton",
- "usr": "c:objc(cs)UIButton"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Var",
- "usr": "s:So8UIButtonC13ApptentiveKitE15apptentiveCloseABSgvpZ",
- "mangledName": "$sSo8UIButtonC13ApptentiveKitE15apptentiveCloseABSgvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "Custom",
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "UIKit.UIButton?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIButton",
- "printedName": "UIKit.UIButton",
- "usr": "c:objc(cs)UIButton"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So8UIButtonC13ApptentiveKitE15apptentiveCloseABSgvgZ",
- "mangledName": "$sSo8UIButtonC13ApptentiveKitE15apptentiveCloseABSgvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "UIKit.UIButton?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIButton",
- "printedName": "UIKit.UIButton",
- "usr": "c:objc(cs)UIButton"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So8UIButtonC13ApptentiveKitE15apptentiveCloseABSgvsZ",
- "mangledName": "$sSo8UIButtonC13ApptentiveKitE15apptentiveCloseABSgvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So8UIButtonC13ApptentiveKitE15apptentiveCloseABSgvMZ",
- "mangledName": "$sSo8UIButtonC13ApptentiveKitE15apptentiveCloseABSgvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "ApptentiveButtonStyle",
- "printedName": "ApptentiveButtonStyle",
- "children": [
- {
- "kind": "Var",
- "name": "pill",
- "printedName": "pill",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(UIKit.UIButton.ApptentiveButtonStyle.Type) -> UIKit.UIButton.ApptentiveButtonStyle",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveButtonStyle",
- "printedName": "UIKit.UIButton.ApptentiveButtonStyle",
- "usr": "s:So8UIButtonC13ApptentiveKitE0B11ButtonStyleO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "UIKit.UIButton.ApptentiveButtonStyle.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveButtonStyle",
- "printedName": "UIKit.UIButton.ApptentiveButtonStyle",
- "usr": "s:So8UIButtonC13ApptentiveKitE0B11ButtonStyleO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:So8UIButtonC13ApptentiveKitE0B11ButtonStyleO4pillyA2EmF",
- "mangledName": "$sSo8UIButtonC13ApptentiveKitE0B11ButtonStyleO4pillyA2EmF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- },
- {
- "kind": "Var",
- "name": "radius",
- "printedName": "radius",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(UIKit.UIButton.ApptentiveButtonStyle.Type) -> (CoreGraphics.CGFloat) -> UIKit.UIButton.ApptentiveButtonStyle",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(CoreGraphics.CGFloat) -> UIKit.UIButton.ApptentiveButtonStyle",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveButtonStyle",
- "printedName": "UIKit.UIButton.ApptentiveButtonStyle",
- "usr": "s:So8UIButtonC13ApptentiveKitE0B11ButtonStyleO"
- },
- {
- "kind": "TypeNominal",
- "name": "CGFloat",
- "printedName": "CoreGraphics.CGFloat",
- "usr": "s:14CoreFoundation7CGFloatV"
- }
- ]
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "UIKit.UIButton.ApptentiveButtonStyle.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveButtonStyle",
- "printedName": "UIKit.UIButton.ApptentiveButtonStyle",
- "usr": "s:So8UIButtonC13ApptentiveKitE0B11ButtonStyleO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:So8UIButtonC13ApptentiveKitE0B11ButtonStyleO6radiusyAE14CoreFoundation7CGFloatVcAEmF",
- "mangledName": "$sSo8UIButtonC13ApptentiveKitE0B11ButtonStyleO6radiusyAE12CoreGraphics7CGFloatVcAEmF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment"
- ]
- }
- ],
- "declKind": "Enum",
- "usr": "s:So8UIButtonC13ApptentiveKitE0B11ButtonStyleO",
- "mangledName": "$sSo8UIButtonC13ApptentiveKitE0B11ButtonStyleO",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "RawDocComment"
- ],
- "isFromExtension": true
- },
- {
- "kind": "Var",
- "name": "apptentiveStyle",
- "printedName": "apptentiveStyle",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveButtonStyle",
- "printedName": "UIKit.UIButton.ApptentiveButtonStyle",
- "usr": "s:So8UIButtonC13ApptentiveKitE0B11ButtonStyleO"
- }
- ],
- "declKind": "Var",
- "usr": "s:So8UIButtonC13ApptentiveKitE15apptentiveStyleAbCE0b6ButtonE0OvpZ",
- "mangledName": "$sSo8UIButtonC13ApptentiveKitE15apptentiveStyleAbCE0b6ButtonE0OvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "Custom",
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ApptentiveButtonStyle",
- "printedName": "UIKit.UIButton.ApptentiveButtonStyle",
- "usr": "s:So8UIButtonC13ApptentiveKitE0B11ButtonStyleO"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So8UIButtonC13ApptentiveKitE15apptentiveStyleAbCE0b6ButtonE0OvgZ",
- "mangledName": "$sSo8UIButtonC13ApptentiveKitE15apptentiveStyleAbCE0b6ButtonE0OvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "ApptentiveButtonStyle",
- "printedName": "UIKit.UIButton.ApptentiveButtonStyle",
- "usr": "s:So8UIButtonC13ApptentiveKitE0B11ButtonStyleO"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So8UIButtonC13ApptentiveKitE15apptentiveStyleAbCE0b6ButtonE0OvsZ",
- "mangledName": "$sSo8UIButtonC13ApptentiveKitE15apptentiveStyleAbCE0b6ButtonE0OvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So8UIButtonC13ApptentiveKitE15apptentiveStyleAbCE0b6ButtonE0OvMZ",
- "mangledName": "$sSo8UIButtonC13ApptentiveKitE15apptentiveStyleAbCE0b6ButtonE0OvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- }
- ],
- "declKind": "Class",
- "usr": "c:objc(cs)UIButton",
- "moduleName": "UIKit",
- "isOpen": true,
- "intro_iOS": "2.0",
- "objc_name": "UIButton",
- "declAttributes": [
- "Available",
- "ObjC",
- "NonSendable",
- "Custom",
- "Dynamic"
- ],
- "superclassUsr": "c:objc(cs)UIControl",
- "isExternal": true,
- "inheritsConvenienceInitializers": true,
- "superclassNames": [
- "UIKit.UIControl",
- "UIKit.UIView",
- "UIKit.UIResponder",
- "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": "Conformance",
- "name": "__DefaultCustomPlaygroundQuickLookable",
- "printedName": "__DefaultCustomPlaygroundQuickLookable",
- "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP",
- "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP"
- },
- {
- "kind": "Conformance",
- "name": "Sendable",
- "printedName": "Sendable",
- "usr": "s:s8SendableP",
- "mangledName": "$ss8SendableP"
- }
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "UITableView",
- "printedName": "UITableView",
- "children": [
- {
- "kind": "Var",
- "name": "apptentiveStyle",
- "printedName": "apptentiveStyle",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UITableView(cpy)apptentiveStyle",
- "mangledName": "$sSo11UITableViewC13ApptentiveKitE15apptentiveStyleSivpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "deprecated": true,
- "declAttributes": [
- "Final",
- "Custom",
- "AccessControl",
- "ObjC",
- "Available"
- ],
- "isFromExtension": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UITableView(cm)apptentiveStyle",
- "mangledName": "$sSo11UITableViewC13ApptentiveKitE15apptentiveStyleSivgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "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:@CM@ApptentiveKit@@objc(cs)UITableView(cm)setApptentiveStyle:",
- "mangledName": "$sSo11UITableViewC13ApptentiveKitE15apptentiveStyleSivsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So11UITableViewC13ApptentiveKitE15apptentiveStyleSivMZ",
- "mangledName": "$sSo11UITableViewC13ApptentiveKitE15apptentiveStyleSivMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "deprecated": true,
- "implicit": true,
- "declAttributes": [
- "Available",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveQuestionSeparatorHeight",
- "printedName": "apptentiveQuestionSeparatorHeight",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "CGFloat",
- "printedName": "CoreGraphics.CGFloat",
- "usr": "s:14CoreFoundation7CGFloatV"
- }
- ],
- "declKind": "Var",
- "usr": "s:So11UITableViewC13ApptentiveKitE33apptentiveQuestionSeparatorHeight14CoreFoundation7CGFloatVvpZ",
- "mangledName": "$sSo11UITableViewC13ApptentiveKitE33apptentiveQuestionSeparatorHeight12CoreGraphics7CGFloatVvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "Custom",
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "CGFloat",
- "printedName": "CoreGraphics.CGFloat",
- "usr": "s:14CoreFoundation7CGFloatV"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So11UITableViewC13ApptentiveKitE33apptentiveQuestionSeparatorHeight14CoreFoundation7CGFloatVvgZ",
- "mangledName": "$sSo11UITableViewC13ApptentiveKitE33apptentiveQuestionSeparatorHeight12CoreGraphics7CGFloatVvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "CGFloat",
- "printedName": "CoreGraphics.CGFloat",
- "usr": "s:14CoreFoundation7CGFloatV"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So11UITableViewC13ApptentiveKitE33apptentiveQuestionSeparatorHeight14CoreFoundation7CGFloatVvsZ",
- "mangledName": "$sSo11UITableViewC13ApptentiveKitE33apptentiveQuestionSeparatorHeight12CoreGraphics7CGFloatVvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So11UITableViewC13ApptentiveKitE33apptentiveQuestionSeparatorHeight14CoreFoundation7CGFloatVvMZ",
- "mangledName": "$sSo11UITableViewC13ApptentiveKitE33apptentiveQuestionSeparatorHeight12CoreGraphics7CGFloatVvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- }
- ],
- "declKind": "Class",
- "usr": "c:objc(cs)UITableView",
- "moduleName": "UIKit",
- "isOpen": true,
- "intro_iOS": "2.0",
- "objc_name": "UITableView",
- "declAttributes": [
- "Available",
- "ObjC",
- "NonSendable",
- "Custom",
- "Dynamic"
- ],
- "superclassUsr": "c:objc(cs)UIScrollView",
- "isExternal": true,
- "inheritsConvenienceInitializers": true,
- "superclassNames": [
- "UIKit.UIScrollView",
- "UIKit.UIView",
- "UIKit.UIResponder",
- "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": "Conformance",
- "name": "__DefaultCustomPlaygroundQuickLookable",
- "printedName": "__DefaultCustomPlaygroundQuickLookable",
- "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP",
- "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP"
- },
- {
- "kind": "Conformance",
- "name": "Sendable",
- "printedName": "Sendable",
- "usr": "s:s8SendableP",
- "mangledName": "$ss8SendableP"
- }
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "UIViewController",
- "printedName": "UIViewController",
- "children": [
- {
- "kind": "Var",
- "name": "apptentiveModalPresentationStyle",
- "printedName": "apptentiveModalPresentationStyle",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIModalPresentationStyle",
- "printedName": "UIKit.UIModalPresentationStyle",
- "usr": "c:@E@UIModalPresentationStyle"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIViewController(py)apptentiveModalPresentationStyle",
- "mangledName": "$sSo16UIViewControllerC13ApptentiveKitE32apptentiveModalPresentationStyleSo07UIModalgH0Vvp",
- "moduleName": "ApptentiveKit",
- "deprecated": true,
- "declAttributes": [
- "Dynamic",
- "Custom",
- "AccessControl",
- "ObjC",
- "Available"
- ],
- "isFromExtension": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIModalPresentationStyle",
- "printedName": "UIKit.UIModalPresentationStyle",
- "usr": "c:@E@UIModalPresentationStyle"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIViewController(im)apptentiveModalPresentationStyle",
- "mangledName": "$sSo16UIViewControllerC13ApptentiveKitE32apptentiveModalPresentationStyleSo07UIModalgH0Vvg",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Dynamic",
- "ObjC"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIModalPresentationStyle",
- "printedName": "UIKit.UIModalPresentationStyle",
- "usr": "c:@E@UIModalPresentationStyle"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIViewController(im)setApptentiveModalPresentationStyle:",
- "mangledName": "$sSo16UIViewControllerC13ApptentiveKitE32apptentiveModalPresentationStyleSo07UIModalgH0Vvs",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "Dynamic",
- "ObjC"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- }
- ]
- }
- ],
- "declKind": "Class",
- "usr": "c:objc(cs)UIViewController",
- "moduleName": "UIKit",
- "isOpen": true,
- "intro_iOS": "2.0",
- "objc_name": "UIViewController",
- "declAttributes": [
- "Available",
- "ObjC",
- "NonSendable",
- "Custom",
- "Dynamic"
- ],
- "superclassUsr": "c:objc(cs)UIResponder",
- "isExternal": true,
- "inheritsConvenienceInitializers": true,
- "superclassNames": [
- "UIKit.UIResponder",
- "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": "Conformance",
- "name": "Sendable",
- "printedName": "Sendable",
- "usr": "s:s8SendableP",
- "mangledName": "$ss8SendableP"
- }
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "Style",
- "printedName": "Style",
- "children": [
- {
- "kind": "Var",
- "name": "apptentive",
- "printedName": "apptentive",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Style",
- "printedName": "UIKit.UITableView.Style",
- "usr": "c:@E@UITableViewStyle"
- }
- ],
- "declKind": "Var",
- "usr": "s:So16UITableViewStyleV13ApptentiveKitE10apptentiveABvpZ",
- "mangledName": "$sSo16UITableViewStyleV13ApptentiveKitE10apptentiveABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Style",
- "printedName": "UIKit.UITableView.Style",
- "usr": "c:@E@UITableViewStyle"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So16UITableViewStyleV13ApptentiveKitE10apptentiveABvgZ",
- "mangledName": "$sSo16UITableViewStyleV13ApptentiveKitE10apptentiveABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Style",
- "printedName": "UIKit.UITableView.Style",
- "usr": "c:@E@UITableViewStyle"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So16UITableViewStyleV13ApptentiveKitE10apptentiveABvsZ",
- "mangledName": "$sSo16UITableViewStyleV13ApptentiveKitE10apptentiveABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So16UITableViewStyleV13ApptentiveKitE10apptentiveABvMZ",
- "mangledName": "$sSo16UITableViewStyleV13ApptentiveKitE10apptentiveABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- }
- ],
- "declKind": "Enum",
- "usr": "c:@E@UITableViewStyle",
- "moduleName": "UIKit",
- "objc_name": "UITableViewStyle",
- "declAttributes": [
- "SynthesizedProtocol",
- "ObjC",
- "SynthesizedProtocol",
- "Sendable",
- "NonSendable",
- "Dynamic"
- ],
- "isFromExtension": true,
- "enumRawTypeName": "Int",
- "isExternal": true,
- "conformances": [
- {
- "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": "Sendable",
- "printedName": "Sendable",
- "usr": "s:s8SendableP",
- "mangledName": "$ss8SendableP"
- },
- {
- "kind": "Conformance",
- "name": "Equatable",
- "printedName": "Equatable",
- "usr": "s:SQ",
- "mangledName": "$sSQ"
- },
- {
- "kind": "Conformance",
- "name": "Hashable",
- "printedName": "Hashable",
- "usr": "s:SH",
- "mangledName": "$sSH"
- }
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "UIModalPresentationStyle",
- "printedName": "UIModalPresentationStyle",
- "children": [
- {
- "kind": "Var",
- "name": "apptentive",
- "printedName": "apptentive",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIModalPresentationStyle",
- "printedName": "UIKit.UIModalPresentationStyle",
- "usr": "c:@E@UIModalPresentationStyle"
- }
- ],
- "declKind": "Var",
- "usr": "s:So24UIModalPresentationStyleV13ApptentiveKitE10apptentiveABvpZ",
- "mangledName": "$sSo24UIModalPresentationStyleV13ApptentiveKitE10apptentiveABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIModalPresentationStyle",
- "printedName": "UIKit.UIModalPresentationStyle",
- "usr": "c:@E@UIModalPresentationStyle"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So24UIModalPresentationStyleV13ApptentiveKitE10apptentiveABvgZ",
- "mangledName": "$sSo24UIModalPresentationStyleV13ApptentiveKitE10apptentiveABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIModalPresentationStyle",
- "printedName": "UIKit.UIModalPresentationStyle",
- "usr": "c:@E@UIModalPresentationStyle"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So24UIModalPresentationStyleV13ApptentiveKitE10apptentiveABvsZ",
- "mangledName": "$sSo24UIModalPresentationStyleV13ApptentiveKitE10apptentiveABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So24UIModalPresentationStyleV13ApptentiveKitE10apptentiveABvMZ",
- "mangledName": "$sSo24UIModalPresentationStyleV13ApptentiveKitE10apptentiveABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- }
- ],
- "declKind": "Enum",
- "usr": "c:@E@UIModalPresentationStyle",
- "moduleName": "UIKit",
- "objc_name": "UIModalPresentationStyle",
- "declAttributes": [
- "SynthesizedProtocol",
- "ObjC",
- "SynthesizedProtocol",
- "Sendable",
- "NonSendable",
- "Dynamic"
- ],
- "enumRawTypeName": "Int",
- "isExternal": true,
- "conformances": [
- {
- "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": "Sendable",
- "printedName": "Sendable",
- "usr": "s:s8SendableP",
- "mangledName": "$ss8SendableP"
- },
- {
- "kind": "Conformance",
- "name": "Equatable",
- "printedName": "Equatable",
- "usr": "s:SQ",
- "mangledName": "$sSQ"
- },
- {
- "kind": "Conformance",
- "name": "Hashable",
- "printedName": "Hashable",
- "usr": "s:SH",
- "mangledName": "$sSH"
- }
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "UIBarButtonItem",
- "printedName": "UIBarButtonItem",
- "children": [
- {
- "kind": "Var",
- "name": "apptentiveClose",
- "printedName": "apptentiveClose",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIBarButtonItem",
- "printedName": "UIKit.UIBarButtonItem",
- "usr": "c:objc(cs)UIBarButtonItem"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIBarButtonItem(cpy)apptentiveClose",
- "mangledName": "$sSo15UIBarButtonItemC13ApptentiveKitE15apptentiveCloseABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "Custom",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIBarButtonItem",
- "printedName": "UIKit.UIBarButtonItem",
- "usr": "c:objc(cs)UIBarButtonItem"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIBarButtonItem(cm)apptentiveClose",
- "mangledName": "$sSo15UIBarButtonItemC13ApptentiveKitE15apptentiveCloseABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIBarButtonItem",
- "printedName": "UIKit.UIBarButtonItem",
- "usr": "c:objc(cs)UIBarButtonItem"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIBarButtonItem(cm)setApptentiveClose:",
- "mangledName": "$sSo15UIBarButtonItemC13ApptentiveKitE15apptentiveCloseABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So15UIBarButtonItemC13ApptentiveKitE15apptentiveCloseABvMZ",
- "mangledName": "$sSo15UIBarButtonItemC13ApptentiveKitE15apptentiveCloseABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveProfileEdit",
- "printedName": "apptentiveProfileEdit",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIBarButtonItem",
- "printedName": "UIKit.UIBarButtonItem",
- "usr": "c:objc(cs)UIBarButtonItem"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIBarButtonItem(cpy)apptentiveProfileEdit",
- "mangledName": "$sSo15UIBarButtonItemC13ApptentiveKitE21apptentiveProfileEditABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "Custom",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIBarButtonItem",
- "printedName": "UIKit.UIBarButtonItem",
- "usr": "c:objc(cs)UIBarButtonItem"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIBarButtonItem(cm)apptentiveProfileEdit",
- "mangledName": "$sSo15UIBarButtonItemC13ApptentiveKitE21apptentiveProfileEditABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIBarButtonItem",
- "printedName": "UIKit.UIBarButtonItem",
- "usr": "c:objc(cs)UIBarButtonItem"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIBarButtonItem(cm)setApptentiveProfileEdit:",
- "mangledName": "$sSo15UIBarButtonItemC13ApptentiveKitE21apptentiveProfileEditABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So15UIBarButtonItemC13ApptentiveKitE21apptentiveProfileEditABvMZ",
- "mangledName": "$sSo15UIBarButtonItemC13ApptentiveKitE21apptentiveProfileEditABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- }
- ],
- "declKind": "Class",
- "usr": "c:objc(cs)UIBarButtonItem",
- "moduleName": "UIKit",
- "isOpen": true,
- "intro_iOS": "2.0",
- "objc_name": "UIBarButtonItem",
- "declAttributes": [
- "Available",
- "ObjC",
- "NonSendable",
- "Custom",
- "Dynamic"
- ],
- "superclassUsr": "c:objc(cs)UIBarItem",
- "isExternal": true,
- "inheritsConvenienceInitializers": true,
- "superclassNames": [
- "UIKit.UIBarItem",
- "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": "Var",
- "name": "apptentiveMessageAttachmentButton",
- "printedName": "apptentiveMessageAttachmentButton",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "UIKit.UIImage?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIImage",
- "printedName": "UIKit.UIImage",
- "usr": "c:objc(cs)UIImage"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cpy)apptentiveMessageAttachmentButton",
- "mangledName": "$sSo7UIImageC13ApptentiveKitE33apptentiveMessageAttachmentButtonABSgvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "UIKit.UIImage?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIImage",
- "printedName": "UIKit.UIImage",
- "usr": "c:objc(cs)UIImage"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cm)apptentiveMessageAttachmentButton",
- "mangledName": "$sSo7UIImageC13ApptentiveKitE33apptentiveMessageAttachmentButtonABSgvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "UIKit.UIImage?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIImage",
- "printedName": "UIKit.UIImage",
- "usr": "c:objc(cs)UIImage"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cm)setApptentiveMessageAttachmentButton:",
- "mangledName": "$sSo7UIImageC13ApptentiveKitE33apptentiveMessageAttachmentButtonABSgvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So7UIImageC13ApptentiveKitE33apptentiveMessageAttachmentButtonABSgvMZ",
- "mangledName": "$sSo7UIImageC13ApptentiveKitE33apptentiveMessageAttachmentButtonABSgvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveMessageSendButton",
- "printedName": "apptentiveMessageSendButton",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "UIKit.UIImage?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIImage",
- "printedName": "UIKit.UIImage",
- "usr": "c:objc(cs)UIImage"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cpy)apptentiveMessageSendButton",
- "mangledName": "$sSo7UIImageC13ApptentiveKitE27apptentiveMessageSendButtonABSgvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "UIKit.UIImage?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIImage",
- "printedName": "UIKit.UIImage",
- "usr": "c:objc(cs)UIImage"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cm)apptentiveMessageSendButton",
- "mangledName": "$sSo7UIImageC13ApptentiveKitE27apptentiveMessageSendButtonABSgvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "UIKit.UIImage?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIImage",
- "printedName": "UIKit.UIImage",
- "usr": "c:objc(cs)UIImage"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cm)setApptentiveMessageSendButton:",
- "mangledName": "$sSo7UIImageC13ApptentiveKitE27apptentiveMessageSendButtonABSgvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So7UIImageC13ApptentiveKitE27apptentiveMessageSendButtonABSgvMZ",
- "mangledName": "$sSo7UIImageC13ApptentiveKitE27apptentiveMessageSendButtonABSgvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveSentMessageBubble",
- "printedName": "apptentiveSentMessageBubble",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "UIKit.UIImage?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIImage",
- "printedName": "UIKit.UIImage",
- "usr": "c:objc(cs)UIImage"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cpy)apptentiveSentMessageBubble",
- "mangledName": "$sSo7UIImageC13ApptentiveKitE27apptentiveSentMessageBubbleABSgvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "UIKit.UIImage?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIImage",
- "printedName": "UIKit.UIImage",
- "usr": "c:objc(cs)UIImage"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cm)apptentiveSentMessageBubble",
- "mangledName": "$sSo7UIImageC13ApptentiveKitE27apptentiveSentMessageBubbleABSgvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "UIKit.UIImage?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIImage",
- "printedName": "UIKit.UIImage",
- "usr": "c:objc(cs)UIImage"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cm)setApptentiveSentMessageBubble:",
- "mangledName": "$sSo7UIImageC13ApptentiveKitE27apptentiveSentMessageBubbleABSgvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So7UIImageC13ApptentiveKitE27apptentiveSentMessageBubbleABSgvMZ",
- "mangledName": "$sSo7UIImageC13ApptentiveKitE27apptentiveSentMessageBubbleABSgvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveReceivedMessageBubble",
- "printedName": "apptentiveReceivedMessageBubble",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "UIKit.UIImage?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIImage",
- "printedName": "UIKit.UIImage",
- "usr": "c:objc(cs)UIImage"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cpy)apptentiveReceivedMessageBubble",
- "mangledName": "$sSo7UIImageC13ApptentiveKitE31apptentiveReceivedMessageBubbleABSgvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "UIKit.UIImage?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIImage",
- "printedName": "UIKit.UIImage",
- "usr": "c:objc(cs)UIImage"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cm)apptentiveReceivedMessageBubble",
- "mangledName": "$sSo7UIImageC13ApptentiveKitE31apptentiveReceivedMessageBubbleABSgvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "UIKit.UIImage?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIImage",
- "printedName": "UIKit.UIImage",
- "usr": "c:objc(cs)UIImage"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cm)setApptentiveReceivedMessageBubble:",
- "mangledName": "$sSo7UIImageC13ApptentiveKitE31apptentiveReceivedMessageBubbleABSgvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So7UIImageC13ApptentiveKitE31apptentiveReceivedMessageBubbleABSgvMZ",
- "mangledName": "$sSo7UIImageC13ApptentiveKitE31apptentiveReceivedMessageBubbleABSgvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveAttachmentPlaceholder",
- "printedName": "apptentiveAttachmentPlaceholder",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "UIKit.UIImage?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIImage",
- "printedName": "UIKit.UIImage",
- "usr": "c:objc(cs)UIImage"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cpy)apptentiveAttachmentPlaceholder",
- "mangledName": "$sSo7UIImageC13ApptentiveKitE31apptentiveAttachmentPlaceholderABSgvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "UIKit.UIImage?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIImage",
- "printedName": "UIKit.UIImage",
- "usr": "c:objc(cs)UIImage"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cm)apptentiveAttachmentPlaceholder",
- "mangledName": "$sSo7UIImageC13ApptentiveKitE31apptentiveAttachmentPlaceholderABSgvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "UIKit.UIImage?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIImage",
- "printedName": "UIKit.UIImage",
- "usr": "c:objc(cs)UIImage"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cm)setApptentiveAttachmentPlaceholder:",
- "mangledName": "$sSo7UIImageC13ApptentiveKitE31apptentiveAttachmentPlaceholderABSgvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So7UIImageC13ApptentiveKitE31apptentiveAttachmentPlaceholderABSgvMZ",
- "mangledName": "$sSo7UIImageC13ApptentiveKitE31apptentiveAttachmentPlaceholderABSgvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveAttachmentRemoveButton",
- "printedName": "apptentiveAttachmentRemoveButton",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "UIKit.UIImage?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIImage",
- "printedName": "UIKit.UIImage",
- "usr": "c:objc(cs)UIImage"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cpy)apptentiveAttachmentRemoveButton",
- "mangledName": "$sSo7UIImageC13ApptentiveKitE32apptentiveAttachmentRemoveButtonABSgvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "UIKit.UIImage?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIImage",
- "printedName": "UIKit.UIImage",
- "usr": "c:objc(cs)UIImage"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cm)apptentiveAttachmentRemoveButton",
- "mangledName": "$sSo7UIImageC13ApptentiveKitE32apptentiveAttachmentRemoveButtonABSgvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "UIKit.UIImage?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIImage",
- "printedName": "UIKit.UIImage",
- "usr": "c:objc(cs)UIImage"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cm)setApptentiveAttachmentRemoveButton:",
- "mangledName": "$sSo7UIImageC13ApptentiveKitE32apptentiveAttachmentRemoveButtonABSgvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So7UIImageC13ApptentiveKitE32apptentiveAttachmentRemoveButtonABSgvMZ",
- "mangledName": "$sSo7UIImageC13ApptentiveKitE32apptentiveAttachmentRemoveButtonABSgvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveHeaderLogo",
- "printedName": "apptentiveHeaderLogo",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "UIKit.UIImage?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIImage",
- "printedName": "UIKit.UIImage",
- "usr": "c:objc(cs)UIImage"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cpy)apptentiveHeaderLogo",
- "mangledName": "$sSo7UIImageC13ApptentiveKitE20apptentiveHeaderLogoABSgvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "UIKit.UIImage?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIImage",
- "printedName": "UIKit.UIImage",
- "usr": "c:objc(cs)UIImage"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cm)apptentiveHeaderLogo",
- "mangledName": "$sSo7UIImageC13ApptentiveKitE20apptentiveHeaderLogoABSgvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "UIKit.UIImage?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIImage",
- "printedName": "UIKit.UIImage",
- "usr": "c:objc(cs)UIImage"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cm)setApptentiveHeaderLogo:",
- "mangledName": "$sSo7UIImageC13ApptentiveKitE20apptentiveHeaderLogoABSgvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So7UIImageC13ApptentiveKitE20apptentiveHeaderLogoABSgvMZ",
- "mangledName": "$sSo7UIImageC13ApptentiveKitE20apptentiveHeaderLogoABSgvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveRadioButton",
- "printedName": "apptentiveRadioButton",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "UIKit.UIImage?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIImage",
- "printedName": "UIKit.UIImage",
- "usr": "c:objc(cs)UIImage"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cpy)apptentiveRadioButton",
- "mangledName": "$sSo7UIImageC13ApptentiveKitE21apptentiveRadioButtonABSgvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "UIKit.UIImage?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIImage",
- "printedName": "UIKit.UIImage",
- "usr": "c:objc(cs)UIImage"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cm)apptentiveRadioButton",
- "mangledName": "$sSo7UIImageC13ApptentiveKitE21apptentiveRadioButtonABSgvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "UIKit.UIImage?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIImage",
- "printedName": "UIKit.UIImage",
- "usr": "c:objc(cs)UIImage"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cm)setApptentiveRadioButton:",
- "mangledName": "$sSo7UIImageC13ApptentiveKitE21apptentiveRadioButtonABSgvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So7UIImageC13ApptentiveKitE21apptentiveRadioButtonABSgvMZ",
- "mangledName": "$sSo7UIImageC13ApptentiveKitE21apptentiveRadioButtonABSgvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveCheckbox",
- "printedName": "apptentiveCheckbox",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "UIKit.UIImage?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIImage",
- "printedName": "UIKit.UIImage",
- "usr": "c:objc(cs)UIImage"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cpy)apptentiveCheckbox",
- "mangledName": "$sSo7UIImageC13ApptentiveKitE18apptentiveCheckboxABSgvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "UIKit.UIImage?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIImage",
- "printedName": "UIKit.UIImage",
- "usr": "c:objc(cs)UIImage"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cm)apptentiveCheckbox",
- "mangledName": "$sSo7UIImageC13ApptentiveKitE18apptentiveCheckboxABSgvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "UIKit.UIImage?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIImage",
- "printedName": "UIKit.UIImage",
- "usr": "c:objc(cs)UIImage"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cm)setApptentiveCheckbox:",
- "mangledName": "$sSo7UIImageC13ApptentiveKitE18apptentiveCheckboxABSgvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So7UIImageC13ApptentiveKitE18apptentiveCheckboxABSgvMZ",
- "mangledName": "$sSo7UIImageC13ApptentiveKitE18apptentiveCheckboxABSgvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveRadioButtonSelected",
- "printedName": "apptentiveRadioButtonSelected",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "UIKit.UIImage?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIImage",
- "printedName": "UIKit.UIImage",
- "usr": "c:objc(cs)UIImage"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cpy)apptentiveRadioButtonSelected",
- "mangledName": "$sSo7UIImageC13ApptentiveKitE29apptentiveRadioButtonSelectedABSgvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "UIKit.UIImage?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIImage",
- "printedName": "UIKit.UIImage",
- "usr": "c:objc(cs)UIImage"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cm)apptentiveRadioButtonSelected",
- "mangledName": "$sSo7UIImageC13ApptentiveKitE29apptentiveRadioButtonSelectedABSgvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "UIKit.UIImage?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIImage",
- "printedName": "UIKit.UIImage",
- "usr": "c:objc(cs)UIImage"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cm)setApptentiveRadioButtonSelected:",
- "mangledName": "$sSo7UIImageC13ApptentiveKitE29apptentiveRadioButtonSelectedABSgvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So7UIImageC13ApptentiveKitE29apptentiveRadioButtonSelectedABSgvMZ",
- "mangledName": "$sSo7UIImageC13ApptentiveKitE29apptentiveRadioButtonSelectedABSgvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveCheckboxSelected",
- "printedName": "apptentiveCheckboxSelected",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "UIKit.UIImage?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIImage",
- "printedName": "UIKit.UIImage",
- "usr": "c:objc(cs)UIImage"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cpy)apptentiveCheckboxSelected",
- "mangledName": "$sSo7UIImageC13ApptentiveKitE26apptentiveCheckboxSelectedABSgvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "UIKit.UIImage?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIImage",
- "printedName": "UIKit.UIImage",
- "usr": "c:objc(cs)UIImage"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cm)apptentiveCheckboxSelected",
- "mangledName": "$sSo7UIImageC13ApptentiveKitE26apptentiveCheckboxSelectedABSgvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "UIKit.UIImage?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIImage",
- "printedName": "UIKit.UIImage",
- "usr": "c:objc(cs)UIImage"
- }
- ],
- "usr": "s:Sq"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIImage(cm)setApptentiveCheckboxSelected:",
- "mangledName": "$sSo7UIImageC13ApptentiveKitE26apptentiveCheckboxSelectedABSgvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So7UIImageC13ApptentiveKitE26apptentiveCheckboxSelectedABSgvMZ",
- "mangledName": "$sSo7UIImageC13ApptentiveKitE26apptentiveCheckboxSelectedABSgvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- }
- ],
- "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": "UIColor",
- "printedName": "UIColor",
- "children": [
- {
- "kind": "Var",
- "name": "apptentiveMessageCenterTextInputBackground",
- "printedName": "apptentiveMessageCenterTextInputBackground",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveMessageCenterTextInputBackground",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE42apptentiveMessageCenterTextInputBackgroundABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveMessageCenterTextInputBackground",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE42apptentiveMessageCenterTextInputBackgroundABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveMessageCenterTextInputBackground:",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE42apptentiveMessageCenterTextInputBackgroundABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So7UIColorC13ApptentiveKitE42apptentiveMessageCenterTextInputBackgroundABvMZ",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE42apptentiveMessageCenterTextInputBackgroundABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveMessageCenterTextInputPlaceholder",
- "printedName": "apptentiveMessageCenterTextInputPlaceholder",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveMessageCenterTextInputPlaceholder",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE43apptentiveMessageCenterTextInputPlaceholderABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveMessageCenterTextInputPlaceholder",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE43apptentiveMessageCenterTextInputPlaceholderABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveMessageCenterTextInputPlaceholder:",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE43apptentiveMessageCenterTextInputPlaceholderABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So7UIColorC13ApptentiveKitE43apptentiveMessageCenterTextInputPlaceholderABvMZ",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE43apptentiveMessageCenterTextInputPlaceholderABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveMessageTextViewPlaceholder",
- "printedName": "apptentiveMessageTextViewPlaceholder",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveMessageTextViewPlaceholder",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE36apptentiveMessageTextViewPlaceholderABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "deprecated": true,
- "declAttributes": [
- "Final",
- "AccessControl",
- "ObjC",
- "Available",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveMessageTextViewPlaceholder",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE36apptentiveMessageTextViewPlaceholderABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveMessageTextViewPlaceholder:",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE36apptentiveMessageTextViewPlaceholderABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So7UIColorC13ApptentiveKitE36apptentiveMessageTextViewPlaceholderABvMZ",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE36apptentiveMessageTextViewPlaceholderABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "deprecated": true,
- "implicit": true,
- "declAttributes": [
- "Available",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveMessageCenterTextInput",
- "printedName": "apptentiveMessageCenterTextInput",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveMessageCenterTextInput",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE32apptentiveMessageCenterTextInputABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveMessageCenterTextInput",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE32apptentiveMessageCenterTextInputABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveMessageCenterTextInput:",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE32apptentiveMessageCenterTextInputABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So7UIColorC13ApptentiveKitE32apptentiveMessageCenterTextInputABvMZ",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE32apptentiveMessageCenterTextInputABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentivetextInputTint",
- "printedName": "apptentivetextInputTint",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentivetextInputTint",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE23apptentivetextInputTintABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentivetextInputTint",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE23apptentivetextInputTintABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentivetextInputTint:",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE23apptentivetextInputTintABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So7UIColorC13ApptentiveKitE23apptentivetextInputTintABvMZ",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE23apptentivetextInputTintABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveMessageCenterTextInputBorder",
- "printedName": "apptentiveMessageCenterTextInputBorder",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveMessageCenterTextInputBorder",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE38apptentiveMessageCenterTextInputBorderABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveMessageCenterTextInputBorder",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE38apptentiveMessageCenterTextInputBorderABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveMessageCenterTextInputBorder:",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE38apptentiveMessageCenterTextInputBorderABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So7UIColorC13ApptentiveKitE38apptentiveMessageCenterTextInputBorderABvMZ",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE38apptentiveMessageCenterTextInputBorderABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveMessageCenterTextViewBorder",
- "printedName": "apptentiveMessageCenterTextViewBorder",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveMessageCenterTextViewBorder",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE37apptentiveMessageCenterTextViewBorderABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "deprecated": true,
- "declAttributes": [
- "Final",
- "AccessControl",
- "ObjC",
- "Available",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveMessageCenterTextViewBorder",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE37apptentiveMessageCenterTextViewBorderABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveMessageCenterTextViewBorder:",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE37apptentiveMessageCenterTextViewBorderABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So7UIColorC13ApptentiveKitE37apptentiveMessageCenterTextViewBorderABvMZ",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE37apptentiveMessageCenterTextViewBorderABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "deprecated": true,
- "implicit": true,
- "declAttributes": [
- "Available",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveMessageCenterAttachmentButton",
- "printedName": "apptentiveMessageCenterAttachmentButton",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveMessageCenterAttachmentButton",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE39apptentiveMessageCenterAttachmentButtonABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveMessageCenterAttachmentButton",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE39apptentiveMessageCenterAttachmentButtonABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveMessageCenterAttachmentButton:",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE39apptentiveMessageCenterAttachmentButtonABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So7UIColorC13ApptentiveKitE39apptentiveMessageCenterAttachmentButtonABvMZ",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE39apptentiveMessageCenterAttachmentButtonABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveMessageTextInputPlaceholder",
- "printedName": "apptentiveMessageTextInputPlaceholder",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveMessageTextInputPlaceholder",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE37apptentiveMessageTextInputPlaceholderABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveMessageTextInputPlaceholder",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE37apptentiveMessageTextInputPlaceholderABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveMessageTextInputPlaceholder:",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE37apptentiveMessageTextInputPlaceholderABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So7UIColorC13ApptentiveKitE37apptentiveMessageTextInputPlaceholderABvMZ",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE37apptentiveMessageTextInputPlaceholderABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveMessageCenterStatus",
- "printedName": "apptentiveMessageCenterStatus",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveMessageCenterStatus",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE29apptentiveMessageCenterStatusABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveMessageCenterStatus",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE29apptentiveMessageCenterStatusABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveMessageCenterStatus:",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE29apptentiveMessageCenterStatusABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So7UIColorC13ApptentiveKitE29apptentiveMessageCenterStatusABvMZ",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE29apptentiveMessageCenterStatusABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveMessageCenterGreetingBody",
- "printedName": "apptentiveMessageCenterGreetingBody",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveMessageCenterGreetingBody",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE35apptentiveMessageCenterGreetingBodyABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveMessageCenterGreetingBody",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE35apptentiveMessageCenterGreetingBodyABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveMessageCenterGreetingBody:",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE35apptentiveMessageCenterGreetingBodyABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So7UIColorC13ApptentiveKitE35apptentiveMessageCenterGreetingBodyABvMZ",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE35apptentiveMessageCenterGreetingBodyABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveMessageCenterGreetingTitle",
- "printedName": "apptentiveMessageCenterGreetingTitle",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveMessageCenterGreetingTitle",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE36apptentiveMessageCenterGreetingTitleABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveMessageCenterGreetingTitle",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE36apptentiveMessageCenterGreetingTitleABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveMessageCenterGreetingTitle:",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE36apptentiveMessageCenterGreetingTitleABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So7UIColorC13ApptentiveKitE36apptentiveMessageCenterGreetingTitleABvMZ",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE36apptentiveMessageCenterGreetingTitleABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveMessageBubbleInbound",
- "printedName": "apptentiveMessageBubbleInbound",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveMessageBubbleInbound",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE30apptentiveMessageBubbleInboundABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveMessageBubbleInbound",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE30apptentiveMessageBubbleInboundABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveMessageBubbleInbound:",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE30apptentiveMessageBubbleInboundABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So7UIColorC13ApptentiveKitE30apptentiveMessageBubbleInboundABvMZ",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE30apptentiveMessageBubbleInboundABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveMessageBubbleOutbound",
- "printedName": "apptentiveMessageBubbleOutbound",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveMessageBubbleOutbound",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE31apptentiveMessageBubbleOutboundABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveMessageBubbleOutbound",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE31apptentiveMessageBubbleOutboundABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveMessageBubbleOutbound:",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE31apptentiveMessageBubbleOutboundABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So7UIColorC13ApptentiveKitE31apptentiveMessageBubbleOutboundABvMZ",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE31apptentiveMessageBubbleOutboundABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveMessageLabelInbound",
- "printedName": "apptentiveMessageLabelInbound",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveMessageLabelInbound",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE29apptentiveMessageLabelInboundABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveMessageLabelInbound",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE29apptentiveMessageLabelInboundABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveMessageLabelInbound:",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE29apptentiveMessageLabelInboundABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So7UIColorC13ApptentiveKitE29apptentiveMessageLabelInboundABvMZ",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE29apptentiveMessageLabelInboundABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveMessageLabelOutbound",
- "printedName": "apptentiveMessageLabelOutbound",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveMessageLabelOutbound",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE30apptentiveMessageLabelOutboundABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveMessageLabelOutbound",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE30apptentiveMessageLabelOutboundABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveMessageLabelOutbound:",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE30apptentiveMessageLabelOutboundABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So7UIColorC13ApptentiveKitE30apptentiveMessageLabelOutboundABvMZ",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE30apptentiveMessageLabelOutboundABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveQuestionLabel",
- "printedName": "apptentiveQuestionLabel",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveQuestionLabel",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE23apptentiveQuestionLabelABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveQuestionLabel",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE23apptentiveQuestionLabelABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveQuestionLabel:",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE23apptentiveQuestionLabelABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So7UIColorC13ApptentiveKitE23apptentiveQuestionLabelABvMZ",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE23apptentiveQuestionLabelABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveInstructionsLabel",
- "printedName": "apptentiveInstructionsLabel",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveInstructionsLabel",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE27apptentiveInstructionsLabelABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveInstructionsLabel",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE27apptentiveInstructionsLabelABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveInstructionsLabel:",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE27apptentiveInstructionsLabelABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So7UIColorC13ApptentiveKitE27apptentiveInstructionsLabelABvMZ",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE27apptentiveInstructionsLabelABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveChoiceLabel",
- "printedName": "apptentiveChoiceLabel",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveChoiceLabel",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE21apptentiveChoiceLabelABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveChoiceLabel",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE21apptentiveChoiceLabelABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveChoiceLabel:",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE21apptentiveChoiceLabelABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So7UIColorC13ApptentiveKitE21apptentiveChoiceLabelABvMZ",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE21apptentiveChoiceLabelABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveError",
- "printedName": "apptentiveError",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveError",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE15apptentiveErrorABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveError",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE15apptentiveErrorABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveError:",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE15apptentiveErrorABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So7UIColorC13ApptentiveKitE15apptentiveErrorABvMZ",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE15apptentiveErrorABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveSecondaryLabel",
- "printedName": "apptentiveSecondaryLabel",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveSecondaryLabel",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE24apptentiveSecondaryLabelABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveSecondaryLabel",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE24apptentiveSecondaryLabelABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveSecondaryLabel:",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE24apptentiveSecondaryLabelABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So7UIColorC13ApptentiveKitE24apptentiveSecondaryLabelABvMZ",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE24apptentiveSecondaryLabelABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveRangeControlBorder",
- "printedName": "apptentiveRangeControlBorder",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveRangeControlBorder",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE28apptentiveRangeControlBorderABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveRangeControlBorder",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE28apptentiveRangeControlBorderABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveRangeControlBorder:",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE28apptentiveRangeControlBorderABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So7UIColorC13ApptentiveKitE28apptentiveRangeControlBorderABvMZ",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE28apptentiveRangeControlBorderABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveSurveyIntroduction",
- "printedName": "apptentiveSurveyIntroduction",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveSurveyIntroduction",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE28apptentiveSurveyIntroductionABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveSurveyIntroduction",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE28apptentiveSurveyIntroductionABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveSurveyIntroduction:",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE28apptentiveSurveyIntroductionABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So7UIColorC13ApptentiveKitE28apptentiveSurveyIntroductionABvMZ",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE28apptentiveSurveyIntroductionABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveTextInputBorder",
- "printedName": "apptentiveTextInputBorder",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveTextInputBorder",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE25apptentiveTextInputBorderABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveTextInputBorder",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE25apptentiveTextInputBorderABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveTextInputBorder:",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE25apptentiveTextInputBorderABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So7UIColorC13ApptentiveKitE25apptentiveTextInputBorderABvMZ",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE25apptentiveTextInputBorderABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveTextInputBackground",
- "printedName": "apptentiveTextInputBackground",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveTextInputBackground",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE29apptentiveTextInputBackgroundABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveTextInputBackground",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE29apptentiveTextInputBackgroundABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveTextInputBackground:",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE29apptentiveTextInputBackgroundABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So7UIColorC13ApptentiveKitE29apptentiveTextInputBackgroundABvMZ",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE29apptentiveTextInputBackgroundABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveTextInput",
- "printedName": "apptentiveTextInput",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveTextInput",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE19apptentiveTextInputABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveTextInput",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE19apptentiveTextInputABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveTextInput:",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE19apptentiveTextInputABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So7UIColorC13ApptentiveKitE19apptentiveTextInputABvMZ",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE19apptentiveTextInputABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveTextInputPlaceholder",
- "printedName": "apptentiveTextInputPlaceholder",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveTextInputPlaceholder",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE30apptentiveTextInputPlaceholderABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveTextInputPlaceholder",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE30apptentiveTextInputPlaceholderABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveTextInputPlaceholder:",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE30apptentiveTextInputPlaceholderABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So7UIColorC13ApptentiveKitE30apptentiveTextInputPlaceholderABvMZ",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE30apptentiveTextInputPlaceholderABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveMinMaxLabel",
- "printedName": "apptentiveMinMaxLabel",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveMinMaxLabel",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE21apptentiveMinMaxLabelABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveMinMaxLabel",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE21apptentiveMinMaxLabelABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveMinMaxLabel:",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE21apptentiveMinMaxLabelABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So7UIColorC13ApptentiveKitE21apptentiveMinMaxLabelABvMZ",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE21apptentiveMinMaxLabelABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveGroupedBackground",
- "printedName": "apptentiveGroupedBackground",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveGroupedBackground",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE27apptentiveGroupedBackgroundABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveGroupedBackground",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE27apptentiveGroupedBackgroundABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveGroupedBackground:",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE27apptentiveGroupedBackgroundABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So7UIColorC13ApptentiveKitE27apptentiveGroupedBackgroundABvMZ",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE27apptentiveGroupedBackgroundABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveSecondaryGroupedBackground",
- "printedName": "apptentiveSecondaryGroupedBackground",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveSecondaryGroupedBackground",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE36apptentiveSecondaryGroupedBackgroundABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveSecondaryGroupedBackground",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE36apptentiveSecondaryGroupedBackgroundABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveSecondaryGroupedBackground:",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE36apptentiveSecondaryGroupedBackgroundABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So7UIColorC13ApptentiveKitE36apptentiveSecondaryGroupedBackgroundABvMZ",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE36apptentiveSecondaryGroupedBackgroundABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveSeparator",
- "printedName": "apptentiveSeparator",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveSeparator",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE19apptentiveSeparatorABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveSeparator",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE19apptentiveSeparatorABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveSeparator:",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE19apptentiveSeparatorABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So7UIColorC13ApptentiveKitE19apptentiveSeparatorABvMZ",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE19apptentiveSeparatorABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveImageSelected",
- "printedName": "apptentiveImageSelected",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveImageSelected",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE23apptentiveImageSelectedABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveImageSelected",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE23apptentiveImageSelectedABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveImageSelected:",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE23apptentiveImageSelectedABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So7UIColorC13ApptentiveKitE23apptentiveImageSelectedABvMZ",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE23apptentiveImageSelectedABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveImageNotSelected",
- "printedName": "apptentiveImageNotSelected",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveImageNotSelected",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE26apptentiveImageNotSelectedABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveImageNotSelected",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE26apptentiveImageNotSelectedABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveImageNotSelected:",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE26apptentiveImageNotSelectedABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So7UIColorC13ApptentiveKitE26apptentiveImageNotSelectedABvMZ",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE26apptentiveImageNotSelectedABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveSubmitButton",
- "printedName": "apptentiveSubmitButton",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveSubmitButton",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE22apptentiveSubmitButtonABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveSubmitButton",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE22apptentiveSubmitButtonABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveSubmitButton:",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE22apptentiveSubmitButtonABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So7UIColorC13ApptentiveKitE22apptentiveSubmitButtonABvMZ",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE22apptentiveSubmitButtonABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveBranchedSurveyFooter",
- "printedName": "apptentiveBranchedSurveyFooter",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveBranchedSurveyFooter",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE30apptentiveBranchedSurveyFooterABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveBranchedSurveyFooter",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE30apptentiveBranchedSurveyFooterABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveBranchedSurveyFooter:",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE30apptentiveBranchedSurveyFooterABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So7UIColorC13ApptentiveKitE30apptentiveBranchedSurveyFooterABvMZ",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE30apptentiveBranchedSurveyFooterABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveSubmitLabel",
- "printedName": "apptentiveSubmitLabel",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Var",
- "usr": "s:So7UIColorC13ApptentiveKitE21apptentiveSubmitLabelABvpZ",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE21apptentiveSubmitLabelABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "deprecated": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "Available",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So7UIColorC13ApptentiveKitE21apptentiveSubmitLabelABvgZ",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE21apptentiveSubmitLabelABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So7UIColorC13ApptentiveKitE21apptentiveSubmitLabelABvsZ",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE21apptentiveSubmitLabelABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So7UIColorC13ApptentiveKitE21apptentiveSubmitLabelABvMZ",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE21apptentiveSubmitLabelABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "deprecated": true,
- "implicit": true,
- "declAttributes": [
- "Available",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveSubmitStatusLabel",
- "printedName": "apptentiveSubmitStatusLabel",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveSubmitStatusLabel",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE27apptentiveSubmitStatusLabelABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveSubmitStatusLabel",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE27apptentiveSubmitStatusLabelABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveSubmitStatusLabel:",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE27apptentiveSubmitStatusLabelABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So7UIColorC13ApptentiveKitE27apptentiveSubmitStatusLabelABvMZ",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE27apptentiveSubmitStatusLabelABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveTermsOfServiceLabel",
- "printedName": "apptentiveTermsOfServiceLabel",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveTermsOfServiceLabel",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE29apptentiveTermsOfServiceLabelABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveTermsOfServiceLabel",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE29apptentiveTermsOfServiceLabelABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveTermsOfServiceLabel:",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE29apptentiveTermsOfServiceLabelABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So7UIColorC13ApptentiveKitE29apptentiveTermsOfServiceLabelABvMZ",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE29apptentiveTermsOfServiceLabelABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveSubmitButtonTitle",
- "printedName": "apptentiveSubmitButtonTitle",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveSubmitButtonTitle",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE27apptentiveSubmitButtonTitleABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveSubmitButtonTitle",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE27apptentiveSubmitButtonTitleABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveSubmitButtonTitle:",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE27apptentiveSubmitButtonTitleABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So7UIColorC13ApptentiveKitE27apptentiveSubmitButtonTitleABvMZ",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE27apptentiveSubmitButtonTitleABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveSubmitButtonBorder",
- "printedName": "apptentiveSubmitButtonBorder",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveSubmitButtonBorder",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE28apptentiveSubmitButtonBorderABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveSubmitButtonBorder",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE28apptentiveSubmitButtonBorderABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveSubmitButtonBorder:",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE28apptentiveSubmitButtonBorderABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So7UIColorC13ApptentiveKitE28apptentiveSubmitButtonBorderABvMZ",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE28apptentiveSubmitButtonBorderABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveQuestionSeparator",
- "printedName": "apptentiveQuestionSeparator",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveQuestionSeparator",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE27apptentiveQuestionSeparatorABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveQuestionSeparator",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE27apptentiveQuestionSeparatorABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveQuestionSeparator:",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE27apptentiveQuestionSeparatorABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So7UIColorC13ApptentiveKitE27apptentiveQuestionSeparatorABvMZ",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE27apptentiveQuestionSeparatorABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveUnselectedSurveyIndicatorSegment",
- "printedName": "apptentiveUnselectedSurveyIndicatorSegment",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Var",
- "usr": "s:So7UIColorC13ApptentiveKitE42apptentiveUnselectedSurveyIndicatorSegmentABvpZ",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE42apptentiveUnselectedSurveyIndicatorSegmentABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So7UIColorC13ApptentiveKitE42apptentiveUnselectedSurveyIndicatorSegmentABvgZ",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE42apptentiveUnselectedSurveyIndicatorSegmentABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So7UIColorC13ApptentiveKitE42apptentiveUnselectedSurveyIndicatorSegmentABvsZ",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE42apptentiveUnselectedSurveyIndicatorSegmentABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So7UIColorC13ApptentiveKitE42apptentiveUnselectedSurveyIndicatorSegmentABvMZ",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE42apptentiveUnselectedSurveyIndicatorSegmentABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveSelectedSurveyIndicatorSegment",
- "printedName": "apptentiveSelectedSurveyIndicatorSegment",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Var",
- "usr": "s:So7UIColorC13ApptentiveKitE40apptentiveSelectedSurveyIndicatorSegmentABvpZ",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE40apptentiveSelectedSurveyIndicatorSegmentABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So7UIColorC13ApptentiveKitE40apptentiveSelectedSurveyIndicatorSegmentABvgZ",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE40apptentiveSelectedSurveyIndicatorSegmentABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So7UIColorC13ApptentiveKitE40apptentiveSelectedSurveyIndicatorSegmentABvsZ",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE40apptentiveSelectedSurveyIndicatorSegmentABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So7UIColorC13ApptentiveKitE40apptentiveSelectedSurveyIndicatorSegmentABvMZ",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE40apptentiveSelectedSurveyIndicatorSegmentABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveMessageCenterBackground",
- "printedName": "apptentiveMessageCenterBackground",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveMessageCenterBackground",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE33apptentiveMessageCenterBackgroundABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveMessageCenterBackground",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE33apptentiveMessageCenterBackgroundABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveMessageCenterBackground:",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE33apptentiveMessageCenterBackgroundABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So7UIColorC13ApptentiveKitE33apptentiveMessageCenterBackgroundABvMZ",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE33apptentiveMessageCenterBackgroundABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveMessageCenterAttachmentDeleteButton",
- "printedName": "apptentiveMessageCenterAttachmentDeleteButton",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveMessageCenterAttachmentDeleteButton",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE45apptentiveMessageCenterAttachmentDeleteButtonABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveMessageCenterAttachmentDeleteButton",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE45apptentiveMessageCenterAttachmentDeleteButtonABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveMessageCenterAttachmentDeleteButton:",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE45apptentiveMessageCenterAttachmentDeleteButtonABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So7UIColorC13ApptentiveKitE45apptentiveMessageCenterAttachmentDeleteButtonABvMZ",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE45apptentiveMessageCenterAttachmentDeleteButtonABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveMessageCenterComposeBoxBackground",
- "printedName": "apptentiveMessageCenterComposeBoxBackground",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveMessageCenterComposeBoxBackground",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE43apptentiveMessageCenterComposeBoxBackgroundABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveMessageCenterComposeBoxBackground",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE43apptentiveMessageCenterComposeBoxBackgroundABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveMessageCenterComposeBoxBackground:",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE43apptentiveMessageCenterComposeBoxBackgroundABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So7UIColorC13ApptentiveKitE43apptentiveMessageCenterComposeBoxBackgroundABvMZ",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE43apptentiveMessageCenterComposeBoxBackgroundABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveMessageCenterComposeBoxSeparator",
- "printedName": "apptentiveMessageCenterComposeBoxSeparator",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveMessageCenterComposeBoxSeparator",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE42apptentiveMessageCenterComposeBoxSeparatorABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveMessageCenterComposeBoxSeparator",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE42apptentiveMessageCenterComposeBoxSeparatorABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveMessageCenterComposeBoxSeparator:",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE42apptentiveMessageCenterComposeBoxSeparatorABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So7UIColorC13ApptentiveKitE42apptentiveMessageCenterComposeBoxSeparatorABvMZ",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE42apptentiveMessageCenterComposeBoxSeparatorABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveTextInputBorderSelected",
- "printedName": "apptentiveTextInputBorderSelected",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveTextInputBorderSelected",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE33apptentiveTextInputBorderSelectedABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveTextInputBorderSelected",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE33apptentiveTextInputBorderSelectedABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveTextInputBorderSelected:",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE33apptentiveTextInputBorderSelectedABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So7UIColorC13ApptentiveKitE33apptentiveTextInputBorderSelectedABvMZ",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE33apptentiveTextInputBorderSelectedABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveDisclaimerLabel",
- "printedName": "apptentiveDisclaimerLabel",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cpy)apptentiveDisclaimerLabel",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE25apptentiveDisclaimerLabelABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)apptentiveDisclaimerLabel",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE25apptentiveDisclaimerLabelABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIColor",
- "printedName": "UIKit.UIColor",
- "usr": "c:objc(cs)UIColor"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIColor(cm)setApptentiveDisclaimerLabel:",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE25apptentiveDisclaimerLabelABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So7UIColorC13ApptentiveKitE25apptentiveDisclaimerLabelABvMZ",
- "mangledName": "$sSo7UIColorC13ApptentiveKitE25apptentiveDisclaimerLabelABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- }
- ],
- "declKind": "Class",
- "usr": "c:objc(cs)UIColor",
- "moduleName": "UIKit",
- "isOpen": true,
- "intro_iOS": "2.0",
- "objc_name": "UIColor",
- "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": "_ExpressibleByColorLiteral",
- "printedName": "_ExpressibleByColorLiteral",
- "usr": "s:s26_ExpressibleByColorLiteralP",
- "mangledName": "$ss26_ExpressibleByColorLiteralP"
- }
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "UIFont",
- "printedName": "UIFont",
- "children": [
- {
- "kind": "Var",
- "name": "apptentiveMessageCenterTextInputPlaceholder",
- "printedName": "apptentiveMessageCenterTextInputPlaceholder",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cpy)apptentiveMessageCenterTextInputPlaceholder",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE43apptentiveMessageCenterTextInputPlaceholderABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)apptentiveMessageCenterTextInputPlaceholder",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE43apptentiveMessageCenterTextInputPlaceholderABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)setApptentiveMessageCenterTextInputPlaceholder:",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE43apptentiveMessageCenterTextInputPlaceholderABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So6UIFontC13ApptentiveKitE43apptentiveMessageCenterTextInputPlaceholderABvMZ",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE43apptentiveMessageCenterTextInputPlaceholderABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveMessageCenterTextInput",
- "printedName": "apptentiveMessageCenterTextInput",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cpy)apptentiveMessageCenterTextInput",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE32apptentiveMessageCenterTextInputABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)apptentiveMessageCenterTextInput",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE32apptentiveMessageCenterTextInputABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)setApptentiveMessageCenterTextInput:",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE32apptentiveMessageCenterTextInputABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So6UIFontC13ApptentiveKitE32apptentiveMessageCenterTextInputABvMZ",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE32apptentiveMessageCenterTextInputABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveTextInputPlaceholder",
- "printedName": "apptentiveTextInputPlaceholder",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cpy)apptentiveTextInputPlaceholder",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE30apptentiveTextInputPlaceholderABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)apptentiveTextInputPlaceholder",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE30apptentiveTextInputPlaceholderABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)setApptentiveTextInputPlaceholder:",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE30apptentiveTextInputPlaceholderABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So6UIFontC13ApptentiveKitE30apptentiveTextInputPlaceholderABvMZ",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE30apptentiveTextInputPlaceholderABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveMessageCenterStatus",
- "printedName": "apptentiveMessageCenterStatus",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cpy)apptentiveMessageCenterStatus",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE29apptentiveMessageCenterStatusABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)apptentiveMessageCenterStatus",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE29apptentiveMessageCenterStatusABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)setApptentiveMessageCenterStatus:",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE29apptentiveMessageCenterStatusABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So6UIFontC13ApptentiveKitE29apptentiveMessageCenterStatusABvMZ",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE29apptentiveMessageCenterStatusABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveMessageCenterGreetingTitle",
- "printedName": "apptentiveMessageCenterGreetingTitle",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cpy)apptentiveMessageCenterGreetingTitle",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE36apptentiveMessageCenterGreetingTitleABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)apptentiveMessageCenterGreetingTitle",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE36apptentiveMessageCenterGreetingTitleABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)setApptentiveMessageCenterGreetingTitle:",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE36apptentiveMessageCenterGreetingTitleABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So6UIFontC13ApptentiveKitE36apptentiveMessageCenterGreetingTitleABvMZ",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE36apptentiveMessageCenterGreetingTitleABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveMessageCenterGreetingBody",
- "printedName": "apptentiveMessageCenterGreetingBody",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cpy)apptentiveMessageCenterGreetingBody",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE35apptentiveMessageCenterGreetingBodyABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)apptentiveMessageCenterGreetingBody",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE35apptentiveMessageCenterGreetingBodyABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)setApptentiveMessageCenterGreetingBody:",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE35apptentiveMessageCenterGreetingBodyABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So6UIFontC13ApptentiveKitE35apptentiveMessageCenterGreetingBodyABvMZ",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE35apptentiveMessageCenterGreetingBodyABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveMessageCenterAttachmentLabel",
- "printedName": "apptentiveMessageCenterAttachmentLabel",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cpy)apptentiveMessageCenterAttachmentLabel",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE38apptentiveMessageCenterAttachmentLabelABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)apptentiveMessageCenterAttachmentLabel",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE38apptentiveMessageCenterAttachmentLabelABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)setApptentiveMessageCenterAttachmentLabel:",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE38apptentiveMessageCenterAttachmentLabelABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So6UIFontC13ApptentiveKitE38apptentiveMessageCenterAttachmentLabelABvMZ",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE38apptentiveMessageCenterAttachmentLabelABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveQuestionLabel",
- "printedName": "apptentiveQuestionLabel",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cpy)apptentiveQuestionLabel",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE23apptentiveQuestionLabelABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)apptentiveQuestionLabel",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE23apptentiveQuestionLabelABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)setApptentiveQuestionLabel:",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE23apptentiveQuestionLabelABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So6UIFontC13ApptentiveKitE23apptentiveQuestionLabelABvMZ",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE23apptentiveQuestionLabelABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveTermsOfServiceLabel",
- "printedName": "apptentiveTermsOfServiceLabel",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cpy)apptentiveTermsOfServiceLabel",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE29apptentiveTermsOfServiceLabelABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)apptentiveTermsOfServiceLabel",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE29apptentiveTermsOfServiceLabelABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)setApptentiveTermsOfServiceLabel:",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE29apptentiveTermsOfServiceLabelABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So6UIFontC13ApptentiveKitE29apptentiveTermsOfServiceLabelABvMZ",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE29apptentiveTermsOfServiceLabelABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveChoiceLabel",
- "printedName": "apptentiveChoiceLabel",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cpy)apptentiveChoiceLabel",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE21apptentiveChoiceLabelABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)apptentiveChoiceLabel",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE21apptentiveChoiceLabelABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)setApptentiveChoiceLabel:",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE21apptentiveChoiceLabelABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So6UIFontC13ApptentiveKitE21apptentiveChoiceLabelABvMZ",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE21apptentiveChoiceLabelABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveMessageLabel",
- "printedName": "apptentiveMessageLabel",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cpy)apptentiveMessageLabel",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE22apptentiveMessageLabelABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)apptentiveMessageLabel",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE22apptentiveMessageLabelABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)setApptentiveMessageLabel:",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE22apptentiveMessageLabelABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So6UIFontC13ApptentiveKitE22apptentiveMessageLabelABvMZ",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE22apptentiveMessageLabelABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveMinMaxLabel",
- "printedName": "apptentiveMinMaxLabel",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cpy)apptentiveMinMaxLabel",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE21apptentiveMinMaxLabelABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)apptentiveMinMaxLabel",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE21apptentiveMinMaxLabelABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)setApptentiveMinMaxLabel:",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE21apptentiveMinMaxLabelABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So6UIFontC13ApptentiveKitE21apptentiveMinMaxLabelABvMZ",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE21apptentiveMinMaxLabelABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveSenderLabel",
- "printedName": "apptentiveSenderLabel",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cpy)apptentiveSenderLabel",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE21apptentiveSenderLabelABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)apptentiveSenderLabel",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE21apptentiveSenderLabelABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)setApptentiveSenderLabel:",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE21apptentiveSenderLabelABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So6UIFontC13ApptentiveKitE21apptentiveSenderLabelABvMZ",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE21apptentiveSenderLabelABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveMessageDateLabel",
- "printedName": "apptentiveMessageDateLabel",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cpy)apptentiveMessageDateLabel",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE26apptentiveMessageDateLabelABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)apptentiveMessageDateLabel",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE26apptentiveMessageDateLabelABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)setApptentiveMessageDateLabel:",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE26apptentiveMessageDateLabelABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So6UIFontC13ApptentiveKitE26apptentiveMessageDateLabelABvMZ",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE26apptentiveMessageDateLabelABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveInstructionsLabel",
- "printedName": "apptentiveInstructionsLabel",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cpy)apptentiveInstructionsLabel",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE27apptentiveInstructionsLabelABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)apptentiveInstructionsLabel",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE27apptentiveInstructionsLabelABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)setApptentiveInstructionsLabel:",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE27apptentiveInstructionsLabelABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So6UIFontC13ApptentiveKitE27apptentiveInstructionsLabelABvMZ",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE27apptentiveInstructionsLabelABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveSurveyIntroductionLabel",
- "printedName": "apptentiveSurveyIntroductionLabel",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cpy)apptentiveSurveyIntroductionLabel",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE33apptentiveSurveyIntroductionLabelABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)apptentiveSurveyIntroductionLabel",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE33apptentiveSurveyIntroductionLabelABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)setApptentiveSurveyIntroductionLabel:",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE33apptentiveSurveyIntroductionLabelABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So6UIFontC13ApptentiveKitE33apptentiveSurveyIntroductionLabelABvMZ",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE33apptentiveSurveyIntroductionLabelABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveSubmitLabel",
- "printedName": "apptentiveSubmitLabel",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Var",
- "usr": "s:So6UIFontC13ApptentiveKitE21apptentiveSubmitLabelABvpZ",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE21apptentiveSubmitLabelABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "deprecated": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "Available",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So6UIFontC13ApptentiveKitE21apptentiveSubmitLabelABvgZ",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE21apptentiveSubmitLabelABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So6UIFontC13ApptentiveKitE21apptentiveSubmitLabelABvsZ",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE21apptentiveSubmitLabelABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So6UIFontC13ApptentiveKitE21apptentiveSubmitLabelABvMZ",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE21apptentiveSubmitLabelABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "deprecated": true,
- "implicit": true,
- "declAttributes": [
- "Available",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveSubmitStatusLabel",
- "printedName": "apptentiveSubmitStatusLabel",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cpy)apptentiveSubmitStatusLabel",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE27apptentiveSubmitStatusLabelABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)apptentiveSubmitStatusLabel",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE27apptentiveSubmitStatusLabelABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)setApptentiveSubmitStatusLabel:",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE27apptentiveSubmitStatusLabelABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So6UIFontC13ApptentiveKitE27apptentiveSubmitStatusLabelABvMZ",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE27apptentiveSubmitStatusLabelABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveDisclaimerLabel",
- "printedName": "apptentiveDisclaimerLabel",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cpy)apptentiveDisclaimerLabel",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE25apptentiveDisclaimerLabelABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)apptentiveDisclaimerLabel",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE25apptentiveDisclaimerLabelABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)setApptentiveDisclaimerLabel:",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE25apptentiveDisclaimerLabelABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So6UIFontC13ApptentiveKitE25apptentiveDisclaimerLabelABvMZ",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE25apptentiveDisclaimerLabelABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveSubmitButtonTitle",
- "printedName": "apptentiveSubmitButtonTitle",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cpy)apptentiveSubmitButtonTitle",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE27apptentiveSubmitButtonTitleABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)apptentiveSubmitButtonTitle",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE27apptentiveSubmitButtonTitleABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)setApptentiveSubmitButtonTitle:",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE27apptentiveSubmitButtonTitleABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So6UIFontC13ApptentiveKitE27apptentiveSubmitButtonTitleABvMZ",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE27apptentiveSubmitButtonTitleABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- },
- {
- "kind": "Var",
- "name": "apptentiveTextInput",
- "printedName": "apptentiveTextInput",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cpy)apptentiveTextInput",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE19apptentiveTextInputABvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)apptentiveTextInput",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE19apptentiveTextInputABvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "UIFont",
- "printedName": "UIKit.UIFont",
- "usr": "c:objc(cs)UIFont"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIFont(cm)setApptentiveTextInput:",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE19apptentiveTextInputABvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So6UIFontC13ApptentiveKitE19apptentiveTextInputABvMZ",
- "mangledName": "$sSo6UIFontC13ApptentiveKitE19apptentiveTextInputABvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- }
- ],
- "declKind": "Class",
- "usr": "c:objc(cs)UIFont",
- "moduleName": "UIKit",
- "isOpen": true,
- "intro_iOS": "2.0",
- "objc_name": "UIFont",
- "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": "TypeDecl",
- "name": "UIToolbar",
- "printedName": "UIToolbar",
- "children": [
- {
- "kind": "TypeDecl",
- "name": "ToolbarMode",
- "printedName": "ToolbarMode",
- "children": [
- {
- "kind": "Var",
- "name": "alwaysShown",
- "printedName": "alwaysShown",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(UIKit.UIToolbar.ToolbarMode.Type) -> UIKit.UIToolbar.ToolbarMode",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ToolbarMode",
- "printedName": "UIKit.UIToolbar.ToolbarMode",
- "usr": "s:So9UIToolbarC13ApptentiveKitE11ToolbarModeO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "UIKit.UIToolbar.ToolbarMode.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ToolbarMode",
- "printedName": "UIKit.UIToolbar.ToolbarMode",
- "usr": "s:So9UIToolbarC13ApptentiveKitE11ToolbarModeO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:So9UIToolbarC13ApptentiveKitE11ToolbarModeO11alwaysShownyA2EmF",
- "mangledName": "$sSo9UIToolbarC13ApptentiveKitE11ToolbarModeO11alwaysShownyA2EmF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment",
- "ObjC"
- ],
- "fixedbinaryorder": 0
- },
- {
- "kind": "Var",
- "name": "hiddenWhenEmpty",
- "printedName": "hiddenWhenEmpty",
- "children": [
- {
- "kind": "TypeFunc",
- "name": "Function",
- "printedName": "(UIKit.UIToolbar.ToolbarMode.Type) -> UIKit.UIToolbar.ToolbarMode",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ToolbarMode",
- "printedName": "UIKit.UIToolbar.ToolbarMode",
- "usr": "s:So9UIToolbarC13ApptentiveKitE11ToolbarModeO"
- },
- {
- "kind": "TypeNominal",
- "name": "Metatype",
- "printedName": "UIKit.UIToolbar.ToolbarMode.Type",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ToolbarMode",
- "printedName": "UIKit.UIToolbar.ToolbarMode",
- "usr": "s:So9UIToolbarC13ApptentiveKitE11ToolbarModeO"
- }
- ]
- }
- ]
- }
- ],
- "declKind": "EnumElement",
- "usr": "s:So9UIToolbarC13ApptentiveKitE11ToolbarModeO15hiddenWhenEmptyyA2EmF",
- "mangledName": "$sSo9UIToolbarC13ApptentiveKitE11ToolbarModeO15hiddenWhenEmptyyA2EmF",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "RawDocComment",
- "ObjC"
- ],
- "fixedbinaryorder": 1
- },
- {
- "kind": "Constructor",
- "name": "init",
- "printedName": "init(rawValue:)",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Optional",
- "printedName": "UIKit.UIToolbar.ToolbarMode?",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ToolbarMode",
- "printedName": "UIKit.UIToolbar.ToolbarMode",
- "usr": "s:So9UIToolbarC13ApptentiveKitE11ToolbarModeO"
- }
- ],
- "usr": "s:Sq"
- },
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ],
- "declKind": "Constructor",
- "usr": "s:So9UIToolbarC13ApptentiveKitE11ToolbarModeO8rawValueAESgSi_tcfc",
- "mangledName": "$sSo9UIToolbarC13ApptentiveKitE11ToolbarModeO8rawValueAESgSi_tcfc",
- "moduleName": "ApptentiveKit",
- "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:So9UIToolbarC13ApptentiveKitE11ToolbarModeO8rawValueSivp",
- "mangledName": "$sSo9UIToolbarC13ApptentiveKitE11ToolbarModeO8rawValueSivp",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So9UIToolbarC13ApptentiveKitE11ToolbarModeO8rawValueSivg",
- "mangledName": "$sSo9UIToolbarC13ApptentiveKitE11ToolbarModeO8rawValueSivg",
- "moduleName": "ApptentiveKit",
- "implicit": true,
- "accessorKind": "get"
- }
- ]
- }
- ],
- "declKind": "Enum",
- "usr": "s:So9UIToolbarC13ApptentiveKitE11ToolbarModeO",
- "mangledName": "$sSo9UIToolbarC13ApptentiveKitE11ToolbarModeO",
- "moduleName": "ApptentiveKit",
- "declAttributes": [
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "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": "Var",
- "name": "apptentiveMode",
- "printedName": "apptentiveMode",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ToolbarMode",
- "printedName": "UIKit.UIToolbar.ToolbarMode",
- "usr": "s:So9UIToolbarC13ApptentiveKitE11ToolbarModeO"
- }
- ],
- "declKind": "Var",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIToolbar(cpy)apptentiveMode",
- "mangledName": "$sSo9UIToolbarC13ApptentiveKitE14apptentiveModeAbCE07ToolbarE0OvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "Final",
- "Custom",
- "HasStorage",
- "AccessControl",
- "ObjC",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "ToolbarMode",
- "printedName": "UIKit.UIToolbar.ToolbarMode",
- "usr": "s:So9UIToolbarC13ApptentiveKitE11ToolbarModeO"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIToolbar(cm)apptentiveMode",
- "mangledName": "$sSo9UIToolbarC13ApptentiveKitE14apptentiveModeAbCE07ToolbarE0OvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "ToolbarMode",
- "printedName": "UIKit.UIToolbar.ToolbarMode",
- "usr": "s:So9UIToolbarC13ApptentiveKitE11ToolbarModeO"
- }
- ],
- "declKind": "Accessor",
- "usr": "c:@CM@ApptentiveKit@@objc(cs)UIToolbar(cm)setApptentiveMode:",
- "mangledName": "$sSo9UIToolbarC13ApptentiveKitE14apptentiveModeAbCE07ToolbarE0OvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "ObjC",
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:So9UIToolbarC13ApptentiveKitE14apptentiveModeAbCE07ToolbarE0OvMZ",
- "mangledName": "$sSo9UIToolbarC13ApptentiveKitE14apptentiveModeAbCE07ToolbarE0OvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "declAttributes": [
- "Final"
- ],
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- }
- ],
- "declKind": "Class",
- "usr": "c:objc(cs)UIToolbar",
- "moduleName": "UIKit",
- "isOpen": true,
- "intro_iOS": "2.0",
- "objc_name": "UIToolbar",
- "declAttributes": [
- "Available",
- "ObjC",
- "NonSendable",
- "Custom",
- "Dynamic"
- ],
- "superclassUsr": "c:objc(cs)UIView",
- "isExternal": true,
- "inheritsConvenienceInitializers": true,
- "superclassNames": [
- "UIKit.UIView",
- "UIKit.UIResponder",
- "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": "Conformance",
- "name": "__DefaultCustomPlaygroundQuickLookable",
- "printedName": "__DefaultCustomPlaygroundQuickLookable",
- "usr": "s:s38__DefaultCustomPlaygroundQuickLookableP",
- "mangledName": "$ss38__DefaultCustomPlaygroundQuickLookableP"
- },
- {
- "kind": "Conformance",
- "name": "Sendable",
- "printedName": "Sendable",
- "usr": "s:s8SendableP",
- "mangledName": "$ss8SendableP"
- }
- ]
- },
- {
- "kind": "TypeDecl",
- "name": "CGFloat",
- "printedName": "CGFloat",
- "children": [
- {
- "kind": "Var",
- "name": "apptentiveButtonBorderWidth",
- "printedName": "apptentiveButtonBorderWidth",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "CGFloat",
- "printedName": "CoreGraphics.CGFloat",
- "usr": "s:14CoreFoundation7CGFloatV"
- }
- ],
- "declKind": "Var",
- "usr": "s:14CoreFoundation7CGFloatV13ApptentiveKitE27apptentiveButtonBorderWidthACvpZ",
- "mangledName": "$s12CoreGraphics7CGFloatV13ApptentiveKitE27apptentiveButtonBorderWidthACvpZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "declAttributes": [
- "HasInitialValue",
- "HasStorage",
- "AccessControl",
- "RawDocComment"
- ],
- "isFromExtension": true,
- "hasStorage": true,
- "accessors": [
- {
- "kind": "Accessor",
- "name": "Get",
- "printedName": "Get()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "CGFloat",
- "printedName": "CoreGraphics.CGFloat",
- "usr": "s:14CoreFoundation7CGFloatV"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:14CoreFoundation7CGFloatV13ApptentiveKitE27apptentiveButtonBorderWidthACvgZ",
- "mangledName": "$s12CoreGraphics7CGFloatV13ApptentiveKitE27apptentiveButtonBorderWidthACvgZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "isFromExtension": true,
- "accessorKind": "get"
- },
- {
- "kind": "Accessor",
- "name": "Set",
- "printedName": "Set()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- },
- {
- "kind": "TypeNominal",
- "name": "CGFloat",
- "printedName": "CoreGraphics.CGFloat",
- "usr": "s:14CoreFoundation7CGFloatV"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:14CoreFoundation7CGFloatV13ApptentiveKitE27apptentiveButtonBorderWidthACvsZ",
- "mangledName": "$s12CoreGraphics7CGFloatV13ApptentiveKitE27apptentiveButtonBorderWidthACvsZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "isFromExtension": true,
- "accessorKind": "set"
- },
- {
- "kind": "Accessor",
- "name": "Modify",
- "printedName": "Modify()",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Void",
- "printedName": "()"
- }
- ],
- "declKind": "Accessor",
- "usr": "s:14CoreFoundation7CGFloatV13ApptentiveKitE27apptentiveButtonBorderWidthACvMZ",
- "mangledName": "$s12CoreGraphics7CGFloatV13ApptentiveKitE27apptentiveButtonBorderWidthACvMZ",
- "moduleName": "ApptentiveKit",
- "static": true,
- "implicit": true,
- "isFromExtension": true,
- "accessorKind": "_modify"
- }
- ]
- }
- ],
- "declKind": "Struct",
- "usr": "s:14CoreFoundation7CGFloatV",
- "mangledName": "$s12CoreGraphics7CGFloatV",
- "moduleName": "CoreFoundation",
- "intro_Macosx": "10.0",
- "intro_iOS": "2.0",
- "intro_tvOS": "9.0",
- "intro_watchOS": "1.0",
- "declAttributes": [
- "Frozen",
- "OriginallyDefinedIn",
- "OriginallyDefinedIn",
- "OriginallyDefinedIn",
- "OriginallyDefinedIn",
- "OriginallyDefinedIn",
- "Available",
- "Available",
- "Available",
- "Available",
- "Available"
- ],
- "isExternal": true,
- "conformances": [
- {
- "kind": "Conformance",
- "name": "SignedNumeric",
- "printedName": "SignedNumeric",
- "usr": "s:s13SignedNumericP",
- "mangledName": "$ss13SignedNumericP"
- },
- {
- "kind": "Conformance",
- "name": "Numeric",
- "printedName": "Numeric",
- "children": [
- {
- "kind": "TypeWitness",
- "name": "Magnitude",
- "printedName": "Magnitude",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "CGFloat",
- "printedName": "CoreGraphics.CGFloat",
- "usr": "s:14CoreFoundation7CGFloatV"
- }
- ]
- }
- ],
- "usr": "s:Sj",
- "mangledName": "$sSj"
- },
- {
- "kind": "Conformance",
- "name": "AdditiveArithmetic",
- "printedName": "AdditiveArithmetic",
- "usr": "s:s18AdditiveArithmeticP",
- "mangledName": "$ss18AdditiveArithmeticP"
- },
- {
- "kind": "Conformance",
- "name": "ExpressibleByIntegerLiteral",
- "printedName": "ExpressibleByIntegerLiteral",
- "children": [
- {
- "kind": "TypeWitness",
- "name": "IntegerLiteralType",
- "printedName": "IntegerLiteralType",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ]
- }
- ],
- "usr": "s:s27ExpressibleByIntegerLiteralP",
- "mangledName": "$ss27ExpressibleByIntegerLiteralP"
- },
- {
- "kind": "Conformance",
- "name": "Equatable",
- "printedName": "Equatable",
- "usr": "s:SQ",
- "mangledName": "$sSQ"
- },
- {
- "kind": "Conformance",
- "name": "BinaryFloatingPoint",
- "printedName": "BinaryFloatingPoint",
- "children": [
- {
- "kind": "TypeWitness",
- "name": "RawSignificand",
- "printedName": "RawSignificand",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UInt",
- "printedName": "Swift.UInt",
- "usr": "s:Su"
- }
- ]
- },
- {
- "kind": "TypeWitness",
- "name": "RawExponent",
- "printedName": "RawExponent",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "UInt",
- "printedName": "Swift.UInt",
- "usr": "s:Su"
- }
- ]
- }
- ],
- "usr": "s:SB",
- "mangledName": "$sSB"
- },
- {
- "kind": "Conformance",
- "name": "ExpressibleByFloatLiteral",
- "printedName": "ExpressibleByFloatLiteral",
- "children": [
- {
- "kind": "TypeWitness",
- "name": "FloatLiteralType",
- "printedName": "FloatLiteralType",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Double",
- "printedName": "Swift.Double",
- "usr": "s:Sd"
- }
- ]
- }
- ],
- "usr": "s:s25ExpressibleByFloatLiteralP",
- "mangledName": "$ss25ExpressibleByFloatLiteralP"
- },
- {
- "kind": "Conformance",
- "name": "FloatingPoint",
- "printedName": "FloatingPoint",
- "children": [
- {
- "kind": "TypeWitness",
- "name": "Exponent",
- "printedName": "Exponent",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "Int",
- "printedName": "Swift.Int",
- "usr": "s:Si"
- }
- ]
- }
- ],
- "usr": "s:SF",
- "mangledName": "$sSF"
- },
- {
- "kind": "Conformance",
- "name": "CustomReflectable",
- "printedName": "CustomReflectable",
- "usr": "s:s17CustomReflectableP",
- "mangledName": "$ss17CustomReflectableP"
- },
- {
- "kind": "Conformance",
- "name": "CustomStringConvertible",
- "printedName": "CustomStringConvertible",
- "usr": "s:s23CustomStringConvertibleP",
- "mangledName": "$ss23CustomStringConvertibleP"
- },
- {
- "kind": "Conformance",
- "name": "Hashable",
- "printedName": "Hashable",
- "usr": "s:SH",
- "mangledName": "$sSH"
- },
- {
- "kind": "Conformance",
- "name": "Strideable",
- "printedName": "Strideable",
- "children": [
- {
- "kind": "TypeWitness",
- "name": "Stride",
- "printedName": "Stride",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "CGFloat",
- "printedName": "CoreGraphics.CGFloat",
- "usr": "s:14CoreFoundation7CGFloatV"
- }
- ]
- }
- ],
- "usr": "s:Sx",
- "mangledName": "$sSx"
- },
- {
- "kind": "Conformance",
- "name": "Comparable",
- "printedName": "Comparable",
- "usr": "s:SL",
- "mangledName": "$sSL"
- },
- {
- "kind": "Conformance",
- "name": "_CVarArgPassedAsDouble",
- "printedName": "_CVarArgPassedAsDouble",
- "usr": "s:s22_CVarArgPassedAsDoubleP",
- "mangledName": "$ss22_CVarArgPassedAsDoubleP"
- },
- {
- "kind": "Conformance",
- "name": "_CVarArgAligned",
- "printedName": "_CVarArgAligned",
- "usr": "s:s15_CVarArgAlignedP",
- "mangledName": "$ss15_CVarArgAlignedP"
- },
- {
- "kind": "Conformance",
- "name": "CVarArg",
- "printedName": "CVarArg",
- "usr": "s:s7CVarArgP",
- "mangledName": "$ss7CVarArgP"
- },
- {
- "kind": "Conformance",
- "name": "Decodable",
- "printedName": "Decodable",
- "usr": "s:Se",
- "mangledName": "$sSe"
- },
- {
- "kind": "Conformance",
- "name": "Encodable",
- "printedName": "Encodable",
- "usr": "s:SE",
- "mangledName": "$sSE"
- },
- {
- "kind": "Conformance",
- "name": "Sendable",
- "printedName": "Sendable",
- "usr": "s:s8SendableP",
- "mangledName": "$ss8SendableP"
- },
- {
- "kind": "Conformance",
- "name": "_FormatSpecifiable",
- "printedName": "_FormatSpecifiable",
- "children": [
- {
- "kind": "TypeWitness",
- "name": "_Arg",
- "printedName": "_Arg",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "CGFloat",
- "printedName": "CoreGraphics.CGFloat",
- "usr": "s:14CoreFoundation7CGFloatV"
- }
- ]
- }
- ],
- "usr": "s:10Foundation18_FormatSpecifiableP",
- "mangledName": "$s10Foundation18_FormatSpecifiableP"
- },
- {
- "kind": "Conformance",
- "name": "_ObjectiveCBridgeable",
- "printedName": "_ObjectiveCBridgeable",
- "children": [
- {
- "kind": "TypeWitness",
- "name": "_ObjectiveCType",
- "printedName": "_ObjectiveCType",
- "children": [
- {
- "kind": "TypeNominal",
- "name": "NSNumber",
- "printedName": "Foundation.NSNumber",
- "usr": "c:objc(cs)NSNumber"
- }
- ]
- }
- ],
- "usr": "s:s21_ObjectiveCBridgeableP",
- "mangledName": "$ss21_ObjectiveCBridgeableP"
- }
- ]
- }
- ],
- "json_format_version": 8
- },
- "ConstValues": [
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/AppleRatingDialog\/AppleRatingDialogController.swift",
- "kind": "BooleanLiteral",
- "offset": 448,
- "length": 5,
- "value": "false"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/AppleRatingDialog\/AppleRatingDialogController.swift",
- "kind": "IntegerLiteral",
- "offset": 492,
- "length": 1,
- "value": "1"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Backend.swift",
- "kind": "BooleanLiteral",
- "offset": 1632,
- "length": 4,
- "value": "true"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Backend.swift",
- "kind": "BooleanLiteral",
- "offset": 2252,
- "length": 4,
- "value": "true"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Backend.swift",
- "kind": "BooleanLiteral",
- "offset": 3135,
- "length": 5,
- "value": "false"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Backend.swift",
- "kind": "BooleanLiteral",
- "offset": 3302,
- "length": 4,
- "value": "true"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Backend.swift",
- "kind": "BooleanLiteral",
- "offset": 3562,
- "length": 5,
- "value": "false"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Backend.swift",
- "kind": "BooleanLiteral",
- "offset": 3718,
- "length": 5,
- "value": "false"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Backend.swift",
- "kind": "IntegerLiteral",
- "offset": 32120,
- "length": 2,
- "value": "60"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Backend.swift",
- "kind": "IntegerLiteral",
- "offset": 32192,
- "length": 3,
- "value": "600"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Backend.swift",
- "kind": "BooleanLiteral",
- "offset": 32267,
- "length": 4,
- "value": "true"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/EngagementManifest+Placeholder.swift",
- "kind": "StringLiteral",
- "offset": 292,
- "length": 25,
- "value": "\"message_center_fallback\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/EngagementManifest+Placeholder.swift",
- "kind": "StringLiteral",
- "offset": 365,
- "length": 22,
- "value": "\"MC Unavailable Title\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/EngagementManifest+Placeholder.swift",
- "kind": "StringLiteral",
- "offset": 429,
- "length": 33,
- "value": "\"Message Center is not Available\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/EngagementManifest+Placeholder.swift",
- "kind": "StringLiteral",
- "offset": 473,
- "length": 41,
- "value": "\"Title for note saying MC is unavailable\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/EngagementManifest+Placeholder.swift",
- "kind": "StringLiteral",
- "offset": 564,
- "length": 24,
- "value": "\"MC Unavailable Message\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/EngagementManifest+Placeholder.swift",
- "kind": "StringLiteral",
- "offset": 630,
- "length": 62,
- "value": "\"Make sure your device can access the internet and try again.\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/EngagementManifest+Placeholder.swift",
- "kind": "StringLiteral",
- "offset": 703,
- "length": 43,
- "value": "\"Message for note saying MC is unavailable\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/EngagementManifest+Placeholder.swift",
- "kind": "StringLiteral",
- "offset": 800,
- "length": 31,
- "value": "\"MC Unavailable Dismiss Button\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/EngagementManifest+Placeholder.swift",
- "kind": "StringLiteral",
- "offset": 873,
- "length": 4,
- "value": "\"OK\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/EngagementManifest+Placeholder.swift",
- "kind": "StringLiteral",
- "offset": 888,
- "length": 56,
- "value": "\"Dismiss button title for note saying MC is unavailable\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/EngagementManifest+Placeholder.swift",
- "kind": "StringLiteral",
- "offset": 1074,
- "length": 9,
- "value": "\"dismiss\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/EngagementManifest+Placeholder.swift",
- "kind": "Array",
- "offset": 1148,
- "length": 2,
- "value": "[]"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/EngagementManifest+Placeholder.swift",
- "kind": "StringLiteral",
- "offset": 1279,
- "length": 11,
- "value": "\"TextModal\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/EngagementManifest+Placeholder.swift",
- "kind": "Array",
- "offset": 1414,
- "length": 2,
- "value": "[]"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/TextModal\/TextModalConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 721,
- "length": 8,
- "value": "\"action\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/TextModal\/TextModalConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 761,
- "length": 9,
- "value": "\"invokes\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/TextModal\/TextModalConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 721,
- "length": 8,
- "value": "\"action\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/TextModal\/TextModalConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 761,
- "length": 9,
- "value": "\"invokes\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Dialog\/UI\/DialogViewController.swift",
- "kind": "Array",
- "offset": 450,
- "length": 2,
- "value": "[]"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Dialog\/UI\/DialogViewController.swift",
- "kind": "BooleanLiteral",
- "offset": 490,
- "length": 5,
- "value": "false"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Dialog\/UI\/DialogViewController.swift",
- "kind": "StringLiteral",
- "offset": 283,
- "length": 20,
- "value": "\"ApptentiveKit.DialogViewController\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Responses\/MessagesResponse.swift",
- "kind": "StringLiteral",
- "offset": 819,
- "length": 14,
- "value": "\"content_type\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Responses\/MessagesResponse.swift",
- "kind": "StringLiteral",
- "offset": 866,
- "length": 15,
- "value": "\"original_name\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Responses\/MessagesResponse.swift",
- "kind": "StringLiteral",
- "offset": 819,
- "length": 14,
- "value": "\"content_type\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Responses\/MessagesResponse.swift",
- "kind": "StringLiteral",
- "offset": 866,
- "length": 15,
- "value": "\"original_name\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Responses\/MessagesResponse.swift",
- "kind": "StringLiteral",
- "offset": 1147,
- "length": 15,
- "value": "\"profile_photo\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Responses\/MessagesResponse.swift",
- "kind": "StringLiteral",
- "offset": 1147,
- "length": 15,
- "value": "\"profile_photo\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Responses\/MessagesResponse.swift",
- "kind": "StringLiteral",
- "offset": 1294,
- "length": 9,
- "value": "\"inbound\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Responses\/MessagesResponse.swift",
- "kind": "StringLiteral",
- "offset": 1375,
- "length": 8,
- "value": "\"hidden\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Responses\/MessagesResponse.swift",
- "kind": "StringLiteral",
- "offset": 1415,
- "length": 11,
- "value": "\"automated\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Responses\/MessagesResponse.swift",
- "kind": "StringLiteral",
- "offset": 1455,
- "length": 12,
- "value": "\"created_at\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Responses\/MessagesResponse.swift",
- "kind": "StringLiteral",
- "offset": 1294,
- "length": 9,
- "value": "\"inbound\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Responses\/MessagesResponse.swift",
- "kind": "StringLiteral",
- "offset": 1375,
- "length": 8,
- "value": "\"hidden\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Responses\/MessagesResponse.swift",
- "kind": "StringLiteral",
- "offset": 1415,
- "length": 11,
- "value": "\"automated\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Responses\/MessagesResponse.swift",
- "kind": "StringLiteral",
- "offset": 1455,
- "length": 12,
- "value": "\"created_at\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Responses\/MessagesResponse.swift",
- "kind": "StringLiteral",
- "offset": 1572,
- "length": 11,
- "value": "\"ends_with\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Responses\/MessagesResponse.swift",
- "kind": "StringLiteral",
- "offset": 1607,
- "length": 10,
- "value": "\"has_more\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Responses\/MessagesResponse.swift",
- "kind": "StringLiteral",
- "offset": 1572,
- "length": 11,
- "value": "\"ends_with\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Responses\/MessagesResponse.swift",
- "kind": "StringLiteral",
- "offset": 1607,
- "length": 10,
- "value": "\"has_more\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/EngagementMetric.swift",
- "kind": "IntegerLiteral",
- "offset": 384,
- "length": 1,
- "value": "0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/EngagementMetric.swift",
- "kind": "IntegerLiteral",
- "offset": 407,
- "length": 1,
- "value": "0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/EngagementMetric.swift",
- "kind": "IntegerLiteral",
- "offset": 428,
- "length": 1,
- "value": "0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/EngagementMetric.swift",
- "kind": "IntegerLiteral",
- "offset": 870,
- "length": 1,
- "value": "0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/EngagementMetric.swift",
- "kind": "IntegerLiteral",
- "offset": 1000,
- "length": 1,
- "value": "0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/EngagementMetric.swift",
- "kind": "IntegerLiteral",
- "offset": 1126,
- "length": 1,
- "value": "0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Current\/CurrentLoader.swift",
- "kind": "StringLiteral",
- "offset": 242,
- "length": 16,
- "value": "\"Conversation.A\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Current\/CurrentLoader.swift",
- "kind": "StringLiteral",
- "offset": 293,
- "length": 16,
- "value": "\"PayloadQueue.A\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Current\/CurrentLoader.swift",
- "kind": "StringLiteral",
- "offset": 344,
- "length": 15,
- "value": "\"MessageList.A\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Current\/CurrentLoader.swift",
- "kind": "StringLiteral",
- "offset": 391,
- "length": 7,
- "value": "\"plist\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterViewModel+Message.swift",
- "kind": "StringLiteral",
- "offset": 4157,
- "length": 10,
- "value": "\"ApptentiveKit.Attachment\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyMultiLineCell.swift",
- "kind": "FloatLiteral",
- "offset": 583,
- "length": 3,
- "value": "1.0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyMultiLineCell.swift",
- "kind": "FloatLiteral",
- "offset": 667,
- "length": 3,
- "value": "6.0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyMultiLineCell.swift",
- "kind": "FloatLiteral",
- "offset": 1032,
- "length": 3,
- "value": "1.0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyMultiLineCell.swift",
- "kind": "FloatLiteral",
- "offset": 1043,
- "length": 4,
- "value": "5.0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyMultiLineCell.swift",
- "kind": "FloatLiteral",
- "offset": 1057,
- "length": 3,
- "value": "1.0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyMultiLineCell.swift",
- "kind": "FloatLiteral",
- "offset": 1069,
- "length": 4,
- "value": "5.0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyMultiLineCell.swift",
- "kind": "FloatLiteral",
- "offset": 1131,
- "length": 4,
- "value": "16.0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyMultiLineCell.swift",
- "kind": "FloatLiteral",
- "offset": 1192,
- "length": 4,
- "value": "16.0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyMultiLineCell.swift",
- "kind": "FloatLiteral",
- "offset": 1435,
- "length": 3,
- "value": "6.0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyMultiLineCell.swift",
- "kind": "FloatLiteral",
- "offset": 1446,
- "length": 3,
- "value": "2.0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyMultiLineCell.swift",
- "kind": "FloatLiteral",
- "offset": 1459,
- "length": 3,
- "value": "6.0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyMultiLineCell.swift",
- "kind": "FloatLiteral",
- "offset": 1471,
- "length": 3,
- "value": "2.0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyMultiLineCell.swift",
- "kind": "FloatLiteral",
- "offset": 1574,
- "length": 3,
- "value": "4.0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyMultiLineCell.swift",
- "kind": "FloatLiteral",
- "offset": 1585,
- "length": 3,
- "value": "2.0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyMultiLineCell.swift",
- "kind": "FloatLiteral",
- "offset": 1598,
- "length": 3,
- "value": "4.0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyMultiLineCell.swift",
- "kind": "FloatLiteral",
- "offset": 1610,
- "length": 3,
- "value": "2.0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyMultiLineCell.swift",
- "kind": "FloatLiteral",
- "offset": 1685,
- "length": 4,
- "value": "14.5"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyMultiLineCell.swift",
- "kind": "FloatLiteral",
- "offset": 1742,
- "length": 4,
- "value": "14.5"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyViewModel+ChoiceQuestion.swift",
- "kind": "StringLiteral",
- "offset": 5351,
- "length": 30,
- "value": "\"Should have a view model set\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyViewModel+ChoiceQuestion.swift",
- "kind": "StringLiteral",
- "offset": 5843,
- "length": 36,
- "value": "\"Should have a choice question set.\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyCount.swift",
- "kind": "BooleanLiteral",
- "offset": 277,
- "length": 4,
- "value": "true"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyCount.swift",
- "kind": "StringLiteral",
- "offset": 953,
- "length": 12,
- "value": "\"totalCount\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyCount.swift",
- "kind": "StringLiteral",
- "offset": 1000,
- "length": 14,
- "value": "\"versionCount\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyCount.swift",
- "kind": "StringLiteral",
- "offset": 1047,
- "length": 12,
- "value": "\"buildCount\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyCount.swift",
- "kind": "StringLiteral",
- "offset": 1093,
- "length": 13,
- "value": "\"lastInvoked\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyCount.swift",
- "kind": "StringLiteral",
- "offset": 199,
- "length": 11,
- "value": "\"ApptentiveKit.LegacyCount\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/ApptentiveLogger.swift",
- "kind": "IntegerLiteral",
- "offset": 678,
- "length": 1,
- "value": "0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/ApptentiveLogger.swift",
- "kind": "StringLiteral",
- "offset": 6911,
- "length": 16,
- "value": "\"com.apptentive\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/ApptentiveLogger.swift",
- "kind": "StringLiteral",
- "offset": 6931,
- "length": 13,
- "value": "\".apptentive\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/ApptentiveLogger.swift",
- "kind": "StringLiteral",
- "offset": 7230,
- "length": 13,
- "value": "\".engagement\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/ApptentiveLogger.swift",
- "kind": "StringLiteral",
- "offset": 7377,
- "length": 14,
- "value": "\".interaction\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/ApptentiveLogger.swift",
- "kind": "StringLiteral",
- "offset": 7517,
- "length": 10,
- "value": "\".network\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/ApptentiveLogger.swift",
- "kind": "StringLiteral",
- "offset": 7652,
- "length": 10,
- "value": "\".payload\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/ApptentiveLogger.swift",
- "kind": "StringLiteral",
- "offset": 7784,
- "length": 12,
- "value": "\".targeting\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/ApptentiveLogger.swift",
- "kind": "StringLiteral",
- "offset": 7922,
- "length": 11,
- "value": "\".messages\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/ApptentiveLogger.swift",
- "kind": "StringLiteral",
- "offset": 8065,
- "length": 14,
- "value": "\".attachments\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/ApptentiveLogger.swift",
- "kind": "IntegerLiteral",
- "offset": 8849,
- "length": 4,
- "value": "1"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/ApptentiveLogger.swift",
- "kind": "IntegerLiteral",
- "offset": 8863,
- "length": 6,
- "value": "2"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/ApptentiveLogger.swift",
- "kind": "IntegerLiteral",
- "offset": 8879,
- "length": 7,
- "value": "3"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/ApptentiveLogger.swift",
- "kind": "IntegerLiteral",
- "offset": 8896,
- "length": 5,
- "value": "4"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/ApptentiveLogger.swift",
- "kind": "IntegerLiteral",
- "offset": 8911,
- "length": 8,
- "value": "5"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/ApptentiveLogger.swift",
- "kind": "IntegerLiteral",
- "offset": 8929,
- "length": 5,
- "value": "6"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/ApptentiveLogger.swift",
- "kind": "IntegerLiteral",
- "offset": 8849,
- "length": 4,
- "value": "1"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/ApptentiveLogger.swift",
- "kind": "IntegerLiteral",
- "offset": 8863,
- "length": 6,
- "value": "2"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/ApptentiveLogger.swift",
- "kind": "IntegerLiteral",
- "offset": 8879,
- "length": 7,
- "value": "3"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/ApptentiveLogger.swift",
- "kind": "IntegerLiteral",
- "offset": 8896,
- "length": 5,
- "value": "4"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/ApptentiveLogger.swift",
- "kind": "IntegerLiteral",
- "offset": 8911,
- "length": 8,
- "value": "5"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/ApptentiveLogger.swift",
- "kind": "IntegerLiteral",
- "offset": 8929,
- "length": 5,
- "value": "6"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/ApptentiveLogger.swift",
- "kind": "IntegerLiteral",
- "offset": 8849,
- "length": 4,
- "value": "1"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/ApptentiveLogger.swift",
- "kind": "IntegerLiteral",
- "offset": 8863,
- "length": 6,
- "value": "2"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/ApptentiveLogger.swift",
- "kind": "IntegerLiteral",
- "offset": 8879,
- "length": 7,
- "value": "3"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/ApptentiveLogger.swift",
- "kind": "IntegerLiteral",
- "offset": 8896,
- "length": 5,
- "value": "4"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/ApptentiveLogger.swift",
- "kind": "IntegerLiteral",
- "offset": 8911,
- "length": 8,
- "value": "5"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/ApptentiveLogger.swift",
- "kind": "IntegerLiteral",
- "offset": 8929,
- "length": 5,
- "value": "6"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive.swift",
- "kind": "IntegerLiteral",
- "offset": 4430,
- "length": 1,
- "value": "0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive.swift",
- "kind": "BooleanLiteral",
- "offset": 17153,
- "length": 5,
- "value": "false"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive.swift",
- "kind": "StringLiteral",
- "offset": 223,
- "length": 10,
- "value": "\"ApptentiveKit.Apptentive\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyPerson.swift",
- "kind": "StringLiteral",
- "offset": 1227,
- "length": 6,
- "value": "\"name\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyPerson.swift",
- "kind": "StringLiteral",
- "offset": 1268,
- "length": 14,
- "value": "\"emailAddress\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyPerson.swift",
- "kind": "StringLiteral",
- "offset": 1316,
- "length": 13,
- "value": "\"mParticleId\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyPerson.swift",
- "kind": "StringLiteral",
- "offset": 1362,
- "length": 12,
- "value": "\"customData\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyPerson.swift",
- "kind": "StringLiteral",
- "offset": 201,
- "length": 12,
- "value": "\"ApptentiveKit.LegacyPerson\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyIndicator.swift",
- "kind": "Array",
- "offset": 263,
- "length": 2,
- "value": "[]"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyIndicator.swift",
- "kind": "IntegerLiteral",
- "offset": 306,
- "length": 1,
- "value": "0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyIndicator.swift",
- "kind": "IntegerLiteral",
- "offset": 526,
- "length": 1,
- "value": "0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyIndicator.swift",
- "kind": "Dictionary",
- "offset": 661,
- "length": 3,
- "value": "[]"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyIndicator.swift",
- "kind": "IntegerLiteral",
- "offset": 6922,
- "length": 1,
- "value": "0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveySingleLineCell.swift",
- "kind": "FloatLiteral",
- "offset": 355,
- "length": 3,
- "value": "1.0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveySingleLineCell.swift",
- "kind": "FloatLiteral",
- "offset": 439,
- "length": 3,
- "value": "6.0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveySingleLineCell.swift",
- "kind": "FloatLiteral",
- "offset": 1048,
- "length": 4,
- "value": "16.0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveySingleLineCell.swift",
- "kind": "FloatLiteral",
- "offset": 1109,
- "length": 4,
- "value": "16.0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveySingleLineCell.swift",
- "kind": "IntegerLiteral",
- "offset": 1165,
- "length": 1,
- "value": "0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveySingleLineCell.swift",
- "kind": "IntegerLiteral",
- "offset": 1221,
- "length": 1,
- "value": "0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveySingleLineCell.swift",
- "kind": "IntegerLiteral",
- "offset": 1277,
- "length": 2,
- "value": "44"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/ApptentiveAPI.swift",
- "kind": "BooleanLiteral",
- "offset": 8342,
- "length": 4,
- "value": "true"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/ApptentiveAPI.swift",
- "kind": "BooleanLiteral",
- "offset": 9521,
- "length": 4,
- "value": "true"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/ApptentiveAPI.swift",
- "kind": "StringLiteral",
- "offset": 14484,
- "length": 16,
- "value": "\"APPTENTIVE-KEY\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/ApptentiveAPI.swift",
- "kind": "StringLiteral",
- "offset": 14542,
- "length": 22,
- "value": "\"APPTENTIVE-SIGNATURE\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/ApptentiveAPI.swift",
- "kind": "StringLiteral",
- "offset": 14597,
- "length": 15,
- "value": "\"X-API-Version\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/ApptentiveAPI.swift",
- "kind": "StringLiteral",
- "offset": 14646,
- "length": 14,
- "value": "\"Content-Type\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/ApptentiveAPI.swift",
- "kind": "StringLiteral",
- "offset": 14696,
- "length": 15,
- "value": "\"Authorization\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/ApptentiveAPI.swift",
- "kind": "StringLiteral",
- "offset": 14747,
- "length": 16,
- "value": "\"Accept-Charset\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/ApptentiveAPI.swift",
- "kind": "StringLiteral",
- "offset": 14800,
- "length": 17,
- "value": "\"Accept-Language\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/ApptentiveAPI.swift",
- "kind": "StringLiteral",
- "offset": 14846,
- "length": 8,
- "value": "\"Accept\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadataItem.swift",
- "kind": "BooleanLiteral",
- "offset": 334,
- "length": 4,
- "value": "true"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadataItem.swift",
- "kind": "StringLiteral",
- "offset": 1248,
- "length": 7,
- "value": "\"state\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadataItem.swift",
- "kind": "StringLiteral",
- "offset": 1288,
- "length": 24,
- "value": "\"conversationIdentifier\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadataItem.swift",
- "kind": "StringLiteral",
- "offset": 1350,
- "length": 29,
- "value": "\"conversationLocalIdentifier\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadataItem.swift",
- "kind": "StringLiteral",
- "offset": 1415,
- "length": 10,
- "value": "\"fileName\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadataItem.swift",
- "kind": "StringLiteral",
- "offset": 1451,
- "length": 5,
- "value": "\"JWT\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadataItem.swift",
- "kind": "IntegerLiteral",
- "offset": 1523,
- "length": 1,
- "value": "0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadataItem.swift",
- "kind": "IntegerLiteral",
- "offset": 1538,
- "length": 16,
- "value": "1"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadataItem.swift",
- "kind": "IntegerLiteral",
- "offset": 1568,
- "length": 13,
- "value": "2"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadataItem.swift",
- "kind": "IntegerLiteral",
- "offset": 1595,
- "length": 9,
- "value": "3"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadataItem.swift",
- "kind": "IntegerLiteral",
- "offset": 1618,
- "length": 8,
- "value": "4"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadataItem.swift",
- "kind": "IntegerLiteral",
- "offset": 1640,
- "length": 9,
- "value": "5"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadataItem.swift",
- "kind": "IntegerLiteral",
- "offset": 1523,
- "length": 1,
- "value": "0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadataItem.swift",
- "kind": "IntegerLiteral",
- "offset": 1538,
- "length": 16,
- "value": "1"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadataItem.swift",
- "kind": "IntegerLiteral",
- "offset": 1568,
- "length": 13,
- "value": "2"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadataItem.swift",
- "kind": "IntegerLiteral",
- "offset": 1595,
- "length": 9,
- "value": "3"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadataItem.swift",
- "kind": "IntegerLiteral",
- "offset": 1618,
- "length": 8,
- "value": "4"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadataItem.swift",
- "kind": "IntegerLiteral",
- "offset": 1640,
- "length": 9,
- "value": "5"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadataItem.swift",
- "kind": "IntegerLiteral",
- "offset": 1523,
- "length": 1,
- "value": "0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadataItem.swift",
- "kind": "IntegerLiteral",
- "offset": 1538,
- "length": 16,
- "value": "1"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadataItem.swift",
- "kind": "IntegerLiteral",
- "offset": 1568,
- "length": 13,
- "value": "2"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadataItem.swift",
- "kind": "IntegerLiteral",
- "offset": 1595,
- "length": 9,
- "value": "3"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadataItem.swift",
- "kind": "IntegerLiteral",
- "offset": 1618,
- "length": 8,
- "value": "4"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadataItem.swift",
- "kind": "IntegerLiteral",
- "offset": 1640,
- "length": 9,
- "value": "5"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadataItem.swift",
- "kind": "StringLiteral",
- "offset": 237,
- "length": 30,
- "value": "\"ApptentiveKit.LegacyConversationMetadataItem\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/HTTPRetryPolicy.swift",
- "kind": "FloatLiteral",
- "offset": 366,
- "length": 3,
- "value": "5.0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/HTTPRetryPolicy.swift",
- "kind": "FloatLiteral",
- "offset": 392,
- "length": 3,
- "value": "2.0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/HTTPRetryPolicy.swift",
- "kind": "BooleanLiteral",
- "offset": 415,
- "length": 4,
- "value": "true"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Requests\/ConversationRequest.swift",
- "kind": "StringLiteral",
- "offset": 968,
- "length": 13,
- "value": "\"app_release\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Requests\/ConversationRequest.swift",
- "kind": "StringLiteral",
- "offset": 968,
- "length": 13,
- "value": "\"app_release\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Requests\/ConversationRequest.swift",
- "kind": "StringLiteral",
- "offset": 1371,
- "length": 11,
- "value": "\"device_id\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Requests\/ConversationRequest.swift",
- "kind": "StringLiteral",
- "offset": 1407,
- "length": 11,
- "value": "\"person_id\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Requests\/ConversationRequest.swift",
- "kind": "StringLiteral",
- "offset": 1371,
- "length": 11,
- "value": "\"device_id\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Requests\/ConversationRequest.swift",
- "kind": "StringLiteral",
- "offset": 1407,
- "length": 11,
- "value": "\"person_id\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyViewModel.swift",
- "kind": "BooleanLiteral",
- "offset": 5198,
- "length": 5,
- "value": "false"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyViewModel.swift",
- "kind": "BooleanLiteral",
- "offset": 5356,
- "length": 5,
- "value": "false"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyViewModel.swift",
- "kind": "StringLiteral",
- "offset": 10811,
- "length": 8,
- "value": "\"single\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyViewModel.swift",
- "kind": "StringLiteral",
- "offset": 10851,
- "length": 7,
- "value": "\"intro\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyViewModel.swift",
- "kind": "StringLiteral",
- "offset": 10892,
- "length": 9,
- "value": "\"success\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyViewModel.swift",
- "kind": "BooleanLiteral",
- "offset": 20194,
- "length": 5,
- "value": "false"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyViewModel.swift",
- "kind": "BooleanLiteral",
- "offset": 20250,
- "length": 5,
- "value": "false"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyViewModel.swift",
- "kind": "Array",
- "offset": 21979,
- "length": 2,
- "value": "[]"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/MessageList.swift",
- "kind": "BooleanLiteral",
- "offset": 395,
- "length": 5,
- "value": "false"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/MessageList.swift",
- "kind": "Array",
- "offset": 1485,
- "length": 2,
- "value": "[]"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/MessageList.swift",
- "kind": "BooleanLiteral",
- "offset": 1577,
- "length": 5,
- "value": "false"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/MessageList.swift",
- "kind": "BooleanLiteral",
- "offset": 1601,
- "length": 5,
- "value": "false"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift",
- "kind": "StringLiteral",
- "offset": 3968,
- "length": 22,
- "value": "\"cf_bundle_identifier\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift",
- "kind": "StringLiteral",
- "offset": 4014,
- "length": 32,
- "value": "\"cf_bundle_short_version_string\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift",
- "kind": "StringLiteral",
- "offset": 4068,
- "length": 19,
- "value": "\"cf_bundle_version\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift",
- "kind": "StringLiteral",
- "offset": 4119,
- "length": 19,
- "value": "\"app_store_receipt\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift",
- "kind": "StringLiteral",
- "offset": 4167,
- "length": 7,
- "value": "\"debug\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift",
- "kind": "StringLiteral",
- "offset": 4209,
- "length": 19,
- "value": "\"overriding_styles\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift",
- "kind": "StringLiteral",
- "offset": 4261,
- "length": 19,
- "value": "\"deployment_target\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift",
- "kind": "StringLiteral",
- "offset": 4305,
- "length": 13,
- "value": "\"dt_compiler\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift",
- "kind": "StringLiteral",
- "offset": 4348,
- "length": 19,
- "value": "\"dt_platform_build\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift",
- "kind": "StringLiteral",
- "offset": 4396,
- "length": 18,
- "value": "\"dt_platform_name\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift",
- "kind": "StringLiteral",
- "offset": 4446,
- "length": 21,
- "value": "\"dt_platform_version\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift",
- "kind": "StringLiteral",
- "offset": 4492,
- "length": 14,
- "value": "\"dt_sdk_build\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift",
- "kind": "StringLiteral",
- "offset": 4530,
- "length": 13,
- "value": "\"dt_sdk_name\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift",
- "kind": "StringLiteral",
- "offset": 4565,
- "length": 10,
- "value": "\"dt_xcode\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift",
- "kind": "StringLiteral",
- "offset": 4602,
- "length": 16,
- "value": "\"dt_xcode_build\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift",
- "kind": "StringLiteral",
- "offset": 4645,
- "length": 13,
- "value": "\"sdk_version\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift",
- "kind": "StringLiteral",
- "offset": 4697,
- "length": 26,
- "value": "\"sdk_programming_language\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift",
- "kind": "StringLiteral",
- "offset": 4753,
- "length": 17,
- "value": "\"sdk_author_name\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift",
- "kind": "StringLiteral",
- "offset": 4798,
- "length": 14,
- "value": "\"sdk_platform\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift",
- "kind": "StringLiteral",
- "offset": 4851,
- "length": 26,
- "value": "\"sdk_distribution_version\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift",
- "kind": "StringLiteral",
- "offset": 4913,
- "length": 18,
- "value": "\"sdk_distribution\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift",
- "kind": "StringLiteral",
- "offset": 3968,
- "length": 22,
- "value": "\"cf_bundle_identifier\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift",
- "kind": "StringLiteral",
- "offset": 4014,
- "length": 32,
- "value": "\"cf_bundle_short_version_string\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift",
- "kind": "StringLiteral",
- "offset": 4068,
- "length": 19,
- "value": "\"cf_bundle_version\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift",
- "kind": "StringLiteral",
- "offset": 4119,
- "length": 19,
- "value": "\"app_store_receipt\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift",
- "kind": "StringLiteral",
- "offset": 4167,
- "length": 7,
- "value": "\"debug\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift",
- "kind": "StringLiteral",
- "offset": 4209,
- "length": 19,
- "value": "\"overriding_styles\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift",
- "kind": "StringLiteral",
- "offset": 4261,
- "length": 19,
- "value": "\"deployment_target\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift",
- "kind": "StringLiteral",
- "offset": 4305,
- "length": 13,
- "value": "\"dt_compiler\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift",
- "kind": "StringLiteral",
- "offset": 4348,
- "length": 19,
- "value": "\"dt_platform_build\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift",
- "kind": "StringLiteral",
- "offset": 4396,
- "length": 18,
- "value": "\"dt_platform_name\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift",
- "kind": "StringLiteral",
- "offset": 4446,
- "length": 21,
- "value": "\"dt_platform_version\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift",
- "kind": "StringLiteral",
- "offset": 4492,
- "length": 14,
- "value": "\"dt_sdk_build\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift",
- "kind": "StringLiteral",
- "offset": 4530,
- "length": 13,
- "value": "\"dt_sdk_name\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift",
- "kind": "StringLiteral",
- "offset": 4565,
- "length": 10,
- "value": "\"dt_xcode\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift",
- "kind": "StringLiteral",
- "offset": 4602,
- "length": 16,
- "value": "\"dt_xcode_build\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift",
- "kind": "StringLiteral",
- "offset": 4645,
- "length": 13,
- "value": "\"sdk_version\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift",
- "kind": "StringLiteral",
- "offset": 4697,
- "length": 26,
- "value": "\"sdk_programming_language\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift",
- "kind": "StringLiteral",
- "offset": 4753,
- "length": 17,
- "value": "\"sdk_author_name\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift",
- "kind": "StringLiteral",
- "offset": 4798,
- "length": 14,
- "value": "\"sdk_platform\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift",
- "kind": "StringLiteral",
- "offset": 4851,
- "length": 26,
- "value": "\"sdk_distribution_version\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift",
- "kind": "StringLiteral",
- "offset": 4913,
- "length": 18,
- "value": "\"sdk_distribution\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift",
- "kind": "StringLiteral",
- "offset": 5093,
- "length": 13,
- "value": "\"has_receipt\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/AppReleaseContent.swift",
- "kind": "StringLiteral",
- "offset": 5093,
- "length": 13,
- "value": "\"has_receipt\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyViewController.swift",
- "kind": "FloatLiteral",
- "offset": 369,
- "length": 4,
- "value": "0.30"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyViewController.swift",
- "kind": "IntegerLiteral",
- "offset": 541,
- "length": 1,
- "value": "1"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyViewController.swift",
- "kind": "IntegerLiteral",
- "offset": 809,
- "length": 1,
- "value": "1"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyViewController.swift",
- "kind": "FloatLiteral",
- "offset": 3051,
- "length": 4,
- "value": "0.33"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyViewController.swift",
- "kind": "BooleanLiteral",
- "offset": 3154,
- "length": 4,
- "value": "true"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyViewController.swift",
- "kind": "BooleanLiteral",
- "offset": 3202,
- "length": 5,
- "value": "false"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyViewController.swift",
- "kind": "BooleanLiteral",
- "offset": 32176,
- "length": 5,
- "value": "false"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyViewController.swift",
- "kind": "BooleanLiteral",
- "offset": 39805,
- "length": 5,
- "value": "false"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyViewController.swift",
- "kind": "StringLiteral",
- "offset": 180,
- "length": 20,
- "value": "\"ApptentiveKit.SurveyViewController\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyViewController.swift",
- "kind": "StringLiteral",
- "offset": 180,
- "length": 20,
- "value": "\"ApptentiveKit.SurveyViewController\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyViewModel+Page.swift",
- "kind": "Array",
- "offset": 1518,
- "length": 2,
- "value": "[]"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyViewModel+Page.swift",
- "kind": "StringLiteral",
- "offset": 1938,
- "length": 9,
- "value": "\"invalid\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyViewModel+Page.swift",
- "kind": "StringLiteral",
- "offset": 1962,
- "length": 24,
- "value": "\"An error has occurred.\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyViewModel+Page.swift",
- "kind": "StringLiteral",
- "offset": 2008,
- "length": 7,
- "value": "\"Close\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyViewModel+Page.swift",
- "kind": "Array",
- "offset": 2031,
- "length": 2,
- "value": "[]"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift",
- "kind": "StringLiteral",
- "offset": 4266,
- "length": 6,
- "value": "\"$and\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift",
- "kind": "StringLiteral",
- "offset": 4375,
- "length": 5,
- "value": "\"$or\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift",
- "kind": "StringLiteral",
- "offset": 4482,
- "length": 6,
- "value": "\"$not\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift",
- "kind": "StringLiteral",
- "offset": 4266,
- "length": 6,
- "value": "\"$and\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift",
- "kind": "StringLiteral",
- "offset": 4375,
- "length": 5,
- "value": "\"$or\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift",
- "kind": "StringLiteral",
- "offset": 4482,
- "length": 6,
- "value": "\"$not\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift",
- "kind": "StringLiteral",
- "offset": 5479,
- "length": 9,
- "value": "\"$exists\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift",
- "kind": "StringLiteral",
- "offset": 5510,
- "length": 5,
- "value": "\"$ne\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift",
- "kind": "StringLiteral",
- "offset": 5534,
- "length": 5,
- "value": "\"$eq\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift",
- "kind": "StringLiteral",
- "offset": 5567,
- "length": 6,
- "value": "\"$lte\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift",
- "kind": "StringLiteral",
- "offset": 5594,
- "length": 5,
- "value": "\"$lt\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift",
- "kind": "StringLiteral",
- "offset": 5623,
- "length": 5,
- "value": "\"$gt\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift",
- "kind": "StringLiteral",
- "offset": 5659,
- "length": 6,
- "value": "\"$gte\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift",
- "kind": "StringLiteral",
- "offset": 5688,
- "length": 14,
- "value": "\"$starts_with\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift",
- "kind": "StringLiteral",
- "offset": 5723,
- "length": 12,
- "value": "\"$ends_with\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift",
- "kind": "StringLiteral",
- "offset": 5756,
- "length": 11,
- "value": "\"$contains\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift",
- "kind": "StringLiteral",
- "offset": 5786,
- "length": 9,
- "value": "\"$before\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift",
- "kind": "StringLiteral",
- "offset": 5813,
- "length": 8,
- "value": "\"$after\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift",
- "kind": "StringLiteral",
- "offset": 5479,
- "length": 9,
- "value": "\"$exists\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift",
- "kind": "StringLiteral",
- "offset": 5510,
- "length": 5,
- "value": "\"$ne\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift",
- "kind": "StringLiteral",
- "offset": 5534,
- "length": 5,
- "value": "\"$eq\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift",
- "kind": "StringLiteral",
- "offset": 5567,
- "length": 6,
- "value": "\"$lte\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift",
- "kind": "StringLiteral",
- "offset": 5594,
- "length": 5,
- "value": "\"$lt\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift",
- "kind": "StringLiteral",
- "offset": 5623,
- "length": 5,
- "value": "\"$gt\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift",
- "kind": "StringLiteral",
- "offset": 5659,
- "length": 6,
- "value": "\"$gte\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift",
- "kind": "StringLiteral",
- "offset": 5688,
- "length": 14,
- "value": "\"$starts_with\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift",
- "kind": "StringLiteral",
- "offset": 5723,
- "length": 12,
- "value": "\"$ends_with\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift",
- "kind": "StringLiteral",
- "offset": 5756,
- "length": 11,
- "value": "\"$contains\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift",
- "kind": "StringLiteral",
- "offset": 5786,
- "length": 9,
- "value": "\"$before\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Targeting\/Criteria.swift",
- "kind": "StringLiteral",
- "offset": 5813,
- "length": 8,
- "value": "\"$after\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterViewModel.swift",
- "kind": "IntegerLiteral",
- "offset": 2335,
- "length": 1,
- "value": "4"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterViewModel.swift",
- "kind": "IntegerLiteral",
- "offset": 4177,
- "length": 2,
- "value": "44"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterViewModel.swift",
- "kind": "IntegerLiteral",
- "offset": 4189,
- "length": 2,
- "value": "44"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterViewModel.swift",
- "kind": "StringLiteral",
- "offset": 34268,
- "length": 17,
- "value": "\"SELF MATCHES %@\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterViewModel.swift",
- "kind": "StringLiteral",
- "offset": 34287,
- "length": 51,
- "value": "\"[A-Z0-9a-z._%+-]+@[A-Za-z0-9.-]+\\.[A-Za-z]{2,64}\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterViewModel.swift",
- "kind": "StringLiteral",
- "offset": 34824,
- "length": 12,
- "value": "\"message_id\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterViewModel.swift",
- "kind": "StringLiteral",
- "offset": 34824,
- "length": 12,
- "value": "\"message_id\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversation.swift",
- "kind": "BooleanLiteral",
- "offset": 305,
- "length": 4,
- "value": "true"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversation.swift",
- "kind": "StringLiteral",
- "offset": 1303,
- "length": 7,
- "value": "\"token\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversation.swift",
- "kind": "StringLiteral",
- "offset": 1343,
- "length": 12,
- "value": "\"identifier\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversation.swift",
- "kind": "StringLiteral",
- "offset": 1388,
- "length": 12,
- "value": "\"engagement\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversation.swift",
- "kind": "StringLiteral",
- "offset": 1429,
- "length": 8,
- "value": "\"person\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversation.swift",
- "kind": "StringLiteral",
- "offset": 1466,
- "length": 8,
- "value": "\"device\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversation.swift",
- "kind": "StringLiteral",
- "offset": 1503,
- "length": 8,
- "value": "\"random\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversation.swift",
- "kind": "StringLiteral",
- "offset": 220,
- "length": 18,
- "value": "\"ApptentiveKit.LegacyConversation\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyViewModel+Question.swift",
- "kind": "StringLiteral",
- "offset": 1770,
- "length": 30,
- "value": "\"Should have a view model set\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyViewModel+Question.swift",
- "kind": "BooleanLiteral",
- "offset": 1559,
- "length": 5,
- "value": "false"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyOtherChoiceCell.swift",
- "kind": "IntegerLiteral",
- "offset": 1669,
- "length": 1,
- "value": "1"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyOtherChoiceCell.swift",
- "kind": "IntegerLiteral",
- "offset": 1673,
- "length": 1,
- "value": "0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/Default UI\/SurveyOtherChoiceCell.swift",
- "kind": "BooleanLiteral",
- "offset": 1523,
- "length": 5,
- "value": "false"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Event.swift",
- "kind": "StringLiteral",
- "offset": 3952,
- "length": 5,
- "value": "\"#%\/\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "Array",
- "offset": 4738,
- "length": 2,
- "value": "[]"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "BooleanLiteral",
- "offset": 7169,
- "length": 5,
- "value": "false"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 11908,
- "length": 13,
- "value": "\"app_release\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 11908,
- "length": 13,
- "value": "\"app_release\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 13855,
- "length": 19,
- "value": "\"client_created_at\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 13908,
- "length": 30,
- "value": "\"client_created_at_utc_offset\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 13964,
- "length": 12,
- "value": "\"session_id\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 14027,
- "length": 13,
- "value": "\"custom_data\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 14166,
- "length": 16,
- "value": "\"interaction_id\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 14207,
- "length": 6,
- "value": "\"data\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 14357,
- "length": 7,
- "value": "\"email\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 14410,
- "length": 14,
- "value": "\"mparticle_id\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 14489,
- "length": 9,
- "value": "\"os_name\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 14524,
- "length": 12,
- "value": "\"os_version\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 14560,
- "length": 10,
- "value": "\"os_build\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 14649,
- "length": 23,
- "value": "\"content_size_category\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 14698,
- "length": 12,
- "value": "\"locale_raw\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 14744,
- "length": 21,
- "value": "\"locale_country_code\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 14800,
- "length": 22,
- "value": "\"locale_language_code\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 14848,
- "length": 12,
- "value": "\"utc_offset\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 14901,
- "length": 20,
- "value": "\"integration_config\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 14959,
- "length": 15,
- "value": "\"advertiser_id\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 15054,
- "length": 22,
- "value": "\"cf_bundle_identifier\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 15100,
- "length": 32,
- "value": "\"cf_bundle_short_version_string\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 15154,
- "length": 19,
- "value": "\"cf_bundle_version\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 15205,
- "length": 19,
- "value": "\"app_store_receipt\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 15253,
- "length": 7,
- "value": "\"debug\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 15295,
- "length": 19,
- "value": "\"overriding_styles\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 15347,
- "length": 19,
- "value": "\"deployment_target\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 15391,
- "length": 13,
- "value": "\"dt_compiler\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 15434,
- "length": 19,
- "value": "\"dt_platform_build\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 15482,
- "length": 18,
- "value": "\"dt_platform_name\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 15532,
- "length": 21,
- "value": "\"dt_platform_version\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 15578,
- "length": 14,
- "value": "\"dt_sdk_build\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 15616,
- "length": 13,
- "value": "\"dt_sdk_name\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 15651,
- "length": 10,
- "value": "\"dt_xcode\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 15688,
- "length": 16,
- "value": "\"dt_xcode_build\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 15731,
- "length": 13,
- "value": "\"sdk_version\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 15783,
- "length": 26,
- "value": "\"sdk_programming_language\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 15839,
- "length": 17,
- "value": "\"sdk_author_name\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 15884,
- "length": 14,
- "value": "\"sdk_platform\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 15937,
- "length": 26,
- "value": "\"sdk_distribution_version\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 15999,
- "length": 18,
- "value": "\"sdk_distribution\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 16088,
- "length": 11,
- "value": "\"automated\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 16124,
- "length": 8,
- "value": "\"hidden\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 13855,
- "length": 19,
- "value": "\"client_created_at\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 13908,
- "length": 30,
- "value": "\"client_created_at_utc_offset\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 13964,
- "length": 12,
- "value": "\"session_id\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 14027,
- "length": 13,
- "value": "\"custom_data\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 14166,
- "length": 16,
- "value": "\"interaction_id\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 14207,
- "length": 6,
- "value": "\"data\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 14357,
- "length": 7,
- "value": "\"email\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 14410,
- "length": 14,
- "value": "\"mparticle_id\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 14489,
- "length": 9,
- "value": "\"os_name\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 14524,
- "length": 12,
- "value": "\"os_version\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 14560,
- "length": 10,
- "value": "\"os_build\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 14649,
- "length": 23,
- "value": "\"content_size_category\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 14698,
- "length": 12,
- "value": "\"locale_raw\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 14744,
- "length": 21,
- "value": "\"locale_country_code\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 14800,
- "length": 22,
- "value": "\"locale_language_code\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 14848,
- "length": 12,
- "value": "\"utc_offset\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 14901,
- "length": 20,
- "value": "\"integration_config\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 14959,
- "length": 15,
- "value": "\"advertiser_id\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 15054,
- "length": 22,
- "value": "\"cf_bundle_identifier\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 15100,
- "length": 32,
- "value": "\"cf_bundle_short_version_string\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 15154,
- "length": 19,
- "value": "\"cf_bundle_version\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 15205,
- "length": 19,
- "value": "\"app_store_receipt\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 15253,
- "length": 7,
- "value": "\"debug\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 15295,
- "length": 19,
- "value": "\"overriding_styles\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 15347,
- "length": 19,
- "value": "\"deployment_target\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 15391,
- "length": 13,
- "value": "\"dt_compiler\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 15434,
- "length": 19,
- "value": "\"dt_platform_build\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 15482,
- "length": 18,
- "value": "\"dt_platform_name\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 15532,
- "length": 21,
- "value": "\"dt_platform_version\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 15578,
- "length": 14,
- "value": "\"dt_sdk_build\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 15616,
- "length": 13,
- "value": "\"dt_sdk_name\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 15651,
- "length": 10,
- "value": "\"dt_xcode\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 15688,
- "length": 16,
- "value": "\"dt_xcode_build\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 15731,
- "length": 13,
- "value": "\"sdk_version\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 15783,
- "length": 26,
- "value": "\"sdk_programming_language\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 15839,
- "length": 17,
- "value": "\"sdk_author_name\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 15884,
- "length": 14,
- "value": "\"sdk_platform\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 15937,
- "length": 26,
- "value": "\"sdk_distribution_version\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 15999,
- "length": 18,
- "value": "\"sdk_distribution\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 16088,
- "length": 11,
- "value": "\"automated\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 16124,
- "length": 8,
- "value": "\"hidden\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/Payload.swift",
- "kind": "StringLiteral",
- "offset": 16384,
- "length": 8,
- "value": "\"file[]\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Configuration.swift",
- "kind": "StringLiteral",
- "offset": 595,
- "length": 22,
- "value": "\"support_display_name\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Configuration.swift",
- "kind": "StringLiteral",
- "offset": 646,
- "length": 23,
- "value": "\"support_display_email\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Configuration.swift",
- "kind": "StringLiteral",
- "offset": 701,
- "length": 19,
- "value": "\"support_image_url\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Configuration.swift",
- "kind": "StringLiteral",
- "offset": 749,
- "length": 15,
- "value": "\"hide_branding\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Configuration.swift",
- "kind": "StringLiteral",
- "offset": 794,
- "length": 16,
- "value": "\"message_center\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Configuration.swift",
- "kind": "StringLiteral",
- "offset": 846,
- "length": 24,
- "value": "\"message_center_enabled\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Configuration.swift",
- "kind": "StringLiteral",
- "offset": 900,
- "length": 17,
- "value": "\"metrics_enabled\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Configuration.swift",
- "kind": "StringLiteral",
- "offset": 957,
- "length": 23,
- "value": "\"apptimize_integration\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Configuration.swift",
- "kind": "StringLiteral",
- "offset": 1017,
- "length": 15,
- "value": "\"collect_ad_id\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Configuration.swift",
- "kind": "StringLiteral",
- "offset": 595,
- "length": 22,
- "value": "\"support_display_name\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Configuration.swift",
- "kind": "StringLiteral",
- "offset": 646,
- "length": 23,
- "value": "\"support_display_email\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Configuration.swift",
- "kind": "StringLiteral",
- "offset": 701,
- "length": 19,
- "value": "\"support_image_url\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Configuration.swift",
- "kind": "StringLiteral",
- "offset": 749,
- "length": 15,
- "value": "\"hide_branding\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Configuration.swift",
- "kind": "StringLiteral",
- "offset": 794,
- "length": 16,
- "value": "\"message_center\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Configuration.swift",
- "kind": "StringLiteral",
- "offset": 846,
- "length": 24,
- "value": "\"message_center_enabled\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Configuration.swift",
- "kind": "StringLiteral",
- "offset": 900,
- "length": 17,
- "value": "\"metrics_enabled\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Configuration.swift",
- "kind": "StringLiteral",
- "offset": 957,
- "length": 23,
- "value": "\"apptimize_integration\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Configuration.swift",
- "kind": "StringLiteral",
- "offset": 1017,
- "length": 15,
- "value": "\"collect_ad_id\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Configuration.swift",
- "kind": "StringLiteral",
- "offset": 1402,
- "length": 9,
- "value": "\"fg_poll\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Configuration.swift",
- "kind": "StringLiteral",
- "offset": 1457,
- "length": 9,
- "value": "\"bg_poll\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Configuration.swift",
- "kind": "StringLiteral",
- "offset": 1499,
- "length": 16,
- "value": "\"email_required\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Configuration.swift",
- "kind": "StringLiteral",
- "offset": 1553,
- "length": 20,
- "value": "\"notification_popup\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Configuration.swift",
- "kind": "StringLiteral",
- "offset": 1402,
- "length": 9,
- "value": "\"fg_poll\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Configuration.swift",
- "kind": "StringLiteral",
- "offset": 1457,
- "length": 9,
- "value": "\"bg_poll\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Configuration.swift",
- "kind": "StringLiteral",
- "offset": 1499,
- "length": 16,
- "value": "\"email_required\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Configuration.swift",
- "kind": "StringLiteral",
- "offset": 1553,
- "length": 20,
- "value": "\"notification_popup\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Configuration.swift",
- "kind": "StringLiteral",
- "offset": 1746,
- "length": 9,
- "value": "\"enabled\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Configuration.swift",
- "kind": "StringLiteral",
- "offset": 1746,
- "length": 9,
- "value": "\"enabled\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyV11Configuration.swift",
- "kind": "StringLiteral",
- "offset": 1293,
- "length": 13,
- "value": "\"submit_text\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyV11Configuration.swift",
- "kind": "StringLiteral",
- "offset": 1338,
- "length": 18,
- "value": "\"validation_error\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyV11Configuration.swift",
- "kind": "StringLiteral",
- "offset": 1385,
- "length": 13,
- "value": "\"description\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyV11Configuration.swift",
- "kind": "StringLiteral",
- "offset": 1430,
- "length": 17,
- "value": "\"success_message\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyV11Configuration.swift",
- "kind": "StringLiteral",
- "offset": 1482,
- "length": 22,
- "value": "\"show_success_message\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyV11Configuration.swift",
- "kind": "StringLiteral",
- "offset": 1533,
- "length": 15,
- "value": "\"required_text\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyV11Configuration.swift",
- "kind": "StringLiteral",
- "offset": 1609,
- "length": 21,
- "value": "\"close_confirm_title\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyV11Configuration.swift",
- "kind": "StringLiteral",
- "offset": 1671,
- "length": 23,
- "value": "\"close_confirm_message\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyV11Configuration.swift",
- "kind": "StringLiteral",
- "offset": 1743,
- "length": 26,
- "value": "\"close_confirm_close_text\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyV11Configuration.swift",
- "kind": "StringLiteral",
- "offset": 1817,
- "length": 25,
- "value": "\"close_confirm_back_text\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyV11Configuration.swift",
- "kind": "StringLiteral",
- "offset": 1877,
- "length": 22,
- "value": "\"terms_and_conditions\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyV11Configuration.swift",
- "kind": "StringLiteral",
- "offset": 1293,
- "length": 13,
- "value": "\"submit_text\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyV11Configuration.swift",
- "kind": "StringLiteral",
- "offset": 1338,
- "length": 18,
- "value": "\"validation_error\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyV11Configuration.swift",
- "kind": "StringLiteral",
- "offset": 1385,
- "length": 13,
- "value": "\"description\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyV11Configuration.swift",
- "kind": "StringLiteral",
- "offset": 1430,
- "length": 17,
- "value": "\"success_message\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyV11Configuration.swift",
- "kind": "StringLiteral",
- "offset": 1482,
- "length": 22,
- "value": "\"show_success_message\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyV11Configuration.swift",
- "kind": "StringLiteral",
- "offset": 1533,
- "length": 15,
- "value": "\"required_text\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyV11Configuration.swift",
- "kind": "StringLiteral",
- "offset": 1609,
- "length": 21,
- "value": "\"close_confirm_title\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyV11Configuration.swift",
- "kind": "StringLiteral",
- "offset": 1671,
- "length": 23,
- "value": "\"close_confirm_message\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyV11Configuration.swift",
- "kind": "StringLiteral",
- "offset": 1743,
- "length": 26,
- "value": "\"close_confirm_close_text\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyV11Configuration.swift",
- "kind": "StringLiteral",
- "offset": 1817,
- "length": 25,
- "value": "\"close_confirm_back_text\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyV11Configuration.swift",
- "kind": "StringLiteral",
- "offset": 1877,
- "length": 22,
- "value": "\"terms_and_conditions\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/AppRelease.swift",
- "kind": "StringLiteral",
- "offset": 350,
- "length": 5,
- "value": "\"ios\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/AppRelease.swift",
- "kind": "IntegerLiteral",
- "offset": 622,
- "length": 1,
- "value": "0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/AppRelease.swift",
- "kind": "IntegerLiteral",
- "offset": 638,
- "length": 1,
- "value": "0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/AppRelease.swift",
- "kind": "BooleanLiteral",
- "offset": 677,
- "length": 4,
- "value": "true"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/AppRelease.swift",
- "kind": "IntegerLiteral",
- "offset": 883,
- "length": 1,
- "value": "0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/AppRelease.swift",
- "kind": "IntegerLiteral",
- "offset": 899,
- "length": 1,
- "value": "0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/AppRelease.swift",
- "kind": "BooleanLiteral",
- "offset": 936,
- "length": 4,
- "value": "true"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/AppRelease.swift",
- "kind": "BooleanLiteral",
- "offset": 1091,
- "length": 5,
- "value": "false"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/AppRelease.swift",
- "kind": "BooleanLiteral",
- "offset": 1176,
- "length": 5,
- "value": "false"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/AppRelease.swift",
- "kind": "BooleanLiteral",
- "offset": 1288,
- "length": 5,
- "value": "false"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/AppRelease.swift",
- "kind": "BooleanLiteral",
- "offset": 2200,
- "length": 5,
- "value": "false"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/AppRelease.swift",
- "kind": "BooleanLiteral",
- "offset": 2347,
- "length": 5,
- "value": "false"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+NotificationName.swift",
- "kind": "StringLiteral",
- "offset": 266,
- "length": 32,
- "value": "\"com.apptentive.payloadEnqueued\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+NotificationName.swift",
- "kind": "StringLiteral",
- "offset": 350,
- "length": 31,
- "value": "\"com.apptentive.payloadSending\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+NotificationName.swift",
- "kind": "StringLiteral",
- "offset": 430,
- "length": 28,
- "value": "\"com.apptentive.payloadSent\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+NotificationName.swift",
- "kind": "StringLiteral",
- "offset": 509,
- "length": 30,
- "value": "\"com.apptentive.payloadFailed\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+NotificationName.swift",
- "kind": "StringLiteral",
- "offset": 704,
- "length": 39,
- "value": "\"com.apptentive.apptentiveEventEngaged\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/Default UI\/MessageCenterViewController.swift",
- "kind": "StringLiteral",
- "offset": 812,
- "length": 21,
- "value": "\"MessageCellReceived\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/Default UI\/MessageCenterViewController.swift",
- "kind": "StringLiteral",
- "offset": 862,
- "length": 17,
- "value": "\"MessageSentCell\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/Default UI\/MessageCenterViewController.swift",
- "kind": "StringLiteral",
- "offset": 913,
- "length": 22,
- "value": "\"AutomatedMessageCell\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/Default UI\/MessageCenterViewController.swift",
- "kind": "BooleanLiteral",
- "offset": 24568,
- "length": 5,
- "value": "false"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/Default UI\/MessageCenterViewController.swift",
- "kind": "IntegerLiteral",
- "offset": 24669,
- "length": 6,
- "value": "0xFFFF"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/Default UI\/MessageCenterViewController.swift",
- "kind": "StringLiteral",
- "offset": 220,
- "length": 27,
- "value": "\"ApptentiveKit.MessageCenterViewController\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/Default UI\/MessageCenterViewController.swift",
- "kind": "StringLiteral",
- "offset": 220,
- "length": 27,
- "value": "\"ApptentiveKit.MessageCenterViewController\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Dialog\/DialogViewModel.swift",
- "kind": "StringLiteral",
- "offset": 6309,
- "length": 24,
- "value": "\"invoked_interaction_id\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Dialog\/DialogViewModel.swift",
- "kind": "StringLiteral",
- "offset": 6358,
- "length": 11,
- "value": "\"action_id\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Dialog\/DialogViewModel.swift",
- "kind": "StringLiteral",
- "offset": 6309,
- "length": 24,
- "value": "\"invoked_interaction_id\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Dialog\/DialogViewModel.swift",
- "kind": "StringLiteral",
- "offset": 6358,
- "length": 11,
- "value": "\"action_id\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Dialog\/UI\/DialogView.swift",
- "kind": "IntegerLiteral",
- "offset": 1277,
- "length": 2,
- "value": "15"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Dialog\/UI\/DialogView.swift",
- "kind": "IntegerLiteral",
- "offset": 1381,
- "length": 1,
- "value": "0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Dialog\/UI\/DialogView.swift",
- "kind": "BooleanLiteral",
- "offset": 1654,
- "length": 5,
- "value": "false"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Dialog\/UI\/DialogView.swift",
- "kind": "BooleanLiteral",
- "offset": 2617,
- "length": 5,
- "value": "false"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyEngagement.swift",
- "kind": "BooleanLiteral",
- "offset": 292,
- "length": 4,
- "value": "true"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyEngagement.swift",
- "kind": "StringLiteral",
- "offset": 969,
- "length": 14,
- "value": "\"interactions\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyEngagement.swift",
- "kind": "StringLiteral",
- "offset": 1016,
- "length": 12,
- "value": "\"codePoints\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyEngagement.swift",
- "kind": "StringLiteral",
- "offset": 209,
- "length": 16,
- "value": "\"ApptentiveKit.LegacyEngagement\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyRandom.swift",
- "kind": "StringLiteral",
- "offset": 848,
- "length": 15,
- "value": "\"random_values\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyRandom.swift",
- "kind": "StringLiteral",
- "offset": 201,
- "length": 12,
- "value": "\"ApptentiveKit.LegacyRandom\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyDevice.swift",
- "kind": "StringLiteral",
- "offset": 833,
- "length": 12,
- "value": "\"customData\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyDevice.swift",
- "kind": "StringLiteral",
- "offset": 201,
- "length": 12,
- "value": "\"ApptentiveKit.LegacyDevice\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Targeting\/Criteria+Logging.swift",
- "kind": "IntegerLiteral",
- "offset": 4400,
- "length": 1,
- "value": "0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/Default UI\/EditProfileViewController.swift",
- "kind": "StringLiteral",
- "offset": 183,
- "length": 25,
- "value": "\"ApptentiveKit.EditProfileViewController\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadata.swift",
- "kind": "BooleanLiteral",
- "offset": 322,
- "length": 4,
- "value": "true"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Migration\/Legacy\/LegacyConversationMetadata.swift",
- "kind": "StringLiteral",
- "offset": 229,
- "length": 26,
- "value": "\"ApptentiveKit.LegacyConversationMetadata\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/ApptentiveImageView.swift",
- "kind": "StringLiteral",
- "offset": 197,
- "length": 19,
- "value": "\"ApptentiveKit.ApptentiveImageView\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/ApptentiveImageView.swift",
- "kind": "StringLiteral",
- "offset": 197,
- "length": 19,
- "value": "\"ApptentiveKit.ApptentiveImageView\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/PersonContent.swift",
- "kind": "StringLiteral",
- "offset": 1018,
- "length": 7,
- "value": "\"email\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/PersonContent.swift",
- "kind": "StringLiteral",
- "offset": 1053,
- "length": 14,
- "value": "\"mparticle_id\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/PersonContent.swift",
- "kind": "StringLiteral",
- "offset": 1094,
- "length": 13,
- "value": "\"custom_data\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/PersonContent.swift",
- "kind": "StringLiteral",
- "offset": 1018,
- "length": 7,
- "value": "\"email\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/PersonContent.swift",
- "kind": "StringLiteral",
- "offset": 1053,
- "length": 14,
- "value": "\"mparticle_id\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/PersonContent.swift",
- "kind": "StringLiteral",
- "offset": 1094,
- "length": 13,
- "value": "\"custom_data\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/MessageContent.swift",
- "kind": "StringLiteral",
- "offset": 1026,
- "length": 13,
- "value": "\"custom_data\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/MessageContent.swift",
- "kind": "StringLiteral",
- "offset": 1067,
- "length": 11,
- "value": "\"automated\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/MessageContent.swift",
- "kind": "StringLiteral",
- "offset": 1103,
- "length": 8,
- "value": "\"hidden\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/MessageContent.swift",
- "kind": "StringLiteral",
- "offset": 1026,
- "length": 13,
- "value": "\"custom_data\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/MessageContent.swift",
- "kind": "StringLiteral",
- "offset": 1067,
- "length": 11,
- "value": "\"automated\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/MessageContent.swift",
- "kind": "StringLiteral",
- "offset": 1103,
- "length": 8,
- "value": "\"hidden\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift",
- "kind": "IntegerLiteral",
- "offset": 17565,
- "length": 5,
- "value": "15411"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift",
- "kind": "IntegerLiteral",
- "offset": 19768,
- "length": 1,
- "value": "0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift",
- "kind": "IntegerLiteral",
- "offset": 19842,
- "length": 1,
- "value": "1"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift",
- "kind": "IntegerLiteral",
- "offset": 19912,
- "length": 1,
- "value": "2"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift",
- "kind": "IntegerLiteral",
- "offset": 19979,
- "length": 1,
- "value": "3"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift",
- "kind": "IntegerLiteral",
- "offset": 20050,
- "length": 1,
- "value": "4"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift",
- "kind": "IntegerLiteral",
- "offset": 20138,
- "length": 1,
- "value": "5"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift",
- "kind": "IntegerLiteral",
- "offset": 20213,
- "length": 1,
- "value": "6"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift",
- "kind": "IntegerLiteral",
- "offset": 20265,
- "length": 1,
- "value": "7"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift",
- "kind": "IntegerLiteral",
- "offset": 20321,
- "length": 1,
- "value": "8"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift",
- "kind": "IntegerLiteral",
- "offset": 20393,
- "length": 1,
- "value": "9"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift",
- "kind": "IntegerLiteral",
- "offset": 20476,
- "length": 2,
- "value": "10"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift",
- "kind": "IntegerLiteral",
- "offset": 20614,
- "length": 2,
- "value": "11"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift",
- "kind": "IntegerLiteral",
- "offset": 19768,
- "length": 1,
- "value": "0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift",
- "kind": "IntegerLiteral",
- "offset": 19842,
- "length": 1,
- "value": "1"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift",
- "kind": "IntegerLiteral",
- "offset": 19912,
- "length": 1,
- "value": "2"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift",
- "kind": "IntegerLiteral",
- "offset": 19979,
- "length": 1,
- "value": "3"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift",
- "kind": "IntegerLiteral",
- "offset": 20050,
- "length": 1,
- "value": "4"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift",
- "kind": "IntegerLiteral",
- "offset": 20138,
- "length": 1,
- "value": "5"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift",
- "kind": "IntegerLiteral",
- "offset": 20213,
- "length": 1,
- "value": "6"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift",
- "kind": "IntegerLiteral",
- "offset": 20265,
- "length": 1,
- "value": "7"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift",
- "kind": "IntegerLiteral",
- "offset": 20321,
- "length": 1,
- "value": "8"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift",
- "kind": "IntegerLiteral",
- "offset": 20393,
- "length": 1,
- "value": "9"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift",
- "kind": "IntegerLiteral",
- "offset": 20476,
- "length": 2,
- "value": "10"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift",
- "kind": "IntegerLiteral",
- "offset": 20614,
- "length": 2,
- "value": "11"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift",
- "kind": "BooleanLiteral",
- "offset": 21594,
- "length": 4,
- "value": "true"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift",
- "kind": "BooleanLiteral",
- "offset": 22983,
- "length": 5,
- "value": "false"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift",
- "kind": "StringLiteral",
- "offset": 20752,
- "length": 23,
- "value": "\"ApptentiveKit.ApptentiveConfiguration\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift",
- "kind": "IntegerLiteral",
- "offset": 24347,
- "length": 1,
- "value": "0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift",
- "kind": "IntegerLiteral",
- "offset": 24425,
- "length": 1,
- "value": "1"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift",
- "kind": "IntegerLiteral",
- "offset": 24521,
- "length": 1,
- "value": "2"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift",
- "kind": "IntegerLiteral",
- "offset": 24584,
- "length": 1,
- "value": "3"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift",
- "kind": "IntegerLiteral",
- "offset": 24347,
- "length": 1,
- "value": "0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift",
- "kind": "IntegerLiteral",
- "offset": 24425,
- "length": 1,
- "value": "1"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift",
- "kind": "IntegerLiteral",
- "offset": 24521,
- "length": 1,
- "value": "2"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift",
- "kind": "IntegerLiteral",
- "offset": 24584,
- "length": 1,
- "value": "3"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift",
- "kind": "IntegerLiteral",
- "offset": 24834,
- "length": 1,
- "value": "0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift",
- "kind": "IntegerLiteral",
- "offset": 24892,
- "length": 1,
- "value": "1"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift",
- "kind": "IntegerLiteral",
- "offset": 24940,
- "length": 1,
- "value": "2"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift",
- "kind": "IntegerLiteral",
- "offset": 24989,
- "length": 1,
- "value": "3"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift",
- "kind": "IntegerLiteral",
- "offset": 25044,
- "length": 1,
- "value": "4"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift",
- "kind": "IntegerLiteral",
- "offset": 25128,
- "length": 1,
- "value": "5"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift",
- "kind": "IntegerLiteral",
- "offset": 25193,
- "length": 1,
- "value": "6"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift",
- "kind": "IntegerLiteral",
- "offset": 24834,
- "length": 1,
- "value": "0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift",
- "kind": "IntegerLiteral",
- "offset": 24892,
- "length": 1,
- "value": "1"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift",
- "kind": "IntegerLiteral",
- "offset": 24940,
- "length": 1,
- "value": "2"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift",
- "kind": "IntegerLiteral",
- "offset": 24989,
- "length": 1,
- "value": "3"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift",
- "kind": "IntegerLiteral",
- "offset": 25044,
- "length": 1,
- "value": "4"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift",
- "kind": "IntegerLiteral",
- "offset": 25128,
- "length": 1,
- "value": "5"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift",
- "kind": "IntegerLiteral",
- "offset": 25193,
- "length": 1,
- "value": "6"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Apptentive+Compatibility.swift",
- "kind": "StringLiteral",
- "offset": 25745,
- "length": 18,
- "value": "\"ApptentiveKit.TermsAndConditions\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/DeviceContent.swift",
- "kind": "StringLiteral",
- "offset": 2478,
- "length": 9,
- "value": "\"os_name\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/DeviceContent.swift",
- "kind": "StringLiteral",
- "offset": 2513,
- "length": 12,
- "value": "\"os_version\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/DeviceContent.swift",
- "kind": "StringLiteral",
- "offset": 2549,
- "length": 10,
- "value": "\"os_build\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/DeviceContent.swift",
- "kind": "StringLiteral",
- "offset": 2638,
- "length": 23,
- "value": "\"content_size_category\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/DeviceContent.swift",
- "kind": "StringLiteral",
- "offset": 2687,
- "length": 12,
- "value": "\"locale_raw\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/DeviceContent.swift",
- "kind": "StringLiteral",
- "offset": 2733,
- "length": 21,
- "value": "\"locale_country_code\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/DeviceContent.swift",
- "kind": "StringLiteral",
- "offset": 2789,
- "length": 22,
- "value": "\"locale_language_code\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/DeviceContent.swift",
- "kind": "StringLiteral",
- "offset": 2852,
- "length": 20,
- "value": "\"integration_config\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/DeviceContent.swift",
- "kind": "StringLiteral",
- "offset": 2910,
- "length": 15,
- "value": "\"advertiser_id\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/DeviceContent.swift",
- "kind": "StringLiteral",
- "offset": 2952,
- "length": 13,
- "value": "\"custom_data\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/DeviceContent.swift",
- "kind": "StringLiteral",
- "offset": 2478,
- "length": 9,
- "value": "\"os_name\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/DeviceContent.swift",
- "kind": "StringLiteral",
- "offset": 2513,
- "length": 12,
- "value": "\"os_version\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/DeviceContent.swift",
- "kind": "StringLiteral",
- "offset": 2549,
- "length": 10,
- "value": "\"os_build\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/DeviceContent.swift",
- "kind": "StringLiteral",
- "offset": 2638,
- "length": 23,
- "value": "\"content_size_category\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/DeviceContent.swift",
- "kind": "StringLiteral",
- "offset": 2687,
- "length": 12,
- "value": "\"locale_raw\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/DeviceContent.swift",
- "kind": "StringLiteral",
- "offset": 2733,
- "length": 21,
- "value": "\"locale_country_code\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/DeviceContent.swift",
- "kind": "StringLiteral",
- "offset": 2789,
- "length": 22,
- "value": "\"locale_language_code\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/DeviceContent.swift",
- "kind": "StringLiteral",
- "offset": 2852,
- "length": 20,
- "value": "\"integration_config\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/DeviceContent.swift",
- "kind": "StringLiteral",
- "offset": 2910,
- "length": 15,
- "value": "\"advertiser_id\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/DeviceContent.swift",
- "kind": "StringLiteral",
- "offset": 2952,
- "length": 13,
- "value": "\"custom_data\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Environment.swift",
- "kind": "StringLiteral",
- "offset": 6445,
- "length": 14,
- "value": "\"Distribution\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Environment.swift",
- "kind": "StringLiteral",
- "offset": 6476,
- "length": 7,
- "value": "\"plist\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Environment.swift",
- "kind": "Array",
- "offset": 6635,
- "length": 2,
- "value": "[]"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Environment.swift",
- "kind": "StringLiteral",
- "offset": 6718,
- "length": 28,
- "value": "\"CFBundleShortVersionString\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Environment.swift",
- "kind": "StringLiteral",
- "offset": 6810,
- "length": 65,
- "value": "\"Unable to read SDK version from ApptentiveKit's Info.plist file\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Environment.swift",
- "kind": "StringLiteral",
- "offset": 6896,
- "length": 13,
- "value": "\"Unavailable\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Environment.swift",
- "kind": "StringLiteral",
- "offset": 6991,
- "length": 28,
- "value": "\"CFBundleShortVersionString\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Environment.swift",
- "kind": "StringLiteral",
- "offset": 7140,
- "length": 133,
- "value": "\"ApptentiveKit framework is damaged! Version in Info.plist (\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Environment.swift",
- "kind": "StringLiteral",
- "offset": 7225,
- "length": 1,
- "value": "\") does not match SDK version (\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/Environment.swift",
- "kind": "StringLiteral",
- "offset": 7271,
- "length": 1,
- "value": "\")\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/PayloadSender.swift",
- "kind": "StringLiteral",
- "offset": 267,
- "length": 7,
- "value": "\"error\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/PayloadSender.swift",
- "kind": "StringLiteral",
- "offset": 303,
- "length": 9,
- "value": "\"payload\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/PayloadSender.swift",
- "kind": "BooleanLiteral",
- "offset": 1759,
- "length": 5,
- "value": "false"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/PayloadSender.swift",
- "kind": "BooleanLiteral",
- "offset": 4250,
- "length": 4,
- "value": "true"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/PayloadSender.swift",
- "kind": "BooleanLiteral",
- "offset": 4373,
- "length": 5,
- "value": "false"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/PayloadSender.swift",
- "kind": "BooleanLiteral",
- "offset": 4474,
- "length": 5,
- "value": "false"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/PayloadSender.swift",
- "kind": "BooleanLiteral",
- "offset": 4612,
- "length": 5,
- "value": "false"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/PayloadSender.swift",
- "kind": "BooleanLiteral",
- "offset": 4929,
- "length": 4,
- "value": "true"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/MessageManager.swift",
- "kind": "IntegerLiteral",
- "offset": 1392,
- "length": 2,
- "value": "44"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/MessageManager.swift",
- "kind": "IntegerLiteral",
- "offset": 1404,
- "length": 2,
- "value": "44"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/MessageManager.swift",
- "kind": "BooleanLiteral",
- "offset": 2594,
- "length": 4,
- "value": "true"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/MessageManager.swift",
- "kind": "BooleanLiteral",
- "offset": 2907,
- "length": 5,
- "value": "false"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/EventContent.swift",
- "kind": "StringLiteral",
- "offset": 2625,
- "length": 16,
- "value": "\"interaction_id\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/EventContent.swift",
- "kind": "StringLiteral",
- "offset": 2666,
- "length": 6,
- "value": "\"data\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/EventContent.swift",
- "kind": "StringLiteral",
- "offset": 2704,
- "length": 13,
- "value": "\"custom_data\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/EventContent.swift",
- "kind": "StringLiteral",
- "offset": 2625,
- "length": 16,
- "value": "\"interaction_id\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/EventContent.swift",
- "kind": "StringLiteral",
- "offset": 2666,
- "length": 6,
- "value": "\"data\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/Apptentive API\/Payloads\/EventContent.swift",
- "kind": "StringLiteral",
- "offset": 2704,
- "length": 13,
- "value": "\"custom_data\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Dialog\/UI\/DialogButton.swift",
- "kind": "IntegerLiteral",
- "offset": 648,
- "length": 1,
- "value": "0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Dialog\/UI\/DialogButton.swift",
- "kind": "IntegerLiteral",
- "offset": 750,
- "length": 1,
- "value": "0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 1305,
- "length": 13,
- "value": "\"description\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 1349,
- "length": 17,
- "value": "\"success_message\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 1407,
- "length": 22,
- "value": "\"show_success_message\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 1456,
- "length": 13,
- "value": "\"submit_text\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 1494,
- "length": 11,
- "value": "\"next_text\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 1537,
- "length": 18,
- "value": "\"validation_error\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 1584,
- "length": 15,
- "value": "\"required_text\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 1638,
- "length": 21,
- "value": "\"close_confirm_title\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 1700,
- "length": 23,
- "value": "\"close_confirm_message\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 1773,
- "length": 26,
- "value": "\"close_confirm_close_text\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 1848,
- "length": 25,
- "value": "\"close_confirm_back_text\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 1908,
- "length": 22,
- "value": "\"terms_and_conditions\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 1959,
- "length": 15,
- "value": "\"question_sets\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 1999,
- "length": 11,
- "value": "\"render_as\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 2043,
- "length": 19,
- "value": "\"intro_button_text\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 2097,
- "length": 21,
- "value": "\"success_button_text\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 2149,
- "length": 17,
- "value": "\"disclaimer_text\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 1305,
- "length": 13,
- "value": "\"description\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 1349,
- "length": 17,
- "value": "\"success_message\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 1407,
- "length": 22,
- "value": "\"show_success_message\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 1456,
- "length": 13,
- "value": "\"submit_text\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 1494,
- "length": 11,
- "value": "\"next_text\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 1537,
- "length": 18,
- "value": "\"validation_error\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 1584,
- "length": 15,
- "value": "\"required_text\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 1638,
- "length": 21,
- "value": "\"close_confirm_title\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 1700,
- "length": 23,
- "value": "\"close_confirm_message\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 1773,
- "length": 26,
- "value": "\"close_confirm_close_text\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 1848,
- "length": 25,
- "value": "\"close_confirm_back_text\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 1908,
- "length": 22,
- "value": "\"terms_and_conditions\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 1959,
- "length": 15,
- "value": "\"question_sets\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 1999,
- "length": 11,
- "value": "\"render_as\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 2043,
- "length": 19,
- "value": "\"intro_button_text\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 2097,
- "length": 21,
- "value": "\"success_button_text\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 2149,
- "length": 17,
- "value": "\"disclaimer_text\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 2861,
- "length": 7,
- "value": "\"value\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 2953,
- "length": 15,
- "value": "\"error_message\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 3029,
- "length": 16,
- "value": "\"answer_choices\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 3079,
- "length": 16,
- "value": "\"min_selections\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 3129,
- "length": 16,
- "value": "\"max_selections\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 3208,
- "length": 15,
- "value": "\"freeform_hint\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 3253,
- "length": 5,
- "value": "\"min\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 3287,
- "length": 5,
- "value": "\"max\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 3325,
- "length": 11,
- "value": "\"min_label\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 3369,
- "length": 11,
- "value": "\"max_label\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 2861,
- "length": 7,
- "value": "\"value\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 2953,
- "length": 15,
- "value": "\"error_message\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 3029,
- "length": 16,
- "value": "\"answer_choices\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 3079,
- "length": 16,
- "value": "\"min_selections\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 3129,
- "length": 16,
- "value": "\"max_selections\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 3208,
- "length": 15,
- "value": "\"freeform_hint\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 3253,
- "length": 5,
- "value": "\"min\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 3287,
- "length": 5,
- "value": "\"max\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 3325,
- "length": 11,
- "value": "\"min_label\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 3369,
- "length": 11,
- "value": "\"max_label\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 3464,
- "length": 13,
- "value": "\"multichoice\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 3506,
- "length": 13,
- "value": "\"multiselect\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 3548,
- "length": 12,
- "value": "\"singleline\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 3464,
- "length": 13,
- "value": "\"multichoice\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 3506,
- "length": 13,
- "value": "\"multiselect\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 3548,
- "length": 12,
- "value": "\"singleline\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 3929,
- "length": 6,
- "value": "\"hint\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 3929,
- "length": 6,
- "value": "\"hint\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 4030,
- "length": 15,
- "value": "\"select_option\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 4075,
- "length": 14,
- "value": "\"select_other\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 4030,
- "length": 15,
- "value": "\"select_option\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 4075,
- "length": 14,
- "value": "\"select_other\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 4496,
- "length": 13,
- "value": "\"button_text\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 4496,
- "length": 13,
- "value": "\"button_text\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 5584,
- "length": 22,
- "value": "\"next_question_set_id\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Survey\/SurveyConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 5584,
- "length": 22,
- "value": "\"next_question_set_id\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/EngagementManifest.swift",
- "kind": "StringLiteral",
- "offset": 1227,
- "length": 16,
- "value": "\"interaction_id\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/EngagementManifest.swift",
- "kind": "StringLiteral",
- "offset": 1227,
- "length": 16,
- "value": "\"interaction_id\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Model\/AttachmentManager.swift",
- "kind": "StringLiteral",
- "offset": 575,
- "length": 3,
- "value": "\"#\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 921,
- "length": 19,
- "value": "\"automated_message\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 970,
- "length": 16,
- "value": "\"error_messages\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 921,
- "length": 19,
- "value": "\"automated_message\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 970,
- "length": 16,
- "value": "\"error_messages\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 1398,
- "length": 11,
- "value": "\"hint_text\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 1440,
- "length": 13,
- "value": "\"send_button\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 1483,
- "length": 12,
- "value": "\"send_start\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 1522,
- "length": 9,
- "value": "\"send_ok\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 1560,
- "length": 11,
- "value": "\"send_fail\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 1601,
- "length": 12,
- "value": "\"close_text\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 1650,
- "length": 20,
- "value": "\"close_confirm_body\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 1709,
- "length": 22,
- "value": "\"close_discard_button\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 1769,
- "length": 21,
- "value": "\"close_cancel_button\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 1398,
- "length": 11,
- "value": "\"hint_text\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 1440,
- "length": 13,
- "value": "\"send_button\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 1483,
- "length": 12,
- "value": "\"send_start\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 1522,
- "length": 9,
- "value": "\"send_ok\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 1560,
- "length": 11,
- "value": "\"send_fail\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 1601,
- "length": 12,
- "value": "\"close_text\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 1650,
- "length": 20,
- "value": "\"close_confirm_body\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 1709,
- "length": 22,
- "value": "\"close_discard_button\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 1769,
- "length": 21,
- "value": "\"close_cancel_button\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 1976,
- "length": 17,
- "value": "\"http_error_body\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 2030,
- "length": 20,
- "value": "\"network_error_body\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 1976,
- "length": 17,
- "value": "\"http_error_body\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 2030,
- "length": 20,
- "value": "\"network_error_body\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 2260,
- "length": 11,
- "value": "\"image_url\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 2260,
- "length": 11,
- "value": "\"image_url\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 2649,
- "length": 11,
- "value": "\"name_hint\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 2690,
- "length": 12,
- "value": "\"email_hint\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 2733,
- "length": 13,
- "value": "\"skip_button\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 2777,
- "length": 13,
- "value": "\"save_button\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 2827,
- "length": 19,
- "value": "\"email_explanation\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 2649,
- "length": 11,
- "value": "\"name_hint\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 2690,
- "length": 12,
- "value": "\"email_hint\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 2733,
- "length": 13,
- "value": "\"skip_button\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 2777,
- "length": 13,
- "value": "\"save_button\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 2827,
- "length": 19,
- "value": "\"email_explanation\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 3059,
- "length": 11,
- "value": "\"name_hint\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 3100,
- "length": 12,
- "value": "\"email_hint\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 3143,
- "length": 13,
- "value": "\"skip_button\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 3187,
- "length": 13,
- "value": "\"save_button\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 3059,
- "length": 11,
- "value": "\"name_hint\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 3100,
- "length": 12,
- "value": "\"email_hint\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 3143,
- "length": 13,
- "value": "\"skip_button\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/MessageCenter\/MessageCenterConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 3187,
- "length": 13,
- "value": "\"save_button\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/HTTPClient.swift",
- "kind": "StringLiteral",
- "offset": 6937,
- "length": 5,
- "value": "\"GET\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/HTTPClient.swift",
- "kind": "StringLiteral",
- "offset": 6958,
- "length": 5,
- "value": "\"PUT\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/HTTPClient.swift",
- "kind": "StringLiteral",
- "offset": 6980,
- "length": 6,
- "value": "\"POST\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/HTTPClient.swift",
- "kind": "StringLiteral",
- "offset": 7005,
- "length": 8,
- "value": "\"DELETE\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/HTTPClient.swift",
- "kind": "StringLiteral",
- "offset": 6937,
- "length": 5,
- "value": "\"GET\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/HTTPClient.swift",
- "kind": "StringLiteral",
- "offset": 6958,
- "length": 5,
- "value": "\"PUT\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/HTTPClient.swift",
- "kind": "StringLiteral",
- "offset": 6980,
- "length": 6,
- "value": "\"POST\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/HTTPClient.swift",
- "kind": "StringLiteral",
- "offset": 7005,
- "length": 8,
- "value": "\"DELETE\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Networking\/HTTPClient.swift",
- "kind": "StringLiteral",
- "offset": 7464,
- "length": 32,
- "value": "\"application\/json;charset=UTF-8\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Interaction.swift",
- "kind": "StringLiteral",
- "offset": 2862,
- "length": 13,
- "value": "\"api_version\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/Interaction.swift",
- "kind": "StringLiteral",
- "offset": 2862,
- "length": 13,
- "value": "\"api_version\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/EnjoymentDialog\/EnjoymentDialogConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 390,
- "length": 10,
- "value": "\"yes_text\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/EnjoymentDialog\/EnjoymentDialogConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 423,
- "length": 9,
- "value": "\"no_text\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/EnjoymentDialog\/EnjoymentDialogConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 390,
- "length": 10,
- "value": "\"yes_text\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/Interactions\/EnjoymentDialog\/EnjoymentDialogConfiguration.swift",
- "kind": "StringLiteral",
- "offset": 423,
- "length": 9,
- "value": "\"no_text\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "BooleanLiteral",
- "offset": 676,
- "length": 5,
- "value": "false"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "IntegerLiteral",
- "offset": 856,
- "length": 1,
- "value": "0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "StringLiteral",
- "offset": 2126,
- "length": 20,
- "value": "\"person.crop.circle\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "StringLiteral",
- "offset": 2591,
- "length": 7,
- "value": "\"xmark\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "StringLiteral",
- "offset": 3334,
- "length": 23,
- "value": "\"paperclip.circle.fill\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "StringLiteral",
- "offset": 3556,
- "length": 24,
- "value": "\"paperplane.circle.fill\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "StringLiteral",
- "offset": 3758,
- "length": 19,
- "value": "\"messageSentBubble\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "IntegerLiteral",
- "offset": 3897,
- "length": 1,
- "value": "9"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "IntegerLiteral",
- "offset": 3906,
- "length": 1,
- "value": "9"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "IntegerLiteral",
- "offset": 3917,
- "length": 2,
- "value": "18"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "IntegerLiteral",
- "offset": 3928,
- "length": 2,
- "value": "18"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "StringLiteral",
- "offset": 4112,
- "length": 23,
- "value": "\"messageReceivedBubble\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "IntegerLiteral",
- "offset": 4255,
- "length": 1,
- "value": "9"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "IntegerLiteral",
- "offset": 4264,
- "length": 2,
- "value": "18"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "IntegerLiteral",
- "offset": 4276,
- "length": 2,
- "value": "18"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "IntegerLiteral",
- "offset": 4287,
- "length": 1,
- "value": "9"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "StringLiteral",
- "offset": 4487,
- "length": 10,
- "value": "\"document\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "IntegerLiteral",
- "offset": 4617,
- "length": 2,
- "value": "14"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "IntegerLiteral",
- "offset": 4627,
- "length": 1,
- "value": "4"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "IntegerLiteral",
- "offset": 4638,
- "length": 1,
- "value": "4"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "IntegerLiteral",
- "offset": 4648,
- "length": 2,
- "value": "14"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "StringLiteral",
- "offset": 4890,
- "length": 19,
- "value": "\"minus.circle.fill\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "StringLiteral",
- "offset": 5011,
- "length": 19,
- "value": "\"minus.circle.fill\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "StringLiteral",
- "offset": 5400,
- "length": 8,
- "value": "\"circle\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "StringLiteral",
- "offset": 5579,
- "length": 8,
- "value": "\"square\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "StringLiteral",
- "offset": 5782,
- "length": 30,
- "value": "\"smallcircle.fill.circle.fill\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "StringLiteral",
- "offset": 6000,
- "length": 23,
- "value": "\"checkmark.square.fill\""
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "FloatLiteral",
- "offset": 7186,
- "length": 4,
- "value": "60.0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "FloatLiteral",
- "offset": 7193,
- "length": 5,
- "value": "255.0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "FloatLiteral",
- "offset": 7207,
- "length": 4,
- "value": "60.0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "FloatLiteral",
- "offset": 7214,
- "length": 5,
- "value": "255.0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "FloatLiteral",
- "offset": 7227,
- "length": 4,
- "value": "67.0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "FloatLiteral",
- "offset": 7234,
- "length": 5,
- "value": "255.0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "FloatLiteral",
- "offset": 7248,
- "length": 4,
- "value": "74.0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "FloatLiteral",
- "offset": 7255,
- "length": 5,
- "value": "255.0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "IntegerLiteral",
- "offset": 10494,
- "length": 1,
- "value": "0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "FloatLiteral",
- "offset": 10504,
- "length": 4,
- "value": "0.42"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "IntegerLiteral",
- "offset": 10516,
- "length": 1,
- "value": "1"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "IntegerLiteral",
- "offset": 10526,
- "length": 1,
- "value": "1"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "FloatLiteral",
- "offset": 11465,
- "length": 4,
- "value": "0.86"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "FloatLiteral",
- "offset": 11478,
- "length": 3,
- "value": "0.1"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "IntegerLiteral",
- "offset": 11489,
- "length": 1,
- "value": "0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "IntegerLiteral",
- "offset": 11499,
- "length": 1,
- "value": "1"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "IntegerLiteral",
- "offset": 11543,
- "length": 1,
- "value": "1"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "FloatLiteral",
- "offset": 11553,
- "length": 4,
- "value": "0.28"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "FloatLiteral",
- "offset": 11565,
- "length": 4,
- "value": "0.24"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "IntegerLiteral",
- "offset": 11578,
- "length": 1,
- "value": "1"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "FloatLiteral",
- "offset": 14232,
- "length": 4,
- "value": "60.0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "FloatLiteral",
- "offset": 14239,
- "length": 5,
- "value": "255.0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "FloatLiteral",
- "offset": 14253,
- "length": 4,
- "value": "60.0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "FloatLiteral",
- "offset": 14260,
- "length": 5,
- "value": "255.0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "FloatLiteral",
- "offset": 14273,
- "length": 4,
- "value": "67.0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "FloatLiteral",
- "offset": 14280,
- "length": 5,
- "value": "255.0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "FloatLiteral",
- "offset": 14294,
- "length": 4,
- "value": "74.0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "FloatLiteral",
- "offset": 14301,
- "length": 5,
- "value": "255.0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "FloatLiteral",
- "offset": 15301,
- "length": 4,
- "value": "60.0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "FloatLiteral",
- "offset": 15308,
- "length": 5,
- "value": "255.0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "FloatLiteral",
- "offset": 15322,
- "length": 4,
- "value": "60.0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "FloatLiteral",
- "offset": 15329,
- "length": 5,
- "value": "255.0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "FloatLiteral",
- "offset": 15342,
- "length": 4,
- "value": "67.0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "FloatLiteral",
- "offset": 15349,
- "length": 5,
- "value": "255.0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "FloatLiteral",
- "offset": 15363,
- "length": 4,
- "value": "74.0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "FloatLiteral",
- "offset": 15370,
- "length": 5,
- "value": "255.0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "FloatLiteral",
- "offset": 18691,
- "length": 4,
- "value": "0.86"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "FloatLiteral",
- "offset": 18704,
- "length": 3,
- "value": "0.1"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "IntegerLiteral",
- "offset": 18715,
- "length": 1,
- "value": "0"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "IntegerLiteral",
- "offset": 18725,
- "length": 1,
- "value": "1"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "IntegerLiteral",
- "offset": 18769,
- "length": 1,
- "value": "1"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "FloatLiteral",
- "offset": 18779,
- "length": 4,
- "value": "0.28"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "FloatLiteral",
- "offset": 18791,
- "length": 4,
- "value": "0.24"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "IntegerLiteral",
- "offset": 18804,
- "length": 1,
- "value": "1"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "IntegerLiteral",
- "offset": 24962,
- "length": 15,
- "value": "1"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "IntegerLiteral",
- "offset": 24962,
- "length": 15,
- "value": "1"
- },
- {
- "filePath": "\/Users\/frank\/Developer\/apptentive\/apptentive-kit-ios\/Sources\/ApptentiveKit\/UIKit+Apptentive.swift",
- "kind": "IntegerLiteral",
- "offset": 25309,
- "length": 1,
- "value": "2"
- }
- ]
-}
\ No newline at end of file
diff --git a/src/ios/ApptentiveKit.xcframework/ios-arm64_x86_64-simulator/ApptentiveKit.framework/Modules/ApptentiveKit.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface b/src/ios/ApptentiveKit.xcframework/ios-arm64_x86_64-simulator/ApptentiveKit.framework/Modules/ApptentiveKit.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface
deleted file mode 100644
index ed76782..0000000
--- a/src/ios/ApptentiveKit.xcframework/ios-arm64_x86_64-simulator/ApptentiveKit.framework/Modules/ApptentiveKit.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface
+++ /dev/null
@@ -1,1202 +0,0 @@
-// 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-ios11.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name ApptentiveKit
-// swift-module-flags-ignorable: -enable-bare-slash-regex
-import CoreTelephony
-import Foundation
-import MobileCoreServices
-import OSLog
-import PhotosUI
-import QuickLook
-import QuickLookThumbnailing
-import StoreKit
-import Swift
-import UIKit
-import _Concurrency
-import _StringProcessing
-@objc @_hasMissingDesignatedInitializers @_Concurrency.MainActor(unsafe) public class DialogViewController : UIKit.UIViewController, ApptentiveKit.DialogViewModelDelegate {
- @_Concurrency.MainActor(unsafe) @objc override dynamic public func viewDidLoad()
- @_Concurrency.MainActor(unsafe) @objc override dynamic public func viewDidAppear(_ animated: Swift.Bool)
- @_Concurrency.MainActor(unsafe) public func dismiss()
- @objc deinit
-}
-extension ApptentiveKit.DialogViewModel {
- @_hasMissingDesignatedInitializers public class Action {
- final public let label: Swift.String
- final public let actionType: ApptentiveKit.DialogViewModel.Action.ActionType
- final public let buttonTapped: () -> Swift.Void
- public enum ActionType : Swift.String {
- case dismiss
- case interaction
- case yes
- case no
- public init?(rawValue: Swift.String)
- public typealias RawValue = Swift.String
- public var rawValue: Swift.String {
- get
- }
- }
- @objc deinit
- }
-}
-extension ApptentiveKit.SurveyViewModel {
- @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers public class RangeQuestion : ApptentiveKit.SurveyViewModel.Question {
- final public let minValue: Swift.Int
- final public let maxValue: Swift.Int
- final public let minText: Swift.String?
- final public let maxText: Swift.String?
- public var selectedValueIndex: Swift.Int? {
- get
- }
- public var value: Swift.Int? {
- get
- }
- public var choiceLabels: [Swift.String] {
- get
- }
- public func selectValue(at index: Swift.Int)
- public var accessibilityHintForSegment: Swift.String {
- get
- }
- @objc deinit
- }
-}
-extension ApptentiveKit.MessageCenterViewModel {
- @_hasMissingDesignatedInitializers public class Message : Swift.Equatable {
- final public let nonce: Swift.String
- final public let direction: ApptentiveKit.MessageCenterViewModel.Message.Direction
- final public let isAutomated: Swift.Bool
- final public let attachments: [ApptentiveKit.MessageCenterViewModel.Message.Attachment]
- final public let sender: ApptentiveKit.MessageCenterViewModel.Message.Sender?
- final public let body: Swift.String?
- final public let sentDate: Foundation.Date
- final public let accessibilityLabel: Swift.String?
- final public let accessibilityHint: Swift.String?
- final public let statusText: Swift.String
- public static func == (lhs: ApptentiveKit.MessageCenterViewModel.Message, rhs: ApptentiveKit.MessageCenterViewModel.Message) -> Swift.Bool
- public enum Direction : Swift.Equatable {
- case sentFromDashboard(ApptentiveKit.MessageCenterViewModel.Message.ReadStatus)
- case sentFromDevice(ApptentiveKit.MessageCenterViewModel.Message.SentStatus)
- case automated
- public static func == (a: ApptentiveKit.MessageCenterViewModel.Message.Direction, b: ApptentiveKit.MessageCenterViewModel.Message.Direction) -> Swift.Bool
- }
- public enum SentStatus : Swift.Codable, Swift.Equatable {
- case draft
- case queued
- case sending
- case sent
- case failed
- public func hash(into hasher: inout Swift.Hasher)
- public static func == (a: ApptentiveKit.MessageCenterViewModel.Message.SentStatus, b: ApptentiveKit.MessageCenterViewModel.Message.SentStatus) -> Swift.Bool
- public func encode(to encoder: Swift.Encoder) throws
- public var hashValue: Swift.Int {
- get
- }
- public init(from decoder: Swift.Decoder) throws
- }
- public enum ReadStatus : Swift.Codable, Swift.Equatable {
- case read
- case unread(messageID: Swift.String?)
- public static func == (a: ApptentiveKit.MessageCenterViewModel.Message.ReadStatus, b: ApptentiveKit.MessageCenterViewModel.Message.ReadStatus) -> Swift.Bool
- public func encode(to encoder: Swift.Encoder) throws
- public init(from decoder: Swift.Decoder) throws
- }
- public struct Sender : Swift.Equatable {
- public static func == (a: ApptentiveKit.MessageCenterViewModel.Message.Sender, b: ApptentiveKit.MessageCenterViewModel.Message.Sender) -> Swift.Bool
- }
- @objc @_hasMissingDesignatedInitializers public class Attachment : ObjectiveC.NSObject, QuickLook.QLPreviewItem {
- final public let fileExtension: Swift.String?
- public var thumbnail: UIKit.UIImage? {
- get
- }
- public var downloadProgress: Swift.Float
- public var localURL: Foundation.URL?
- public var displayName: Swift.String {
- get
- }
- @objc public var previewItemURL: Foundation.URL? {
- @objc get
- }
- @objc public var previewItemTitle: Swift.String? {
- @objc get
- }
- @objc override dynamic public var accessibilityLabel: Swift.String? {
- @objc get
- @objc set
- }
- public var removeButtonAccessibilityLabel: Swift.String {
- get
- }
- public var viewButtonAccessibilityLabel: Swift.String {
- get
- }
- @objc deinit
- }
- @objc deinit
- }
-}
-extension ApptentiveKit.Apptentive : UserNotifications.UNUserNotificationCenterDelegate {
- @objc dynamic public func setRemoteNotificationDeviceToken(_ tokenData: Foundation.Data)
- @available(*, deprecated, message: "Use the (correctly-spelled) 'setRemoteNotificationDeviceToken(_:)' method instead.")
- @objc dynamic public func setRemoteNotifcationDeviceToken(_ tokenData: Foundation.Data)
- @objc dynamic public func didReceiveRemoteNotification(_ userInfo: [Swift.AnyHashable : Any], fetchCompletionHandler completionHandler: @escaping (UIKit.UIBackgroundFetchResult) -> Swift.Void) -> Swift.Bool
- @objc dynamic public func didReceveUserNotificationResponse(_ response: UserNotifications.UNNotificationResponse, withCompletionHandler completionHandler: @escaping () -> Swift.Void) -> Swift.Bool
- @objc dynamic public func willPresent(_ notification: UserNotifications.UNNotification, withCompletionHandler completionHandler: @escaping (UserNotifications.UNNotificationPresentationOptions) -> Swift.Void) -> Swift.Bool
- @objc dynamic public func userNotificationCenter(_ center: UserNotifications.UNUserNotificationCenter, willPresent notification: UserNotifications.UNNotification, withCompletionHandler completionHandler: @escaping (UserNotifications.UNNotificationPresentationOptions) -> Swift.Void)
- @objc dynamic public func userNotificationCenter(_ center: UserNotifications.UNUserNotificationCenter, didReceive response: UserNotifications.UNNotificationResponse, withCompletionHandler completionHandler: @escaping () -> Swift.Void)
-}
-extension ApptentiveKit.SurveyViewModel {
- @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers public class ChoiceQuestion : ApptentiveKit.SurveyViewModel.Question {
- final public let choices: [ApptentiveKit.SurveyViewModel.ChoiceQuestion.Choice]
- public func toggleChoice(at index: Swift.Int)
- public var selectionStyle: ApptentiveKit.SurveyViewModel.ChoiceQuestion.SelectionStyle {
- get
- }
- public enum SelectionStyle {
- case checkbox
- case radioButton
- public static func == (a: ApptentiveKit.SurveyViewModel.ChoiceQuestion.SelectionStyle, b: ApptentiveKit.SurveyViewModel.ChoiceQuestion.SelectionStyle) -> Swift.Bool
- public func hash(into hasher: inout Swift.Hasher)
- public var hashValue: Swift.Int {
- get
- }
- }
- @_hasMissingDesignatedInitializers public class Choice {
- final public let label: Swift.String
- final public let placeholderText: Swift.String?
- final public let supportsOther: Swift.Bool
- public var isSelected: Swift.Bool {
- get
- }
- public var isMarkedAsInvalid: Swift.Bool {
- get
- }
- public var value: Swift.String? {
- get
- set
- }
- @objc deinit
- }
- @objc deinit
- }
-}
-public struct ApptentiveLogger {
- public static var shouldHideSensitiveLogs: Swift.Bool
- public var logLevel: ApptentiveKit.LogLevel
-}
-extension ApptentiveKit.ApptentiveLogger {
- public static var `default`: ApptentiveKit.ApptentiveLogger
- public static var engagement: ApptentiveKit.ApptentiveLogger
- public static var interaction: ApptentiveKit.ApptentiveLogger
- public static var network: ApptentiveKit.ApptentiveLogger
- public static var payload: ApptentiveKit.ApptentiveLogger
- public static var targeting: ApptentiveKit.ApptentiveLogger
- public static var messages: ApptentiveKit.ApptentiveLogger
- public static var attachments: ApptentiveKit.ApptentiveLogger
- public static var logLevel: ApptentiveKit.LogLevel {
- get
- set
- }
-}
-public enum LogLevel : Swift.Int, Swift.Comparable {
- case debug
- case info
- case notice
- case warning
- case error
- case critical
- case fault
- public static func < (lhs: ApptentiveKit.LogLevel, rhs: ApptentiveKit.LogLevel) -> Swift.Bool
- public init?(rawValue: Swift.Int)
- public typealias RawValue = Swift.Int
- public var rawValue: Swift.Int {
- get
- }
-}
-@objc @_hasMissingDesignatedInitializers public class Apptentive : ObjectiveC.NSObject {
- @objc public static let shared: ApptentiveKit.Apptentive
- public var interactionPresenter: ApptentiveKit.InteractionPresenter {
- get
- set
- }
- public var theme: ApptentiveKit.Apptentive.UITheme
- @objc public var personName: Swift.String? {
- @objc get
- @objc set
- }
- @objc public var personEmailAddress: Swift.String? {
- @objc get
- @objc set
- }
- @objc public var mParticleID: Swift.String? {
- @objc get
- @objc set
- }
- public var personCustomData: ApptentiveKit.CustomData {
- get
- set
- }
- public var deviceCustomData: ApptentiveKit.CustomData {
- get
- set
- }
- @objc dynamic public var unreadMessageCount: Swift.Int
- @objc public var distributionName: Swift.String? {
- @objc get
- @objc set
- }
- @objc public var distributionVersion: Swift.String? {
- @objc get
- @objc set
- }
- public enum UITheme {
- case apptentive
- case none
- public static func == (a: ApptentiveKit.Apptentive.UITheme, b: ApptentiveKit.Apptentive.UITheme) -> Swift.Bool
- public func hash(into hasher: inout Swift.Hasher)
- public var hashValue: Swift.Int {
- get
- }
- }
- public func register(with credentials: ApptentiveKit.Apptentive.AppCredentials, completion: ((Swift.Result) -> Swift.Void)? = nil)
- public struct AppCredentials : Swift.Codable, Swift.Equatable {
- public let key: Swift.String
- public let signature: Swift.String
- public init(key: Swift.String, signature: Swift.String)
- public static func == (a: ApptentiveKit.Apptentive.AppCredentials, b: ApptentiveKit.Apptentive.AppCredentials) -> Swift.Bool
- public func encode(to encoder: Swift.Encoder) throws
- public init(from decoder: Swift.Decoder) throws
- }
- public func engage(event: ApptentiveKit.Event, from viewController: UIKit.UIViewController? = nil, completion: ((Swift.Result) -> Swift.Void)? = nil)
- public func dismissAllInteractions(animated: Swift.Bool)
- public func presentMessageCenter(from viewController: UIKit.UIViewController?, completion: ((Swift.Result) -> Swift.Void)? = nil)
- public func presentMessageCenter(from viewController: UIKit.UIViewController?, with customData: ApptentiveKit.CustomData?, completion: ((Swift.Result